Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 still variable length. If you don't need this, then UTF-16 seems like a colossal waste of space compared to UTF-8. What are the advantages of UTF-16 over UTF-8 and UTF-32 and why do Windows and Java use it as their native encoding?

share|improve this question
Perhaps you could rephrase your question to not be so subjective and argumentative? – Gabe Mar 13 '11 at 20:29
If only it was true for UTF-32... Play 5 minutes with combining characters en.wikipedia.org/wiki/Combining_character and the tell me how much "random" everything is :-) – xanatos Mar 13 '11 at 20:36

4 Answers

up vote 12 down vote accepted

When Windows NT was designed UTF-16 didn't exist (NT 3.51 was born in 1993, while UTF-16 was born in 1996 with the Unicode 2.0 standard); there was instead UCS-2, which, at that time, was enough to hold every character available in Unicode, so the 1 code point = 1 code unit equivalence was actually true - no variable-length logic needed for strings.

They moved to UTF-16 later, to support the whole Unicode character set; however they couldn't move to UTF-8 or to UTF-32, because this would have broken binary compatibility in the API interface (among the other things).

As for Java, I'm not really sure; since it was released in ~1995 I suspect that UTF-16 was already in the air (even if it wasn't standardized yet), but I think that compatibility with NT-based operating systems may have played some role in their choice (continuous UTF-8 <-> UTF-16 conversions for every call to Windows APIs can introduce some slowdown).


Edit

Wikipedia explains that even for Java it went in the same way: it originally supported UCS-2, but moved to UTF-16 in J2SE 5.0.

So, in general when you see UTF-16 used in some API/Framework it is because it started as UCS-2 (to avoid complications in the string-management algorithms) but it moved to UTF-16 to support the code points outside the BMP, still maintaining the same code unit size.

share|improve this answer
1  
You may look at en.wikipedia.org/wiki/UTF-16/UCS-2 – mozillanerd Mar 13 '11 at 20:47

UTF-16 covers the entire BMP with single units - So unless you have a need for the rarer characters outside the BMP, UTF-16 is effectively 2 bytes per character. UTF-32 takes more space, UTF-8 requires variable-length support.

share|improve this answer
I'll add the necessary wiki reference to UTF-32, that explains all the disadvantages: en.wikipedia.org/wiki/UTF-32/UCS-4 – xanatos Mar 13 '11 at 20:37
1  
@Erik - You might as well say UTF-8 is effectively one byte per character... unless you need rare characters outside ASCII. In reality, UTF-16 is just as variable-length as UTF-8. – SigueSigueBen Jun 21 '12 at 17:25

UTF16 is generally used as a direct mapping to multi-byte character sets, ie onyl the original 0-0xFFFF assigned characters.

This gives you the best of both worlds, you have fixed character size but can still print all the characters anyone is likely to use (orthodox Klingon religous scripts excepted)

share|improve this answer
Unless they're from Hong Kong, as even basic Cantonese sentences can require characters outside of the BMP. Besides which, there's no fun like the fun that can come from having a program reject some valid characters for no reason the end user can see. – prosfilaes May 25 '12 at 7:19

UTF-16 allows all of the basic multilingual plane (BMP) to be represented as single code units. Unicode code points beyond U+FFFF are represented by surrogate pairs.

The interesting thing is that Java and Windows (and other systems that use UTF-16) all operate at the code unit level, not the Unicode code point level. So the string consisting of the single character U+1D122 (MUSICAL SYMBOL F CLEF) gets encoded in Java as "\ud824\udd22" and "\ud824\udd22".length() == 2 (not 1). So it's kind of a hack, but it turns out that characters are not variable length.

The advantage of UTF-16 over UTF-8 is that one would give up too much if the same hack were used with UTF-8.

share|improve this answer
1  
Me thinks (yes, me thinks :-) ) that the world would be better if programmers had to know of variable length characters, instead of discovering them "casually" (as it's now, a programmer could live years without knowing that a code point could be long 2, if everything was UTF-8, he could keep the head under the earth only for some months :-) ) – xanatos Mar 14 '11 at 20:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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