in reply to Re: wide character warning!
in thread wide character warning!
Just a Note:
":utf8" only marks the data as UTF-8 without checking whether the data is a valid UTF-8, meanwhile ":encoding(UTF-8)" checks that the data are actually valid UTF-8.
So, I will rather write:
binmode(STDOUT, ":encoding(utf8)");
|
|---|