- or download this
my $line = encode("utf8",$lineo);
open(TEK,">:utf8","temp.tex");
print TEK $line;
- or download this
my $line = encode("utf8",$lineo);
open(TEK,">","temp.tex");
print TEK $line;
- or download this
my $line = $lineo;
open(TEK,">:utf8","temp.tex");
print TEK $line;