UTF-8


UTF-8 is a variable-width character encoding capable of encoding all 1,112,064 valid character code points in Unicode using one to four one-byte code units. The encoding is defined by the Unicode Standard, and was originally designed by Ken Thompson and Rob Pike. The name is derived from Unicode Transformation Format 8-bit.
It was designed for backward compatibility with ASCII. Code points with lower numerical values, which tend to occur more frequently, are encoded using fewer bytes. The first 128 characters of Unicode, which correspond one-to-one with ASCII, are encoded using a single byte with the same binary value as ASCII, so that valid ASCII text is valid UTF-8-encoded Unicode as well. Since ASCII bytes do not occur when encoding non-ASCII code points into UTF-8, UTF-8 is safe to use within most programming and document languages that interpret certain ASCII characters in a special way, such as "/" in filenames, "\" in escape sequences, and "%" in printf.
UTF-8 is by far the most common encoding for the World Wide Web, accounting for over 95% of all web pages, and up to 100% for some languages, as of 2020. No encoding other than UTF-8 is more popular on the web for any country. Non-web use is lower.

Use

Since 2009, UTF-8 has been the most common encoding for the World Wide Web. The World Wide Web Consortium recommends UTF-8 as the default encoding in XML and HTML, UTF-8 is the recommendation from the WHATWG for HTML and DOM specifications, and the Internet Mail Consortium recommends that all e-mail programs be able to display and create mail using UTF-8.
UTF-8 accounts for 83% to 100% of all web pages as of 2020, depending on language or country. On average, it accounts for 95.3% of all web pages and 97% of the top 1,000 highest ranked web pages, some of which are simply ASCII, as ASCII is a subset of UTF-8.
Several languages, such as Punjabi, Tagalog, Lao, Marathi, and Kanada have 100.0% use of UTF-8 on the web, while use for Japanese at 90.4% is lowest . Arabic has 96.4% UTF-8 use on the web.
The next-most popular multi-byte encoding is the Chinese standard and with their extension to it GBK have a combined 12.8% share in China and a 0.4% share world-wide. Big5 is another popular Chinese encoding with 0.1% share world-wide. Those. Shift JIS and EUC-JP have a 10.5% share on Japanese websites.
For local text files UTF-8 usage is lower, and many legacy single-byte encodings remain in use. This is primarily due to editors that will not display or write UTF-8 unless the first character in a file is a byte order mark, making it impossible for other software to use UTF-8 without being rewritten to ignore the byte order mark on input and add it on output. UTF-16 files are also fairly common on Windows, but not elsewhere.
Internally in software usage is even lower, with UCS-2 and UTF-32 in use, particularly in Windows but also Python, JavaScript, Qt, and many other software libraries. This is due to a belief that direct indexing of code points is more important than 8-bit compatibility. UTF-16 is also used due to being compatible with UCS-2, even though it does not have direct indexing. Microsoft now recommends UTF-8 for Windows programs, while previously they emphasized "Unicode" Win32 API, this may mean internal use of UTF-8 will increase in the future.

Description

Since the restriction of the Unicode code-space to 21-bit values in 2003, UTF-8 is defined to encode code points in one to four bytes, depending on the number of significant bits in the numerical value of the code point. The following table shows the structure of the encoding. The characters are replaced by the bits of the code point. If the number of significant bits is no more than seven, the first line applies; if no more than 11 bits, the second line applies, and so on.
The first 128 characters need one byte. The next 1,920 characters need two bytes to encode, which covers the remainder of almost all Latin-script alphabets, and also Greek, Cyrillic, Coptic, Armenian, Hebrew, Arabic, Syriac, Thaana and N'Ko alphabets, as well as Combining Diacritical Marks. Three bytes are needed for characters in the rest of the Basic Multilingual Plane, which contains virtually all characters in common use, including most Chinese, Japanese and Korean characters. Four bytes are needed for characters in the other planes of Unicode, which include less common CJK characters, various historic scripts, mathematical symbols, and emoji.
Some of the important features of this encoding are as follows:
Consider the encoding of the Euro sign, €:
  1. The Unicode code point for "€" is U+20AC.
  2. According to the scheme table above, this will take three bytes to encode, since it is between U+0800 and U+FFFF.
  3. Hexadecimal is binary. The two leading zeros are added because, as the scheme table shows, a three-byte encoding needs exactly sixteen bits from the code point.
  4. Because the encoding will be three bytes long, its leading byte starts with three 1s, then a 0
  5. The four most significant bits of the code point are stored in the remaining low order four bits of this byte, leaving 12 bits of the code point yet to be encoded.
  6. All continuation bytes contain exactly six bits from the code point. So the next six bits of the code point are stored in the low order six bits of the next byte, and is stored in the high order two bits to mark it as a continuation byte.
  7. Finally the last six bits of the code point are stored in the low order six bits of the final byte, and again is stored in the high order two bits.
