- or download this
P:\test>perl58 -le"$f=qq[test-\xf6\xf6\xf6-test]; print $f; open F,'>'
+,$f; print F 'this is the file'; close F;"
test-÷÷÷-test
...
this is the file
P:\test>
- or download this
P:\test>perl -le"use utf8; $x = qq[öa]; print $x;"
Malformed UTF-8 character (unexpected non-continuation byte 0x61, imme
+diately after start byte 0xf6) at -e line 1.
a
- or download this
P:\test>perl -le"no utf8; $x = qq[öa]; print $x;"
÷a