Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T03:27:24Zhttp://stackoverflow.com/feeds/question/164430http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/164430/why-is-it-that-utf-8-encoding-is-used-when-interacting-with-a-unix-linux-environm6Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment?carleeto2008-10-02T20:31:03Z2008-10-06T13:14:55Z
<p>I know it is customary, but why? Are there real technical reasons why any other way would be a really bad idea or is it just based on the history of encoding and backwards compatibility? In addition, what are the dangers of not using UTF-8, but some other encoding (most notably, UTF-16)? </p>
<p>Edit : By interacting, I mostly mean the shell and libc. </p>
http://stackoverflow.com/questions/164430/why-is-it-that-utf-8-encoding-is-used-when-interacting-with-a-unix-linux-environm/164438#1644382Answer by Mike F for Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment?Mike F2008-10-02T20:32:22Z2008-10-02T20:32:22Z<p>I believe it's mainly the backwards compatability that UTF8 gives with ASCII.</p>
<p>For an answer to the 'dangers' question, you need to specify what you mean by 'interacting'. Do you mean interacting with the shell, with libc, or with the kernel proper?</p>
http://stackoverflow.com/questions/164430/why-is-it-that-utf-8-encoding-is-used-when-interacting-with-a-unix-linux-environm/164443#1644430Answer by Steve K for Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment?Steve K2008-10-02T20:33:23Z2008-10-02T20:33:23Z<p>Yes, it's for compatibility reasons. UTF-8 is backwards comptable with ASCII. Linux/Unix were ASCII based, so it just made/makes sense.</p>
http://stackoverflow.com/questions/164430/why-is-it-that-utf-8-encoding-is-used-when-interacting-with-a-unix-linux-environm/164447#16444710Answer by Jonathan Leffler for Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment?Jonathan Leffler2008-10-02T20:33:44Z2008-10-02T20:33:44Z<p>Partly because the file systems expect NUL ('\0') bytes to terminate file names, so UTF-16 would not work well. You'd have to modify a lot of code to make that change.</p>
http://stackoverflow.com/questions/164430/why-is-it-that-utf-8-encoding-is-used-when-interacting-with-a-unix-linux-environm/164474#1644740Answer by Cade Roux for Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment?Cade Roux2008-10-02T20:39:37Z2008-10-02T20:39:37Z<p>I thought 7-bit ASCII was fine.</p>
<p>Seriously, Unicode is relatively new in the scheme of things, and <a href="http://en.wikipedia.org/wiki/UTF-8" rel="nofollow">UTF-8</a> is backward compatible with ASCII and uses less space (half) for typical files since it uses 1 to 4 bytes per code point (character), while <a href="http://en.wikipedia.org/wiki/UTF-16" rel="nofollow">UTF-16</a> uses either 2 or 4 bytes per code point (character).</p>
<p>UTF-16 is preferable for internal program usage because of the simpler widths. Its predecessor UCS-2 was exactly 2 bytes for every code point.</p>
http://stackoverflow.com/questions/164430/why-is-it-that-utf-8-encoding-is-used-when-interacting-with-a-unix-linux-environm/164529#1645292Answer by ephemient for Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment?ephemient2008-10-02T20:50:21Z2008-10-02T20:50:21Z<p>Modern Unixes use UTF-8, but this was not always true. On RHEL2 -- which is only a few years old -- the default is
<pre>$ locale
LANG=C
LC_CTYPE="C"
LC_NUMERIC="C"
LC_TIME="C"
LC_COLLATE="C"
LC_MONETARY="C"
LC_MESSAGES="C"
LC_PAPER="C"
LC_NAME="C"
LC_ADDRESS="C"
LC_TELEPHONE="C"
LC_MEASUREMENT="C"
LC_IDENTIFICATION="C"
LC_ALL=</pre>The C/POSIX locale is expected to be a 7-bit ASCII-compatible encoding.</p>
<p>However, as Jonathan Leffler stated, any encoding which allows for NUL bytes within a character sequence is unworkable on Unix, as system APIs are locale-ignorant; strings are all assumed to be byte sequences terminated by \0.</p>
http://stackoverflow.com/questions/164430/why-is-it-that-utf-8-encoding-is-used-when-interacting-with-a-unix-linux-environm/164563#1645630Answer by Juan Pablo Califano for Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment?Juan Pablo Califano2008-10-02T20:56:54Z2008-10-02T20:56:54Z<p>I think it's because programs that expect ASCII input won't be able to handle encodings such as UTF-16. For most characters (in the 0-255 range), those programs will see the high byte as a NUL / 0 char, which is used in many languages and systems to mark the end of a string. This doesn't happen in UTF-8, which was designed to avoid embedded NUL's and be byte-order agnostic. </p>
http://stackoverflow.com/questions/164430/why-is-it-that-utf-8-encoding-is-used-when-interacting-with-a-unix-linux-environm/164921#1649216Answer by Joseph Holsten for Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment?Joseph Holsten2008-10-02T22:40:39Z2008-10-02T22:40:39Z<p>As jonathan-leffler mentions, the prime issue is the ASCII null character. C traditionally expects a string to be null terminated. So standard C string functions will choke on any UTF-16 character containing a byte equivalent to an ASCII null (0x00). While you can certainly program with wide character support, UTF-16 is not a suitable external encoding of Unicode in <a href="http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8" rel="nofollow">filenames, text files, environment variables</a>.</p>
<p>Furthermore, UTF-16 and UTF-32 have both big endian and little endian orientations. To deal with this, you'll either need external metadata like a MIME type, or a <a href="http://unicode.org/faq/utf_bom.html#BOM" rel="nofollow">Byte Orientation Mark</a>. It notes,</p>
<blockquote>
<p>Where UTF-8 is used transparently in
8-bit environments, the use of a BOM
will interfere with any protocol or
file format that expects specific
ASCII characters at the beginning,
such as the use of "#!" of at the
beginning of Unix shell scripts.</p>
</blockquote>
<p>The predecessor to UTF-16, which was called UCS-2 and didn't support surrogate pairs, had the <a href="http://www.uazone.org/multiling/unicode/ucs2.html" rel="nofollow">same issues</a>. UCS-2 should be avoided.</p>
http://stackoverflow.com/questions/164430/why-is-it-that-utf-8-encoding-is-used-when-interacting-with-a-unix-linux-environm/174226#1742261Answer by Mark Baker for Why is it that UTF-8 encoding is used when interacting with a UNIX/Linux environment?Mark Baker2008-10-06T13:13:35Z2008-10-06T13:13:35Z<p>I believe that when Microsoft started using a two byte encoding, characters above 0xffff had not been assigned, so using a two byte encoding meant that no-one had to worry about characters being different lengths.</p>
<p>Now that there are characters outside this range, so you'll have to deal with characters of different lengths anyway, why would anyone use UTF-16? I suspect Microsoft would make a different decision if they were desigining their unicode support today.</p>