About 14,200,000 results
Open links in new tab
  1. What are Unicode, UTF-8, and UTF-16? - Stack Overflow

    Feb 18, 2022 · Encoding basics Note: If you know how UTF-8 and UTF-16 are encoded, skip to the next section for practical applications. UTF-8: For the standard ASCII (0-127) characters, the UTF-8 …

  2. unicode - UTF-8, UTF-16, and UTF-32 - Stack Overflow

    UTF-8 is the de-facto standard in most modern software for saved files. More specifically, it's the most widely used encoding for HTML and configuration and translation files (Minecraft, for example, …

  3. What is the difference between UTF-8 and ISO-8859-1 encodings?

    Aug 13, 2011 · UTF-8 is a multibyte encoding that can represent any Unicode character. ISO 8859-1 is a single-byte encoding that can represent the first 256 Unicode characters. Both encode ASCII exactly …

  4. Unicode, UTF, ASCII, ANSI format differences - Stack Overflow

    Mar 31, 2009 · What is the difference between the Unicode, UTF8, UTF7, UTF16, UTF32, ASCII, and ANSI encodings? In what way are these helpful for programmers?

  5. utf 8 - How to detect and fix incorrect character encoding - Stack …

    Jun 25, 2019 · A upstream service reads a stream of UTF-8 bytes, assumes they are ISO-8859-1, applies ISO-8859-1 to UTF-8 encoding, and sends them to my service, labeled as UTF-8.

  6. "for line in..." results in UnicodeDecodeError: 'utf-8' codec can't ...

    UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe9 in position 150: invalid continuation byte I opened the file with NotePad & counted 150th position: that was a Cyrillic symbol.

  7. What's the difference between UTF-8 and UTF-8 with BOM?

    1065 The UTF-8 BOM is a sequence of bytes at the start of a text stream (0xEF, 0xBB, 0xBF) that allows the reader to more reliably guess a file as being encoded in UTF-8. Normally, the BOM is …

  8. What is the UTF-8 representation of "end of line" in text file

    Dec 12, 2012 · 10 UTF-8 is compatible with ASCII, so the ASCII codes 10 (0x0A) for linefeed and 13 (0x0D) for carriage return are also used in UTF-8.

  9. How many characters can UTF-8 encode? - Stack Overflow

    Apr 19, 2012 · The encoding scheme used by UTF-8 was designed with a much larger limit of 2 31 code points (32,768 planes), and can encode 2 21 code points (32 planes) even if limited to 4 bytes. [3] …

  10. UnicodeDecodeError, invalid continuation byte - Stack Overflow

    Dec 11, 2016 · It is invalid UTF-8. That character is the e-acute character in ISO-Latin1, which is why it succeeds with that codeset. If you don't know the codeset you're receiving strings in, you're in a bit of …