I want to know why any developer would need to use an encoding other than UTF-8.
|
1
|
|||||
|
|
|
Wikipedia lists advantages and disadvantages of UTF-8 as compared to a variety of other encodings:
The most important disadvantages are IMHO that UTF-8 might use significantly more space especially in Asian languages such as Chinese, Japanese or Hindi and that not all code points have the same size which makes measurements more difficult and many string operations such as search inefficient. |
||||||
|
|
|
In UTF-8 code points between |
||
|
|
|
|
UTF-8 is very efficient at encoding plain English text (same as ASCII). If your user base is likely to be mostly, say, Chinese, you will be much better off using UTF-16. For more information, see The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets. |
||
|
|
Sometimes they are restricted due to historical/unsupported reasons (I'm developing on Windows using Zend Studio on a Samba share on a Linux box: and something in that mix means I keep reverting to Cp1512 instead of UTF8). Sometimes you don't need to use UTF-8 (for example when storing a md5 hash in a database: you only need the hexadecimal range 0-9 A-F: why make it a UTF-8 field, which will take at least a byte extra storage instead of normal ASCII). Sometimes it's just laziness learning the UTF-8 functions for a particular language. |
||||||||||||||
|
|
|
Its also worth remembering that in some circumstances (where a non-latin set of characters are needed) UTF-8 can actually bloat larger than the 16 bit Unicode encoding. In those cases ucs-2 or utf-16 would be a better choice. |
||
|
|
|
Well, some do it because their tools are archaic or flawed. Some do it because they don't see a need to support anything other than ASCII. Some do it because they don't know any better. Those are the usual excuses for not using Unicode. As for not using UTF-8 specifically there are different reasons. Some systems, like Windows1 (and stemming from that, .NET) and Java came to be in a time where Unicode was a strict 16-bit code. Therefore, there was really only one encoding: UCS-2, encoding code points directly as 16-bit words. Later Unicode was expanded to 21 bits because 65536 code points weren't enough anymore. This caused encodings such as UTF-32 and UTF-16 to appear. For systems previously working with UCS-2 the transition to UTF-16 was the easiest and most sensible choice. Windows did that transition back in Ye Olde Days of Windows 2000. So while I think that nearly all application nowadays should support Unicode I don't think it is entirely necessary for them to specifically use UTF-8. There are historic reasons for that and no real benefit in converting existing systems from UTF-16 to UTF-8. 1 NT. |
||
|
|
One legitimate reason is when you need to deal with legacy documents, software or hardware that are not Unicode compatible. Another legitimate reason is that you need to use a programming language / libraries that do not support UTF8 / Unicode well ... or at all. Other answers mention that UTF-16 is more compact than UTF-8 for Asian languages / characters. And of course there are reasons like short-sightedness, ignorance, laziness ... and deadlines. |
|||
|
|
|
Many APIs require other Unicode encodings - mostly UTF-16. For instance, Java, .NET, Win32. |
||
|
|
|
|
Mostly for historical reasons. |
||
|
|
|
|
Unicode certainly is a good place to work from in most cases, but a developer should be familiar with many different types of character encoding. Certainly ASCII might be used if the set of characters is limited. What if you're a developer and receiving data from a source that doesn't send UTF-8? There could be lots of interface issues if you don't understand your input. Joel's article on the must-knows for character encoding is good and worth reading. |
|||
|
|
|
Because outside the English-speaking world, people have been using various encodings that predate Unicode and are tailored for their respective languages for decades. These language-specific encodings have become ingrained everywhere and are pretty much a standard. If you want to have any hope of interfacing with legacy systems, you have to use them, so all systems have to support them and usually use them as default even if they by now support UTF-8 as well. There may even be multiple legacy encodings traditionally used for different purposes. Examples:
The last two examples show that encodings can even be a political issue. |
|||
|
|
|
|
Because you sometimes want to operate easily on codepoints -- then you'd choose f.e. UCS-2 or UCS-4. |
||
|
|
|
At my previous employer we used iso-8859-1 for some of our ASP pages to match the collation of our SQL Server, which as you can guess was not Unicode. I wanted to change the collation, but the manager said to wait till we upgrade our SQL Server to do it. Needless to say it never happened - I haven't been with them for a little over a year now, so I don't know if they finally did it. |
||
|
|
|
|
In Western Europe, the ISO-8859-1 (a.k.a. "Latin1") encoding is quite common, it was used in the DOS and early Windows days, and many places (databases, service calls) you will still find this encoding at times. So when interfacing with such a legacy system, you're likely to encounter that encoding. Not that I would recommend it's use - UTF-8 is just so much easier to use and causes so much less trouble and friction. Marc |
||
|
|
|
|
Because they do not know better. The only valid criticism to utf-8 is that encodings for common Asian languages are oversized from other encodings. UTF-8 is superior because
Say you have this UTF-16 string.
And you want to insert a character with code 8 between [3] and [4] you would do insert(5,8) If you don't check for characters outside BMP(serially as in UTF-8 as you cannot know how many double sized characters you have) you get:
Two new garbage characters. So much for your fixed size encoding. You can of course disallow such characters altogether, but then when your code interfaces with the real world, you might find your program saves the profile for this user who lives in rm -Rf / in .profile instead of [Classical Chinese Proverb].profile. Or just an angry user that cannot write his thesis on Classical Chinese Proverbs with your software. |
||
|
|
|
|
http://www.personal.psu.edu/ejp10/blogs/gotunicode/2007/02/cjk-unicode-angst-in-japan-and.html has a good summary + links about the difficulty Japanese users have with Unicode. http://www.jbrowse.com/text/unij.html http://www.hastingsresearch.com/net/04-unicode-limitations.shtml http://www.mojikyo.org/html/abroad/abroad%5Ftop.html Apparently Unicode is moving away from unification due to such complaints. |
||
|
|
