latin-9

Perl - Unicode::String sub need to add/convert for Latin-9 support

Part 3 (Part 2 is here) (Part 1 is here) Here is the perl Mod I'm using: Unicode::String How I'm calling it: print "Euro: "; print unicode_encode("€")."\n"; print "Pound: "; print unicode_encode("£")."\n"; would like it to return this format: € # Euro £ # Pound The function is below: sub unicode_encode { shift...