http://www.perlmonks.org?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

Replies are listed 'Best First'.
Re^2: integer value to hex value
by shyam123 (Initiate) on Dec 05, 2012 at 11:21 UTC
    Hi Anamolous monk,

    Thanks for the reply.But that was not the one i was looking for.If i have a integer say 55667788, i needed to have this as hex value 0x55667788 and not the hex(55667788).Please share your views on it.

    thanks sham

      my $hexstr=sprintf('%x',55667788);

      -- 
      Ronald Fischer <ynnor@mm.st>