in reply to hex to binary
0x11e64 == 73316, but as others have asked, what's the raw byte order you are given and what unpack templates have you tried?
Update:
c:\@Work\Perl>perl -wMstrict -le "my $raw = pack 'H*', '641e0100'; my $le32 = unpack 'V', $raw; printf qq{%d decimal 0x%x hex \n}, $le32, $le32; " 73316 decimal 0x11e64 hex
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: hex to binary
by Anonymous Monk on Feb 17, 2014 at 04:49 UTC | |
by AnomalousMonk (Archbishop) on Feb 17, 2014 at 04:55 UTC |