Why do we need Unicode?
In the (not too) early days, all that existed was ASCII. This was okay, as all that would ever be needed were a few control characters, numbers, and letters like the ones in this sentence. Unfortunately, today's strange world of global intercommunication and social media was not foreseen, and it is not too unusual to see English, العربية, 汉语, עִבְרִית, ελληνικά, and ភាសាខ្មែរ in the same document (I hope I didn't break any old browsers).
But for argument's sake, lets say Joe Average is a software developer. He insists that he will only ever need English, and as such only wants to use ASCII. This might be fine for Joe the user, but this is not fine for Joe the software developer. More than half the world uses non-Latin characters and using ASCII is arguably inconsiderate to these people, and on top of that, he is closing off his software to a large and growing economy.
Therefore an encompassing character set including all languages is needed. Thus came Unicode. It assigns every character a unique number called a code point. The advantage of Unicode over other possible sets is it is completely backwards compatible with ASCII (and ISO-8859-1). In addition, the vast majority of commonly used characters are representable by only two bytes, in a region called the Basic Multilingual Plane (BMP). Now a character encoding is needed to access this character set, and as the question asks, I will concentrate on UTF-8 and UTF-16.
Memory considerations
So how many bytes give access to what characters in these encodings?
- UTF-8:
- 1 byte: Standard ASCII
- 2 bytes: Arabic, Hebrew, most European scripts (most notably excluding Georgian)
- 3 bytes: BMP
- 4 bytes: All Unicode characters
- UTF-16:
- 2 bytes: BMP
- 4 bytes: All Unicode characters
It's worth mentioning now that characters not in the BMP include ancient scripts, mathematical symbols, musical symbols, and rarer Chinese/Japanese/Korean (CJK) characters.
If you'll be working mostly with ASCII, then UTF-8 is certainly more memory efficient. However, if you're working mostly with non-European scripts, using UTF-8 could be 1.5 to 2 times less memory efficient than UTF-16. When accessing webpages with large amounts of text, this could greatly impact loading times.
Encoding
Note: If you know how UTF-8 and UTF-16 are encoded, skip to the next section for practical applications.
I'll try to be as non-technical as possible, while still being technical enough to explain why encoding affects everyday programming. For those wanting technical details, see the UTF FAQ.
- UTF-8: For the standard ASCII (0-127) characters, the UTF-8 codes are identical. This makes UTF-8 ideal if backwards compatibility is required with existing ASCII text. However, all other characters require anywhere from 2-4 bytes. Each of these bytes have some bits reserved for encoding purposes. Thus, there is a small performance penalty as bits must be extracted and concatenated to retrieve the Unicode code point.
- UTF-16: For valid BMP characters, the UTF-16 representation is simply its code point, which is simple and fast. However, for non-BMP characters UTF-16 introduces surrogate pairs. In this case a combination of two two-byte portions map to a non-BMP character. These two-byte portions come from the BMP numeric range, but are guaranteed by the Unicode standard to be invalid as BMP characters. In addition, since UTF-16 has two bytes as its default unit, it is affected by endianness. To compensate, a reserved byte order mark can be placed at the beginning of a data stream which indicates endianness. Thus, if you are reading UTF-16 input, and no default endianness is implied, you must check for this.
Note that UTF-8 and UTF-16 are nowhere near compatible with each other, so if you're doing I/O, make sure you know which encoding you are using!
Practical programming considerations
Character and String data types: How are they encoded in the programming language? If they are raw bytes, the minute you try to output non-ASCII characters, you may run into a few problems. You'll have to use a library that supports UTF, such as wchar_t in the C language. In any case, if you want to input/output something other than the default encoding, you will have to convert it first.
Library support: What encodings are the libraries you are using support? Do they support the corner cases? Since necessity is the mother of invention, UTF-8 libraries will generally support everything properly, since 1, 2, and even 3 byte characters can occur frequently. However, not all purported UTF-16 libraries support surrogate pairs properly since they occur very rarely.
Counting characters: There exist combining characters in Unicode. For example the code point U+006E (n), and U+0303 (a combining tilde) forms ñ, but the code point U+00F1 forms ñ. They look identical, but a simple counting algorithm will return 2 for the first example, 1 for the latter. This isn't necessarily wrong, but may not be the desired outcome either.
Comparing for equality: A, А, and Α look the same, but they're Latin, Cyrillic, and Greek respectively. You also have cases like C and Ⅽ, one is a letter, the other a Roman numeral. In addition, we have the combining characters to consider as well. For more info see Duplicate characters in Unicode.
Surrogate pairs: These come up often enough on SO, so I'll just provide some example links:
Others?:
That turned out to be a longer rant than I expected.