Roughly speaking, the
The software that reads a UTF-8 stream must be able just gets a sequence of bytes - how is it supposed to tell decide whether the difference between one next 4 bytes is a single 4-byte characterand , or two 2-byte charactersand , or four 1-byte characters (et cetera). In or some other wordscombination)? Basically this is done by deciding that certain 1-byte sequences aren't valid characters, there can't be 2^32 different 4-byte and certain 2-byte sequences aren't valid charactersbecause otherwise , and so on. When these invalid sequences appear, it would be impossible for shorter characters to existis assumed that they form part of a longer sequence.The number
You've seen a rather different example of 4-byte characters you this, I'm sure: it's called escaping. In many programming languages it is decided that the \ character in a string's source code doesn't translate to any valid character in the string's "lose" compiled" form. When a \ is more than found in the number source, it is assumed to be part of a longer sequence, like \n or \xFF. Note that \x is an invalid 2-character sequence, and \xF is an invalid 3-character sequence, but \xFF is a valid 4-character sequence.
Basically, there's a trade-off between having many characters and having shorter characters. If you gain in returnwant 2^32 characters, they need to be on average 4 bytes long.
Some If you want all your characters to be 2 bytes or less, then you can't have more detailthan 2^16 characters. UTF-8 gives a reasonable compromise: in order all ASCII characters (ASCII 0 to work efficiently127) are given 1-byte representations, which is great for compatibility, but many more characters are allowed.
Like most variable-length encodings, including the kinds of escape sequences shown above, UTF-8 is an instantaneous code. This means that, the decoder just reads byte by byte and as soon as it reaches the last byte of a character, it knows what the character is (and it knows that it isn't the beginning of a longer character).
Since UTF-8 has 128 different 1-byte characters (whose byte values are 0-127), all 2, 3 and 4-byte characters must be composed solely of bytes in the range 128-256. That's a big restriction. However, it allows byte-oriented string functions to work with little or no modification. For instance, C's strstr() function always works correctly as expected if its inputs are valid UTF-8 strings.
UTF-16 is also a variable-length code; its characters consume either 2 or 4 bytes. 2-byte values in the range 0xD800-0xDFFF are reserved for constructing 4-byte characters, and all 4-byte characters consist of two bytes in the range 0xD800-0xDBFF followed by 2 bytes in the range 0xDC00-0xDFFF. For this reason, Unicode does not assign any characters in the range U+D800-U+DFFF.
The UTF-8 system is in fact "artificially" limited to 4 bytes. It can be extended to 8 bytes without violating the ideas restrictions I outlined earlier, and this would yield a capacity of 2^42. The original UTF-8 specification in fact allowed up to 6 bytes, which gives a capacity of 2^31. But RFC 3629 limited it to 4 bytes, since that is how much is needed to cover all of what UTF-16 does.
