in reply to hex to ascii, oct to ascii, and back?
my @hex = unpack ("h*", $ascii_string); foreach my $hex (@hex) { printf ("%c", hex ($hex)); } [download]