Encoding and UTF-8



examples/files-perl/encoding.pl
use strict;
use warnings;

my $file = "data.txt";

open(my $fh, '<:encoding(utf8)', $file) or die "Could not open '$file'\n";
...