The three bytes can be more concisely written in hexadecimal, as.
The following table summarises this conversion, as well as others with different lengths in UTF-8. The colors indicate how bits from the code point are distributed among the UTF-8 bytes. Additional bits added by the UTF-8 encoding process are shown in black.
Since UTF-8 uses groups of six bits, it is sometimes useful to use octal notation which uses 3-bit groups. With a calculator which can convert between hexadecimal and octal it can be easier to manually create or interpret UTF-8 compared with using binary.
When converting UTF-8 into code points, the following rules apply:
The following table summarizes usage of UTF-8 code units in a code page format. The upper half is for bytes used only in single-byte codes, so it looks like a normal code page; the lower half is for continuation bytes and leading bytes, and is explained further in the legend below.
Blue cells are 7-bit sequences. They must not be followed by a continuation byte.
Orange cells with a large dot are continuation bytes. The hexadecimal number shown after the symbol is the value of the 6 bits they add.
White cells are the leading bytes for a sequence of multiple bytes, the length shown at the left edge of the row. The text shows the Unicode blocks encoded by sequences starting with this byte, and the hexadecimal code point shown in the cell is the lowest character value encoded using that leading byte.
Red cells must never appear in a valid UTF-8 sequence. The first two red cells could be used only for a 2-byte encoding of a 7-bit ASCII character which should be encoded in 1 byte; as described below, such "overlong" sequences are disallowed. The red cells in the row indicate leading bytes of 4-byte or longer sequences that cannot be valid because they would encode code points larger than the U+10FFFF limit of Unicode, and and were never defined for any purpose in UTF-8.
Pink cells are the leading bytes for a sequence of multiple bytes, of which some, but not all, possible continuation sequences are valid. and could start overlong encodings, in this case the lowest non-overlong-encoded code point is shown. can start code points greater than U+10FFFF which are invalid. can start the encoding of a code point in the range U+D800–U+DFFF; these are invalid since they are reserved for UTF-16 surrogate halves.

Overlong encodings

In principle, it would be possible to inflate the number of bytes in an encoding by padding the code point with leading 0s. To encode the Euro sign € from the above example in four bytes instead of three, it could be padded with leading 0s until it was 21 bits long
, and encoded as . This is called an overlong encoding.
The standard specifies that the correct encoding of a code point use only the minimum number of bytes required to hold the significant bits of the code point. Longer encodings are called overlong and are not valid UTF-8 representations of the code point. This rule maintains a one-to-one correspondence between code points and their valid encodings, so that there is a unique valid encoding for each code point. This ensures that string comparisons and searches are well-defined.
Modified UTF-8 uses the two-byte overlong encoding of U+0000 as instead of . This allows the byte to be used as a string terminator.

Invalid byte sequences

Not all sequences of bytes are valid UTF-8. A UTF-8 decoder should be prepared for:
Many of the first UTF-8 decoders would decode these, ignoring incorrect bits and accepting overlong results. Carefully crafted invalid UTF-8 could make them either skip or create ASCII characters such as NUL, slash, or quotes. Invalid UTF-8 has been used to bypass security validations in high-profile products including Microsoft's IIS web server and Apache's Tomcat servlet container. RFC 3629 states "Implementations of the decoding algorithm MUST protect against decoding invalid sequences." The Unicode Standard requires decoders to "...treat any ill-formed code unit sequence as an error condition. This guarantees that it will neither interpret nor emit an ill-formed code unit sequence."
Some implementations of decoders throw exceptions on errors. This has the disadvantage that it can turn what would otherwise be harmless errors into a denial of service. For instance early versions of Python 3.0 would exit immediately if the command line or environment variables contained invalid UTF-8.
An alternative practice is to replace errors with a replacement character. Replacement requires defining how many bytes are in the error:
The large number of invalid byte sequences provides the advantage of making it easy to have a program accept both UTF-8 and legacy encodings such as ISO-8859-1. Software can check for UTF-8 correctness, and if that fails assume the input to be in the legacy encoding. It is technically true that this may detect an ISO-8859-1 string as UTF-8, but this is very unlikely if it contains any 8-bit bytes as they all have to be in unusual patterns of two or more in a row, such as "£".

Invalid code points

Since RFC 3629, the high and low surrogate halves used by UTF-16 and code points not encodable by UTF-16 are not legal Unicode values, and their UTF-8 encoding must be treated as an invalid byte sequence.
Not decoding unpaired surrogate halves makes it impossible to store invalid UTF-16 as UTF-8. To preserve these invalid UTF-16 sequences, their corresponding UTF-8 encodings are sometimes allowed by implementations despite the above rule. There are attempts to define this behavior formally.

