Help for this page

Select Code to Download


  1. or download this
    P:\test>perl58 -le"$f=qq[test-\xf6\xf6\xf6-test]; print $f; open F,'>'
    +,$f; print F 'this is the file'; close F;"
    test-÷÷÷-test
    ...
    this is the file
    
    P:\test>
    
  2. or download this
    P:\test>perl -le"use utf8; $x = qq[öa]; print $x;"
    Malformed UTF-8 character (unexpected non-continuation byte 0x61, imme
    +diately after start byte 0xf6) at -e line 1.
     a
    
  3. or download this
    
    P:\test>perl -le"no utf8; $x = qq[öa]; print $x;"
    ÷a