in reply to Re: Howto convert hex to string
in thread Howto convert hex to string
And if you're dealing with hex valuesshell> perl -le 'print map chr, qw/84 67 49 67 83 50 79/' TC1CS2O
See. map, chr and hex for more info.shell> perl -le 'print map { chr hex } qw/54 43 31 43 53 32 4f/' TC1CS2O
_________
broquaint
|
|---|