in reply to
How to read a Unicode file?
perluniintro
is a gentler introduction to Perl and Unicode. I'm by no means an expert, but I think that, depending on the encoding, you can use
open(my $fh, "<:utf8", "file")
or something like
open(my $fh, "<:encoding(ucs2), "file")
.
Arjen
Comment on
Re: How to read a Unicode file?
Select
or
Download
Code
In Section
Seekers of Perl Wisdom