in reply to Re^2: Malformed UTF-8 character
in thread Malformed UTF-8 character
It seems you don't really understand character encodings. Try reading this article get the basics.
The line use utf8; tells Perl that your script is stored in UTF-8, but it is not. Your editor did not save it as UTF-8, but rather as another encoding, likely Latin-1.
So either don't tell Perl that the file is stored in UTF-8 when it is not, or do store the file in UTF-8 (and use an editor which properly supports UTF-8).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Malformed UTF-8 character
by Steve_BZ (Chaplain) on Apr 30, 2011 at 19:59 UTC |