- or download this
h A hex string (low nybble first).
H A hex string (high nybble first).
...
hexadecimal digits.
- or download this
my @hex = $hexed =~ /([0-9a-zA-Z]+)/g;
for (@hex){
... pack 'H*', $_;
}
- or download this
C:\>echo abcd1234 >test
...
C:\>perl -e"print pack q,H*,, $_ for @ARGV" 61 62 63 64 31 32 33 34
abcd1234