show/hide this revision's text 4 Trying to clarify

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.

show/hide this revision's text 3 Lots of additions

While some

UTF-8characters can be 4 bytes long,

UTF-8 cannot encode 2^32 characters. It's not even close. I'll try to explain the reasons for this.

UTF-8 is a variable-length code. Some characters require 1 byte, some require 2, some 3 and some 4. The bytes for each character are simply written one after another as a continuous stream of bytes.

The

While some UTF-8 characters can be 4 bytes long, UTF-8 cannot encode 2^32 characters. It's not even close. I'll try to explain the reasons for this.

Roughly speaking, the software that reads this a UTF-8 stream needs to must be able to decide how many bytes tell the next difference between one 4-byte character and two 2-byte characters and four 1-byte characters (et cetera). In other words, there can't be 2^32 different 4-byte characters because otherwise it would be impossible for shorter characters to exist. The number of 4-byte characters you "lose" is composed more than the number of shorter characters you gain in return.In

Some more detail: in order to do this work efficiently(and also because alternative methods don't have any major benefits) , 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 other 2, 3 and 4-byte characters must be composed solely of bytes in the range 128-256. That's a big restriction.

But

However, it allows byte-oriented string functions to work with little or no modification. For instance, if you search for a substring using C's strstr() function always works correctly if its inputs are valid UTF-8 strings.

UTF-16

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. For this reason, you won't get "false positives" due to Unicode does not assign any characters in the string starting halfway through range U+D800-U+DFFF.

UTF-32

UTF-32 is a multibyte fixed-length code, with each character being 4 bytes long. While this allows the encoding of 2^32 different characters, only values between 0 and 0x10FFFF are allowed in this scheme.

The most restricted is therefore UTF-16! The formal Unicode characters are definition has limited the Unicode characters to what is representable by those that can be encoded with UTF-16 . (That is, everything from i.e. the range U+0000 to U+10FFFF excluding the range U+D800 to U+DFFF which UTF-16 uses to allow 4-byte characters)U+DFFF). All UTF-8 and UTF-32 support all of these characters.

The UTF-8 system is in fact "artificially" limited to 4 bytes. It can be encoded with UTF-8 extended to 8 bytes without violating the ideas I outlined earlier, and UTF-32this 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.

show/hide this revision's text 2 Big rewording

While some UTF-8 characters can be 4 bytes long, UTF-8 cannot encode 2^32 characters. It's not even close. I'll try to explain the reasons for this.

UTF-8 is a variable-length code. Some characters require 1 byte, some require 2, some 3 and some 4. The fundamental reason bytes for each character are simply written one after another as a continuous stream of bytes.

The software that reads this stream needs to be able to decide how many bytes the next character is composed of. In order to do this efficiently (and also because alternative methods don't have any major benefits) UTF-8 is an instantaneous code. This means thatone , the decoder just reads byte by byte and as soon as it reaches the last byte of a charactercannot be , it knows what the start character is (and it knows that it isn't the beginning of anothera longer character).

For instance, A the character 'A' is encoded with represented using the byte 65; so , and there are no two-byte character can start with two/three/four-byte characters whose first byte is 65, or an ambiguous situation would arise. (It's sometimes possible to get around this but there's no advantage Otherwise the decoder wouldn't be able to doing so.)

In an encoding that supports only 1- and 2-byte characters, this means that every 1-byte character costs you 256 two-byte tell those characters . There's no getting around thisapart from an 'A' followed by something else.

But UTF-8 is restricted even further. It ensures that no longer character contains the encoding of a shorter character never appears anywhere within the encoding of a longer character. For instance, no none of the bytes in a 4-byte character contains the byte can be 65.

This

Since UTF-8 has 128 different 1-byte characters (whose byte values are 0-127), all other characters must be composed solely of bytes in the range 128-256. That's a big restriction.

But it allows byte-oriented string functions to work with little or no modification. For instance, if you search for a substring using C's strstr() function, you won't get "false positives" due to the string starting halfway through a multibyte character.

show/hide this revision's text 1