You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
272 B
Perl

$str="0x123456789ABCDE Tom...";
print "$str\n";
$bytes=unpack("H*",$str); # hex string
print "$bytes\n";
$str2 = pack("H*", $bytes);
print "$str2\n";
$bytes = unpack("h*",$str); # hex string
print "$bytes\n";
$str1 = pack("h*", $bytes);
print"$str1\n";