in reply to Re^7: Converting Unicode
in thread Converting Unicode

If you never had problems, it's because you were experienced enough to stay on top of things and not merely allow Perl to just do its thing.
Perl uses UTF-8 only when it thinks it is beneficial, so if all the characters in your string are in the range 0..255, there's a good chance the characters are all packed in bytes--but in the absence of other knowledge, you can't be sure because Perl converts between fixed 8-bit characters and variable-length UTF-8 characters as necessary. (Programming Perl, p. 403)
The "as necessary" is not necessarily as you might wish, as those less experienced quickly learn the hard way. Even the experienced, facing more complex requirements (just working with Chinese is not necessarily complex--it depends on the workflow and the forms of I/O required), often find hidden "gotchas," such as with locales, filenames, databases, incorporating other Perl modules, etc.

Blessings,

~Polyglot~