Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The files themselves doesn't have the wrong encoding, it's when you read the file that you use the wrong encoding to decode them.</p> <p>The correction is to use the same encoding to decode the file that was used to encode it.</p> <p>If you don't know what encoding that is, you should find out the byte code for the problematic characters before they are decoded, and look for an encoding with a character set where the character code matches the character that you want.</p> <p>For example, the file could be encoded using IBM905 so that the character "Ç" is encoded into the byte code 74. If you then decode the file using IBM278, the byte code 74 is interpreted as the character "§".</p> <p>Here is a list of the possible combinations that I found in the built in encodings:</p> <pre><code>from cp875 to IBM290 from cp875 to IBM420 from cp875 to x-EBCDIC-KoreanExtended from cp875 to IBM-Thai from cp875 to IBM880 from IBM290 to IBM290 from IBM290 to IBM420 from IBM290 to x-EBCDIC-KoreanExtended from IBM290 to IBM-Thai from IBM290 to IBM880 from IBM420 to IBM290 from IBM420 to IBM420 from IBM420 to x-EBCDIC-KoreanExtended from IBM420 to IBM-Thai from IBM420 to IBM880 from IBM424 to IBM290 from IBM424 to IBM420 from IBM424 to x-EBCDIC-KoreanExtended from IBM424 to IBM-Thai from IBM424 to IBM880 from x-EBCDIC-KoreanExtended to IBM290 from x-EBCDIC-KoreanExtended to IBM420 from x-EBCDIC-KoreanExtended to x-EBCDIC-KoreanExtended from x-EBCDIC-KoreanExtended to IBM-Thai from x-EBCDIC-KoreanExtended to IBM880 from IBM-Thai to IBM290 from IBM-Thai to IBM420 from IBM-Thai to x-EBCDIC-KoreanExtended from IBM-Thai to IBM-Thai from IBM-Thai to IBM880 from IBM880 to IBM290 from IBM880 to IBM420 from IBM880 to x-EBCDIC-KoreanExtended from IBM880 to IBM-Thai from IBM880 to IBM880 from cp1025 to IBM290 from cp1025 to IBM420 from cp1025 to x-EBCDIC-KoreanExtended from cp1025 to IBM-Thai from cp1025 to IBM880 from IBM1026 to IBM01143 from IBM1026 to IBM278 from IBM905 to IBM01143 from IBM905 to IBM278 </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload