in reply to Unicode problem
Make sure that you have the encoding you are looking for:
use Encode; print join ('\n', Encode->encodings());
You might also want to check the value of:
is_utf8($_);
Finally, it cannot hurt anything but performance to do:
$uni = encode_utf8($_);
|
|---|