Byte order mark

Many Windows programs add the bytes,, at the start of any document saved as UTF-8. This is the UTF-8 encoding of the Unicode byte order mark, and is commonly referred to as a UTF-8 BOM, even though byte order is irrelevant to UTF-8. While ASCII text encoded using UTF-8 normally is backwards compatible with ASCII, this is not true when Unicode Standard recommendations are ignored and a BOM is added. Non-UTF-8 software may show the BOM as three garbage characters, e.g. "" in software interpreting the document as ISO 8859-1 or Windows-1252, and "" if interpreted as code page 437. This is an example of mojibake, the output of garbled text when text is decoded using an unintended character encoding.
The Unicode Standard neither requires nor recommends the use of the BOM for UTF-8, but warns that it may be encountered at the start of a file transcoded from another encoding. The presence of the UTF-8 BOM may cause problems with existing software that can handle UTF-8, for example:
Nonetheless, some software such as text editors will refuse to correctly display or interpret UTF-8 unless the text starts with a byte order mark or it contains only ASCII.

Official name and variants

The official Internet Assigned Numbers Authority code for the encoding is "UTF-8". All letters are upper-case, and the name is hyphenated. This spelling is used in all the Unicode Consortium documents relating to the encoding.
Alternatively, the name "utf-8" may be used by all standards conforming to the IANA list, as the declaration is case insensitive.
Other descriptions, such as those that omit the hyphen or replace it with a space, i.e. "utf8" or "UTF 8", are not accepted as correct by the governing standards. Despite this, most agents such as browsers can understand them, and so standards intended to describe existing practice may effectively require their recognition.
Unofficially, UTF-8-BOM and UTF-8-NOBOM are sometimes used to refer to text files which respectively contain and lack a byte order mark. In Japan especially, UTF-8 encoding without BOM is sometimes called "UTF-8N".
Supported Windows versions, i.e. Windows 7 and later, have codepage 65001, as a synonym for UTF-8, and Microsoft has a script for Windows 10, to enable it by default for its program Microsoft Notepad.
In PCL, UTF-8 is called Symbol-ID "18N".

History

By early 1992, the search was on for a good byte-stream encoding of multi-byte character sets. The draft ISO 10646 standard contained a non-required annex called UTF-1 that provided a byte stream encoding of its 32-bit code points. This encoding was not satisfactory on performance grounds, among other problems, and the biggest problem was probably that it did not have a clear separation between ASCII and non-ASCII: new UTF-1 tools would be backward compatible with ASCII-encoded text, but UTF-1-encoded text could confuse existing code expecting ASCII, because it could contain continuation bytes in the range 0x21–0x7E that meant something else in ASCII, e.g., 0x2F for '/', the Unix path directory separator, and this example is reflected in the name and introductory text of its replacement. The table below was derived from a textual description in the annex.
Number
of bytes
First
code point
Last
code point
Byte 1Byte 2Byte 3Byte 4Byte 5
1U+0000U+009F00–9F
2U+00A0U+00FFA0A0–FF
2U+0100U+4015A1–F521–7E, A0–FF
3U+4016U+38E2DF6–FB21–7E, A0–FF21–7E, A0–FF
5U+38E2EU+7FFFFFFFFC–FF21–7E, A0–FF21–7E, A0–FF21–7E, A0–FF21–7E, A0–FF

In July 1992, the X/Open committee XoJIG was looking for a better encoding. Dave Prosser of Unix System Laboratories submitted a proposal for one that had faster implementation characteristics and introduced the improvement that 7-bit ASCII characters would only represent themselves; all multi-byte sequences would include only bytes where the high bit was set. The name File System Safe UCS Transformation Format and most of the text of this proposal were later preserved in the final specification.
Number
of bytes
First
code point
Last
code point
Byte 1Byte 2Byte 3Byte 4Byte 5
1U+0000U+007F
2U+0080U+207F
3U+2080U+8207F
4U+82080U+208207F
5U+2082080U+7FFFFFFF

In August 1992, this proposal was circulated by an IBM X/Open representative to interested parties. A modification by Ken Thompson of the Plan 9 operating system group at Bell Labs made it somewhat less bit-efficient than the previous proposal but crucially allowed it to be self-synchronizing, letting a reader start anywhere and immediately detect byte sequence boundaries. It also abandoned the use of biases and instead added the rule that only the shortest possible encoding is allowed; the additional loss in compactness is relatively insignificant, but readers now have to look out for invalid encodings to avoid reliability and especially security issues. Thompson's design was outlined on September 2, 1992, on a placemat in a New Jersey diner with Rob Pike. In the following days, Pike and Thompson implemented it and updated Plan 9 to use it throughout, and then communicated their success back to X/Open, which accepted it as the specification for FSS-UTF.
Number
of bytes
First
code point
Last
code point
Byte 1Byte 2Byte 3Byte 4Byte 5Byte 6
1U+0000U+007F
2U+0080U+07FF
3U+0800U+FFFF
4U+10000U+1FFFFF
5U+200000U+3FFFFFF
6U+4000000U+7FFFFFFF

