What are the differences between UTF8, UTF16, and UTF32. I understand that all 3 will store Unicode, and that how it stores the chars is different, but is there an advantage to choosing one over the other?
|
UTF-8 has an advantage where ASCII are most prevalent characters. In that case most characters only occupy one byte each. It is also advantageous that UTF-8 file containing only ASCII characters has the same encoding as an ASCII file. UTF-16 is better where ASCII is not predominant, it uses 2 bytes per character primarily. UTF-8 will start to use 3 or more bytes for the higher order characters where UTF-16 remains at just 2 most of the time. UTF-32 will cover all possible characters in 4 bytes each which makes it pretty bloated, I can't think of any advantage to use it. |
|||||||||||||||||
|
|
In short:
|
|||||||||||||||||||||
|
|
Unicode defines a single huge character set, assigning one unique integer value to every graphical symbol (that is a major simplification, and isn't actually true, but it's close enough for the purposes of this question). UTF8/16/32 are simply different ways to encode this. In brief, UTF32 uses 32-bit values for each character. That allows them to use a fixed-width code for every character. UTF16 uses 16-bit by default, but that only gives you 65k possible characters, which is nowhere near enough for the full Unicode set. So some characters use pairs of 16-bit values. And UTF8 uses 8-bit values by default, which means that the 127 first values are fixed-width single-byte characters. (the most significant bit is used to signify that this is the start of a multi-byte sequence, leavin 7 bits for the actual character value) All other characters are encoded as sequences of up to 4 bytes (if memory serves). And that leads us to the advantages. Any ASCII-character is directly compatible with UTF8, so for upgrading legacy apps, UTF8 is a common and obvious choice. In almost all caes, it will also use the least memory. On the other hand, you can't make any guarantees about the width of a character. It may be 1, 2, 3 or 4 characters wide, which makes string manipulation difficult. UTF32 is opposite, it uses the most memory (each character is a fixed 4 bytes wide), but on the other hand, you know that every character has this precise length, so string manipulation becomes far simpler. You can compute the number of characters in a string simply from the length in bytes of the string. You can't do that with UTF8. UTF16 is a compromise. It lets most characters fit into a fixed-width 16-bit value. so as long as you don't have Chinese symbols, musical notes or some others, you can assume that each characater is 16 bits wide. It uses less memory than UTF32. But it is in some ways "the worst of both worlds". It almost always uses more memory than UTF8, and it still doesn't avoid the problem that plagues UTF8 (variable-length characters). Finally, it's often helpful to just go with what the platform supports. Windows uses UTF16 internally, so on Windows, that is the obvious choice. Linux varies a bit, but they generally use UTF8 for everything that is Unicode-compliant. So short answer: all three encodings can encode the same character set, but they represent each character as different byte sequences. |
|||||||||
|
|
||||
|
I just got done reading Joel's article on Unicode from several years back. I think much of it still applies. |
|||
|
|
|
I made some tests to compare db performance between utf-8 and utf-16 in MySql Update Speeds Utf-8
utf-16
Insert Speeds
Delete Speeds
|
|||
|
|
|
Depending on your dev environment you may not even have the choice what encoding your string data type will use internally. But for storing and exchanging data I would always use UTF8, if you have the choice. If you have mostly ASCII data this will give you the smallest amount of data to transfer, while still being able to encode everything. Optimizing for least I/O is the way to go on modern machines. |
|||
|
|
|
In UTF32 all of characters are coded with 32 bits. Advantage is that you can easily calculate length of the string. Disadvantage is, that for each ASCII characters you waste extra 3 bytes. In UTF8 characters have variable length, ASCII characters are coded in 1 byte (8 bits), most western special characters are coded either in 2 bytes or 3 bytes (for example € is 3 bytes), and more exotic characters can take up to 4 bytes. Clear disadvantage is, that a priori you cannot calculate string's length. But it's takes lot less bytes to code Latin (English) alphabet text, compared to UTF32. UTF16 is also variable length. Characters are coded either in 2 bytes or 4 bytes. I really don't see the point. It has disadvantage of being variable length, but hasn't got the advantage of saving as much space as UTF8. Of those 3, clearly UTF8 is the most widely spread. |
|||
|
|
|
As mentioned, the difference is primarily the size of the underlying variables, which in each case get larger to allow more characters to be represented. However, fonts, encoding and things are wickedly complicated (unnecessarily?), so a big link is needed to fill in more detail: http://www.cs.tut.fi/~jkorpela/chars.html#ascii Don't expect to understand it all, but if you don't want to have problems later it's worth learning as much as you can, as early as you can (or just getting someone else to sort it out for you). Paul. |
|||
|
|
|
Unicode is a standard and about UTF-x you can think as a technical implementation for some practical purposes:
|
|||
|
|





