- or download this
open(FILE, '<', 'file.txt');
# binmode(FILE,":utf8");
...
print encode_entities(Dumper($content));
print '</pre>';
print $content;
- or download this
$VAR1 = "f\303\266\303\266\n";
föö
- or download this
open(FILE, '<', 'file.txt');
binmode(FILE,":utf8");
...
print encode_entities(Dumper($content));
print '</pre>';
print $content;
- or download this
$VAR1 = "f\x{f6}\x{f6}\n";
föö
- or download this
open(FILE,"<:utf8", "$file");
binmode(FILE);