- or download this
open (OUT, "output.txt");
binmode(OUT, ":utf8");
print OUT Dumper(\@matches);
close OUT;
- or download this
open( OUT, ">:utf8", "output.txt" ) or die "output.txt: $!\n";
- or download this
print OUT "\x{feff}\n";
# and then print all the utf8 text content...