http://qs321.pair.com?node_id=1007259


in reply to integer value to hex value

See hex.

>perl -wMstrict -le "my $i = 100; my $x = hex $i; print $x; printf qq{0x%x \n}, $x; ;; $i = '200'; $x = hex $i; print $x; printf qq{0x%x \n}, $x; " 256 0x100 512 0x200