in reply to Re^4: Do I have a unicode problem, or is this something else?
in thread Do I have a unicode problem, or is this something else?
use utf8; tells perl that your source is encoded using UTF-8. If your source is encoded using UTF-8, you want to use use utf8;.
If you use Encode's functions (e.g. encode($enc, $text) and decode($enc, $text)), then you'll want to load Encode and import its functions.
|
|---|