in reply to converting hex to char
Use chr with hex... for example
use strict; use warnings; use Test::More tests => 1; is(chr(hex('62')), 'b', 'hex -> char worked'); [download]
1..1 ok 1 - hex -> char worked [download]