http://qs1969.pair.com?node_id=1145256


in reply to utf8 bloody chars

Another remark: the use utf8; is only required if the source code contains literal utf-8:

$ perl -CO -wE'say "\x{03c9}"'
ω
$ perl -CO -wE'say "ω"'
Ï
$ perl -CO -Mutf8 -wE'say "ω"'
ω

Enjoy, Have FUN! H.Merijn