Help for this page

Select Code to Download


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