My Perl program:
say 'Hexadecimal notation in a Perl script';
my$str = pack 'H*', '987456123';
print unpack('H*', $str), "\n";
print unpack('h*', $str), "\n";
Output:
Hexadecimal notation in a Perl script
1. 9874561230 # Why is it showing zero here?
2. 8947652103
In my 1
result why is it showing zero? What is cause of this?
You have odd number of chars in
987456123
andH*
packing requires even, so it assumes zero for the last pair (98
,74
,56
,12
, and30
at the end).From perldoc: