in reply to Re: Howto convert hex to string
in thread Howto convert hex to string

Or simpler still
shell> perl -le 'print map chr, qw/84 67 49 67 83 50 79/' TC1CS2O
And if you're dealing with hex values
shell> perl -le 'print map { chr hex } qw/54 43 31 43 53 32 4f/' TC1CS2O
See. map, chr and hex for more info.
HTH

_________
broquaint