UTF-8 was first officially presented at the USENIX conference in San Diego, from January 25 to 29, 1993. The Internet Engineering Task Force adopted UTF-8 in its Policy on Character Sets and Languages in RFC 2277 for future Internet standards work, replacing Single Byte Character Sets such as Latin-1 in older RFCs.
In November 2003, UTF-8 was restricted by RFC 3629 to match the constraints of the UTF-16 character encoding: explicitly prohibiting code points corresponding to the high and low surrogate characters removed more than 3% of the three-byte sequences, and ending at U+10FFFF removed more than 48% of the four-byte sequences and all five- and six-byte sequences.
Google reported that in 2008, UTF-8 became the most common encoding for HTML files. By 2018, most languages have use of UTF-8 up in the low to high 90%, including Greek at 97.1%. A few have even 100.0% use such as Kurdish, Pashto, Javanese, Kalaallisut and Iranian languages and Sign Languages. Exceptions include mainly Asian languages with Chinese at 88.0%, Japanese at 86.7% and Breton at 70%.
International Components for Unicode has historically used UTF-16, and still does only for Java; while for C/C++ UTF-8 is now supported as the "Default Charset", including the correct handling of "illegal UTF-8".

Standards

There are several current definitions of UTF-8 in various standards documents:
They supersede the definitions given in the following obsolete works:
They are all the same in their general mechanics, with the main differences being on issues such as allowed range of code point values and safe handling of invalid input.

Comparison with single-byte encodings

The following implementations show slight differences from the UTF-8 specification. They are incompatible with the UTF-8 specification and may be rejected by conforming UTF-8 applications.

CESU-8

Many programs added UTF-8 conversions for UCS-2 data and did not alter this UTF-8 conversion when UCS-2 was replaced with the surrogate-pair using UTF-16. In such programs each half of a UTF-16 surrogate pair is encoded as its own three-byte UTF-8 encoding, resulting in six-byte sequences rather than four bytes for characters outside the Basic Multilingual Plane. Oracle and MySQL databases use this, as well as Java and Tcl as described below, and probably many Windows programs where the programmers were unaware of the complexities of UTF-16. Although this non-optimal encoding is generally not deliberate, a supposed benefit is that it preserves UTF-16 binary sorting order when CESU-8 is binary sorted.

Modified UTF-8

In Modified UTF-8, the null character uses the two-byte overlong encoding , instead of . Modified UTF-8 strings never contain any actual null bytes but can contain all Unicode code points including U+0000, which allows such strings to be processed by traditional null-terminated string functions.
All known Modified UTF-8 implementations also treat the surrogate pairs as in CESU-8.
In normal usage, the Java programming language supports standard UTF-8 when reading and writing strings through and . However it uses Modified UTF-8 for object serialization among other applications of and, for the Java Native Interface, and for embedding constant strings in class files.
The dex format defined by Dalvik also uses the same modified UTF-8 to represent string values.
Tcl also uses the same modified UTF-8 as Java for internal representation of Unicode data, but uses strict CESU-8 for external data.

WTF-8

WTF-8 is an extension of UTF-8 where the encodings of unpaired surrogate halves are allowed. This is necessary to store possibly-invalid UTF-16, such as Windows filenames. Many systems that deal with UTF-8 work this way without considering it a different encoding, as it is simpler.
The term "WTF-8" has also been used humorously to refer to erroneously doubly-encoded UTF-8 sometimes with the implication that CP1252 bytes are the only ones encoded.

UTF-8b

Extensions have been created to store invalid byte sequences as UTF-16. They include MirBSD OPTU-8/16 which converts them to U+EF80...U+EFFF in a Private Use Area, and Python "surrogateescape" which converts them to U+DC80...U+DCFF which are low surrogate values and thus "invalid" UTF-16.
For the encoding to be reversible, the UTF-8 encoding of the error code points must be disallowed. For the Python version this makes the encoding incompatible with WTF-8 or CESU-8. Re-encoding must also be careful of a malicious actor arranging the errors to convert back to valid UTF-8 encoding. For these reasons is far easier to store invalid UTF-16 as WTF-8 than to store invalid UTF-8 as some form of UTF-16, so using byte strings is best if you must work with both.