in reply to Re^2: UCS2/HexEncodedin thread UCS2/HexEncoded
sub decode { return join '', map { chr( hex ) } unpack( 'A4' x (length +($_[0]) / 4), $_[0] ) } [download]
Cheers - L~R