vote up 3 vote down star
1

I want to know why any developer would need to use an encoding other than UTF-8.

flag
1  
Do you mean, compared to UTF-16, or compared to legacy non-Unicode encodings? – Craig McQueen Jul 29 at 13:18

16 Answers

vote up 12 vote down

Wikipedia lists advantages and disadvantages of UTF-8 as compared to a variety of other encodings:

http://en.wikipedia.org/wiki/UTF-8#Advantages_and_disadvantages

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.

link|flag
3  
Not all code points have the same size in UTF-16. – Craig McQueen Jul 29 at 13:14
But there are other encodings where this is the case such as UCS-2, ASCII, etc. – divo Jul 29 at 15:31
vote up 7 vote down

In UTF-8 code points between 0800 and FFFF take up three bytes in UTF-8 but only two in UTF-16. See the wikipedia comparison for more details, but basically if text heavily uses code points in this range (say, if it's Chinese), UTF-8 files will be larger than UTF-16 files with the same content.

link|flag
vote up 7 vote down

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.

link|flag
+1 for (a) brief clear answer and (b) pointer to Joel – Smandoli Jul 29 at 13:22
I found the linked blog entry from Joel very informative. Thanks! – T Pops Nov 20 at 16:09
vote up 4 vote down

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.

link|flag
1  
Why would the UTF8 representation of hex digits occupy more storage than the ASCII representation? The byte values are the same in the two encodings. – Jonathan Leffler Jul 29 at 13:12
1  
UTF-8 does not take more bytes than ASCII for encoding ASCII. Why do you think it needs an extra byte? – robcast Jul 29 at 13:17
Ok, perhaps I should have qualified it a bit more. I've seen some implementations [if I recall correctly, it might have been Oracle] store a byte order marker (BOM) for all UTF8 data fields: some implementations don't use it unless the data is non-ASCII, some don't use it unless the BOM differs from the "default". – Richy C. Jul 29 at 14:25
@Richy C: Cp1512??? Do you mean cp1251? cp1252? – John Machin Jul 31 at 14:56
Yep John, seems I made a typo: I meant Cp1252 instead Cp1512. D'uh! Principle is the same though ;) – Richy C. Jul 31 at 16:37
vote up 3 vote down

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.

link|flag
Besides, you should never use UCS2 if you can avoid it because it can only encode part of unicode (plane 0, BMP, the 0-FFFF range) and that may break your program in interesting ways. – robcast Jul 29 at 13:13
vote up 2 vote down

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.

link|flag
+1 for more than I wanted to know, but very well summarized – Smandoli Jul 29 at 13:24
.... uh, and of course I didn't ask the question, so of course it's more than I wanted to know ... – Smandoli Jul 29 at 13:25
vote up 2 vote down

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.

link|flag
+1 another nice summary, and that real-world edge, ooh can't beat it. – Smandoli Jul 29 at 13:27
vote up 1 vote down

Many APIs require other Unicode encodings - mostly UTF-16. For instance, Java, .NET, Win32.

link|flag
vote up 1 vote down

Mostly for historical reasons.

link|flag
vote up 1 vote down

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.

link|flag
Thanks. Fixed. – Chet Jul 29 at 13:30
vote up 1 vote down

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.

link|flag
vote up 0 vote down

Because you sometimes want to operate easily on codepoints -- then you'd choose f.e. UCS-2 or UCS-4.

link|flag
UCS-2 is limited to the BMP. Certainly not the smartest choice nowadays. – Johannes Rössel Jul 29 at 13:10
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

  • It is ASCII compatible. Most known and tried string operations do not need adaptation.
  • It is Unicode. Anything that isn't Unicode shouldn't even be considered in this day and age. If you have important data in encoding X, spend two minutes on Google and write a conversion function. Even if you have to interface with sourceless legacy app Z, you can run your communications through a pipe so that your logic stays in the 21st century.
  • UTF-16 isn't fixed length either and assuming it is like many do, will only cause terrible bugs.
  • Additionally Unicode is very complex and it is almost certain than any fixed-size algorithm adapted from ASCII will yield bad results even in UTF-32.

Say you have this UTF-16 string.

[0][1][2][F|3] [4] [5]

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:

[0][1][2][F|8][3][4][5]

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.

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.