Help for this page

Select Code to Download


  1. or download this
    # utf8 -> latin1 encoding
    cat utf8.txt |perl -MEncode=from_to -pe 'from_to($_,"utf8","latin1");'
    
  2. or download this
        tr/\0-\xFF//CU;        # change Latin-1 to Unicode
        tr/\0-\x{FF}//UC;        # change Unicode to Latin-1