About 50 results
Open links in new tab
  1. encoding - 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

    What are the differences between UTF-8, UTF-16, and UTF-32? I understand that they will all store Unicode, and that each uses a different number of bytes to represent a character. Is there an adva...

  3. unicode - How does UTF-16 encoding works? - Stack Overflow

    May 2, 2022 · Unicode is just a character set. UTF-16 is a Encoding system that change charset in a way to save it on memory or desk. Am I right? if yes how did Encoding system change …

  4. character encoding - Unicode, UTF, ASCII, ANSI format differences ...

    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. encoding - What is the difference between UTF-8 and Unicode? - Stack ...

    Mar 14, 2009 · The other type of encoding uses a variable number of bytes per character, and the most commonly known encodings for this are the UTF encodings. All UTF encodings work in roughly the …

  6. utf 8 - What's the point of UTF-16? - Stack Overflow

    I've never understood the point of UTF-16 encoding. If you need to be able to treat strings as random access (i.e. a code point is the same as a code unit) then you need UTF-32, since UTF-16 is st...

  7. unicode - Why does Windows use UTF-16LE? - Stack Overflow

    Feb 6, 2021 · The official MSDN page for Unicode makes it seem like UTF-16 may even be desirable (though I don't myself agree): These functions use UTF-16 (wide character) encoding, which is the …

  8. Why does .net use the UTF16 encoding for string, but uses UTF-8 as ...

    From here Essentially, string uses the UTF-16 character encoding form But when saving vs StreamWriter : This constructor creates a StreamWriter with UTF-8 encoding without a Byte-Order …

  9. Unicode utf-8/utf-16 encoding in Python - Stack Overflow

    Is it utf-16? The answer is no: it's unicode, not any specific encoding. utf-16 is an encoding. To print a Unicode string effectively to your terminal, you need to find out what encoding that terminal is willing …

  10. encoding - Detect UTF-16 file content - Stack Overflow

    Nov 21, 2009 · Is it possible to know if a file has Unicode (16-byte per char) or 8-bit ASCII content?