use strict; use warnings; open FILE, ">output.dat"; my $data = "\xff\x01\x67"; print FILE unpack("H*",$data); close FILE;