in reply to How can I tell perl the element is number?

kyle has pointed out the need for hex but you could also use chr instead of printf to convert values to characters.

print map { chr hex } split m{,}, $text;

Cheers,

JohnGG