Revision as of 17:12, 15 September 2024 editThumperward (talk | contribs)Administrators122,794 edits →Adoption: tweak title← Previous edit | Revision as of 17:15, 15 September 2024 edit undoThumperward (talk | contribs)Administrators122,794 edits →Encoding: this entire section is almost completely opaque and its inclusion stymies the addition of some clear prose describing how unicode is decodedNext edit → | ||
Line 131: | Line 131: | ||
A whole graphic character can take more than 4 bytes, because it is made of more than one code point. For instance, a ] takes 8 bytes since it is "constructed from a pair of Unicode scalar values" both from outside the BMP.<ref>{{cite web |title=String |website=Apple Developer |url=https://developer.apple.com/documentation/swift/string |access-date=2021-03-15}}</ref> Some complex emoji characters can take even more than this: The ] emoji (🏳️⚧️), which consists of the 5 code point sequence U+1F3F3 U+FE0F U+200D U+26A7 U+FE0F, requires sixteen bytes to encode, while that for the ] (🏴) requires a total of 28 bytes for the 7 code point sequence U+1F3F4 U+E0067 U+E0062 U+E0073 U+E0063 U+E0074 U+E007F.{{cn}} | A whole graphic character can take more than 4 bytes, because it is made of more than one code point. For instance, a ] takes 8 bytes since it is "constructed from a pair of Unicode scalar values" both from outside the BMP.<ref>{{cite web |title=String |website=Apple Developer |url=https://developer.apple.com/documentation/swift/string |access-date=2021-03-15}}</ref> Some complex emoji characters can take even more than this: The ] emoji (🏳️⚧️), which consists of the 5 code point sequence U+1F3F3 U+FE0F U+200D U+26A7 U+FE0F, requires sixteen bytes to encode, while that for the ] (🏴) requires a total of 28 bytes for the 7 code point sequence U+1F3F4 U+E0067 U+E0062 U+E0073 U+E0063 U+E0074 U+E007F.{{cn}} | ||
=== Examples === | |||
:''In the following examples, red, green, and blue digits 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.'' | |||
# The Unicode code point for the ] € is U+20AC. | |||
# As this code point lies between U+0800 and U+FFFF, this will take three bytes to encode. | |||
# ] {{mono|20AC}} is binary {{mono|{{fontcolor|blue|0010}} {{fontcolor|green|0000 10}}{{fontcolor|red|10 1100}}}}. The two leading zeros are added because a three-byte encoding needs exactly sixteen bits from the code point. | |||
# Because the encoding will be three bytes long, its leading byte starts with three 1s, then a 0 ({{mono|1110...}}) | |||
# The four most significant bits of the code point are stored in the remaining low order four bits of this byte ({{mono|1110{{fontcolor|blue|0010}}}}), leaving 12 bits of the code point yet to be encoded ({{mono|...{{fontcolor|green|0000 10}}{{fontcolor|red|10 1100}}}}). | |||
# 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 {{mono|10}} is stored in the high order two bits to mark it as a continuation byte (so {{mono|10{{fontcolor|green|000010}}}}). | |||
# Finally the last six bits of the code point are stored in the low order six bits of the final byte, and again {{mono|10}} is stored in the high order two bits ({{mono|10{{fontcolor|red|101100}}}}). | |||
The three bytes {{mono|1110{{fontcolor|blue|0010}}}} {{mono|10{{fontcolor|green|000010}}}} {{mono|10{{fontcolor|red|101100}}}} can be more concisely written in ], as {{mono|{{fontcolor|blue|E2}} {{fontcolor|green|82}} {{fontcolor|red|AC}}}}. | |||
The following table summarizes this conversion, as well as others with different lengths in UTF-8. | |||
{| class="wikitable" | |||
|+ UTF-8 encoding process | |||
|- | |||
! colspan=2 | Character !! Binary code point !! Binary UTF-8 !! Hex UTF-8 | |||
|- | |||
|] || align=right|{{mono|U+0024}} | |||
|align=right|{{mono|{{fontcolor|red|010 0100}}}} | |||
|align=left|{{mono|0{{fontcolor|red|0100100}}}} | |||
|align=left|{{mono|{{fontcolor|red|24}}}} | |||
|- | |||
|]|| align="right" |{{mono|U+00A3}} | |||
|align=right|{{mono|{{fontcolor|green|000 10}}{{fontcolor|red|10 0011}}}} | |||
|align=left|{{mono|110{{fontcolor|green|00010}} 10{{fontcolor|red|100011}}}} | |||
|align=left|{{mono|{{fontcolor|green|C2}} {{fontcolor|red|A3}}}} | |||
|- | |||
|]|| align="right" |{{mono|U+0418}} | |||
|align=right|{{mono|{{fontcolor|green|100 00}}{{fontcolor|red|01 1000}}}} | |||
|align=left|{{mono|110{{fontcolor|green|10000}} 10{{fontcolor|red|011000}}}} | |||
|align=left|{{mono|{{fontcolor|green|D0}} {{fontcolor|red|98}}}} | |||
|- | |||
|] || align=right|{{mono|U+0939}} | |||
|align=right|{{mono|{{fontcolor|blue|0000}} {{fontcolor|green|1001 00}}{{fontcolor|red|11 1001}}}} | |||
|align=left|{{mono|1110{{fontcolor|blue|0000}} 10{{fontcolor|green|100100}} 10{{fontcolor|red|111001}}}} | |||
|align=left|{{mono|{{fontcolor|blue|E0}} {{fontcolor|green|A4}} {{fontcolor|red|B9}}}} | |||
|- | |||
|] || align=right|{{mono|U+20AC}} | |||
|align=right|{{mono|{{fontcolor|blue|0010}} {{fontcolor|green|0000 10}}{{fontcolor|red|10 1100}}}} | |||
|align=left|{{mono|1110{{fontcolor|blue|0010}} 10{{fontcolor|green|000010}} 10{{fontcolor|red|101100}}}} | |||
|align=left|{{mono|{{fontcolor|blue|E2}} {{fontcolor|green|82}} {{fontcolor|red|AC}}}} | |||
|- | |||
|] || align=right|{{mono|U+D55C}} | |||
|align=right|{{mono|{{fontcolor|blue|1101}} {{fontcolor|green|0101 01}}{{fontcolor|red|01 1100}}}} | |||
|align=left|{{mono|1110{{fontcolor|blue|1101}} 10{{fontcolor|green|010101}} 10{{fontcolor|red|011100}}}} | |||
|align=left|{{mono|{{fontcolor|blue|ED}} {{fontcolor|green|95}} {{fontcolor|red|9C}}}} | |||
|- | |||
|] || align=right|{{mono|U+10348}} | |||
|align=right|{{mono|{{fontcolor|#C000C0|0 00}}{{fontcolor|blue|01 0000}} {{fontcolor|green|0011 01}}{{fontcolor|red|00 1000}}}} | |||
|align=left|{{mono|11110{{fontcolor|#C000C0|000}} 10{{fontcolor|blue|010000}} 10{{fontcolor|green|001101}} 10{{fontcolor|red|001000}}}} | |||
|align=left|{{mono|{{fontcolor|#C000C0|F0}} {{fontcolor|blue|90}} {{fontcolor|green|8D}} {{fontcolor|red|88}}}} | |||
|- | |||
|Suppl Private Use Area B|| align=right|{{mono|U+1096B3}} | |||
|align=right|{{mono|{{fontcolor|#C000C0|1 00}}{{fontcolor|blue|00 1001}} {{fontcolor|green|0110 10}}{{fontcolor|red|11 0011}}}} | |||
|align=left|{{mono|11110{{fontcolor|#C000C0|100}} 10{{fontcolor|blue|001001}} 10{{fontcolor|green|011010}} 10{{fontcolor|red|110011}}}} | |||
|align=left|{{mono|{{fontcolor|#C000C0|F4}} {{fontcolor|blue|89}} {{fontcolor|green|9A}} {{fontcolor|red|B3}}}} | |||
|} | |||
The ] phrase {{lang|vi|Mình nói tiếng Việt}} ({{vi-nom|𨉟呐㗂越}}, "I speak Vietnamese") is encoded as follows: | |||
{| class="wikitable" style="text-align: center;" | |||
|- | |||
! Character | |||
| M || colspan="2" | ì || n || h ||   || n || colspan="2" | ó || i ||   || t || i || colspan="3" | ế || n || g ||   || V || i || colspan="3" | ệ || t | |||
|- | |||
! Code point | |||
| rowspan="2" | 4D || colspan="2" | EC || rowspan="2" | 6E || rowspan="2" | 68 || rowspan="2" | 20 || rowspan="2" | 6E || colspan="2" | F3 || rowspan="2" | 69 || rowspan="2" | 20 || rowspan="2" | 74 || rowspan="2" | 69 || colspan="3" | 1EBF || rowspan="2" | 6E || rowspan="2" | 67 || rowspan="2" | 20 || rowspan="2" | 56 || rowspan="2" | 69 || colspan="3" | 1EC7 || rowspan="2" | 74 | |||
|- | |||
! Hex {{nobr|UTF-8}} | |||
| {{fontcolor|green|C3}} || {{fontcolor|red|AC}} || {{fontcolor|green|C3}} || {{fontcolor|red|B3}} || {{fontcolor|blue|E1}} || {{fontcolor|green|BA}} || {{fontcolor|red|BF}} || {{fontcolor|blue|E1}} || {{fontcolor|green|BB}} || {{fontcolor|red|87}} | |||
|} | |||
{| class="wikitable" style="text-align: center;" | |||
|- | |||
! Character | |||
| colspan="4" | {{vi-nom|𨉟}} || colspan="3" | {{vi-nom|呐}} || colspan="3" | {{vi-nom|㗂}} || colspan="3" | {{vi-nom|越}} | |||
|- | |||
! Code point | |||
| colspan="4" | 2825F || colspan="3" | 5450 || colspan="3" | 35C2 || colspan="3" | 8D8A | |||
|- | |||
! Hex {{nobr|UTF-8}} | |||
| {{fontcolor|#C000C0|F0}} || {{fontcolor|blue|A8}} || {{fontcolor|green|89}} || {{fontcolor|red|9F}} || {{fontcolor|blue|E5}} || {{fontcolor|green|91}} || {{fontcolor|red|90}} || {{fontcolor|blue|E3}} || {{fontcolor|green|97}} || {{fontcolor|red|82}} || {{fontcolor|blue|E8}} || {{fontcolor|green|B6}} || {{fontcolor|red|8A}} | |||
|} | |||
=== Codepage layout === | |||
The following table summarizes usage of UTF-8 ''code units'' (individual ]s or ]) 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. | |||
{|{{chset-table-header1|UTF-8}} | |||
|- | |||
|{{chset-left1|0x}} | |||
|{{chset-ctrl1|U+0000 NULL|]}} | |||
|{{chset-ctrl1|U+0001 START OF HEADING|]}} | |||
|{{chset-ctrl1|U+0002 START OF TEXT|]}} | |||
|{{chset-ctrl1|U+0003 END OF TEXT|]}} | |||
|{{chset-ctrl1|U+0004 END OF TRANSMISSION|]}} | |||
|{{chset-ctrl1|U+0005 ENQUIRY|]}} | |||
|{{chset-ctrl1|U+0006 ACKNOWLEDGE|]}} | |||
|{{chset-ctrl1|U+0007 BELL|]}} | |||
|{{chset-ctrl1|U+0008 BACKSPACE|]}} | |||
|{{chset-ctrl1|U+0009 CHARACTER TABULATION|]}} | |||
|{{chset-ctrl1|U+000A LINE FEED (LF)|]}} | |||
|{{chset-ctrl1|U+000B LINE TABULATION|]}} | |||
|{{chset-ctrl1|U+000C FORM FEED (FF)|]}} | |||
|{{chset-ctrl1|U+000D CARRIAGE RETURN (CR)|]}} | |||
|{{chset-ctrl1|U+000E SHIFT OUT|]}} | |||
|{{chset-ctrl1|U+000F SHIFT IN|]}} | |||
|- | |||
|{{chset-left1|1x}} | |||
|{{chset-ctrl1|U+0010 DATA LINK ESCAPE|]}} | |||
|{{chset-ctrl1|U+0011 DEVICE CONTROL ONE|]}} | |||
|{{chset-ctrl1|U+0012 DEVICE CONTROL TWO|]}} | |||
|{{chset-ctrl1|U+0013 DEVICE CONTROL THREE|]}} | |||
|{{chset-ctrl1|U+0014 DEVICE CONTROL FOUR|]}} | |||
|{{chset-ctrl1|U+0015 NEGATIVE ACKNOWLEDGE|]}} | |||
|{{chset-ctrl1|U+0016 SYNCHRONOUS IDLE|]}} | |||
|{{chset-ctrl1|U+0017 END OF TRANSMISSION BLOCK|]}} | |||
|{{chset-ctrl1|U+0018 CANCEL|]}} | |||
|{{chset-ctrl1|U+0019 END OF MEDIUM|]}} | |||
|{{chset-ctrl1|U+001A SUBSTITUTE|]}} | |||
|{{chset-ctrl1|U+001B ESCAPE|]}} | |||
|{{chset-ctrl1|U+001C INFORMATION SEPARATOR FOUR|]}} | |||
|{{chset-ctrl1|U+001D INFORMATION SEPARATOR THREE|]}} | |||
|{{chset-ctrl1|U+001E INFORMATION SEPARATOR TWO|]}} | |||
|{{chset-ctrl1|U+001F INFORMATION SEPARATOR ONE|]}} | |||
|- | |||
|{{chset-left1|2x}} | |||
|{{chset-ctrl1|U+0020| ] }} | |||
|{{chset-cell1|U+0021 EXCLAMATION MARK|]}} | |||
|{{chset-cell1|U+0022 QUOTATION MARK|]}} | |||
|{{chset-cell1|U+0023 NUMBER SIGN|]}} | |||
|{{chset-cell1|U+0024 DOLLAR SIGN|]}} | |||
|{{chset-cell1|U+0025 PERCENT SIGN|]}} | |||
|{{chset-cell1|U+0026 AMPERSAND|]}} | |||
|{{chset-cell1|U+0027 APOSTROPHE|]}} | |||
|{{chset-cell1|U+0028 LEFT PARENTHESIS|]}} | |||
|{{chset-cell1|U+0029 RIGHT PARENTHESIS|]}} | |||
|{{chset-cell1|U+002A ASTERISK|]}} | |||
|{{chset-cell1|U+002B PLUS SIGN|]}} | |||
|{{chset-cell1|U+002C COMMA|]}} | |||
|{{chset-cell1|U+002D HYPHEN-MINUS|]}} | |||
|{{chset-cell1|U+002E FULL STOP|]}} | |||
|{{chset-cell1|U+002F SOLIDUS|]}} | |||
|- | |||
|{{chset-left1|3x}} | |||
|{{chset-cell1|U+0030 DIGIT ZERO|]}} | |||
|{{chset-cell1|U+0031 DIGIT ONE|]}} | |||
|{{chset-cell1|U+0032 DIGIT TWO|]}} | |||
|{{chset-cell1|U+0033 DIGIT THREE|]}} | |||
|{{chset-cell1|U+0034 DIGIT FOUR|]}} | |||
|{{chset-cell1|U+0035 DIGIT FIVE|]}} | |||
|{{chset-cell1|U+0036 DIGIT SIX|]}} | |||
|{{chset-cell1|U+0037 DIGIT SEVEN|]}} | |||
|{{chset-cell1|U+0038 DIGIT EIGHT|]}} | |||
|{{chset-cell1|U+0039 DIGIT NINE|]}} | |||
|{{chset-cell1|U+003A COLON|]}} | |||
|{{chset-cell1|U+003B SEMICOLON|]}} | |||
|{{chset-cell1|U+003C LESS-THAN SIGN|]}} | |||
|{{chset-cell1|U+003D EQUALS SIGN|]}} | |||
|{{chset-cell1|U+003E GREATER-THAN SIGN|]}} | |||
|{{chset-cell1|U+003F QUESTION MARK|]}} | |||
|- | |||
|{{chset-left1|4x}} | |||
|{{chset-cell1|U+0040 COMMERCIAL AT|]}} | |||
|{{chset-cell1|U+0041 LATIN CAPITAL LETTER A|]}} | |||
|{{chset-cell1|U+0042 LATIN CAPITAL LETTER B|]}} | |||
|{{chset-cell1|U+0043 LATIN CAPITAL LETTER C|]}} | |||
|{{chset-cell1|U+0044 LATIN CAPITAL LETTER D|]}} | |||
|{{chset-cell1|U+0045 LATIN CAPITAL LETTER E|]}} | |||
|{{chset-cell1|U+0046 LATIN CAPITAL LETTER F|]}} | |||
|{{chset-cell1|U+0047 LATIN CAPITAL LETTER G|]}} | |||
|{{chset-cell1|U+0048 LATIN CAPITAL LETTER H|]}} | |||
|{{chset-cell1|U+0049 LATIN CAPITAL LETTER I|]}} | |||
|{{chset-cell1|U+004A LATIN CAPITAL LETTER J|]}} | |||
|{{chset-cell1|U+004B LATIN CAPITAL LETTER K|]}} | |||
|{{chset-cell1|U+004C LATIN CAPITAL LETTER L|]}} | |||
|{{chset-cell1|U+004D LATIN CAPITAL LETTER M|]}} | |||
|{{chset-cell1|U+004E LATIN CAPITAL LETTER N|]}} | |||
|{{chset-cell1|U+004F LATIN CAPITAL LETTER O|]}} | |||
|- | |||
|{{chset-left1|5x}} | |||
|{{chset-cell1|U+0050 LATIN CAPITAL LETTER P|]}} | |||
|{{chset-cell1|U+0051 LATIN CAPITAL LETTER Q|]}} | |||
|{{chset-cell1|U+0052 LATIN CAPITAL LETTER R|]}} | |||
|{{chset-cell1|U+0053 LATIN CAPITAL LETTER S|]}} | |||
|{{chset-cell1|U+0054 LATIN CAPITAL LETTER T|]}} | |||
|{{chset-cell1|U+0055 LATIN CAPITAL LETTER U|]}} | |||
|{{chset-cell1|U+0056 LATIN CAPITAL LETTER V|]}} | |||
|{{chset-cell1|U+0057 LATIN CAPITAL LETTER W|]}} | |||
|{{chset-cell1|U+0058 LATIN CAPITAL LETTER X|]}} | |||
|{{chset-cell1|U+0059 LATIN CAPITAL LETTER Y|]}} | |||
|{{chset-cell1|U+005A LATIN CAPITAL LETTER Z|]}} | |||
|{{chset-cell1|U+005B LEFT SQUARE BRACKET|]}} | |||
|{{chset-cell1|U+005C REVERSE SOLIDUS|]}} | |||
|{{chset-cell1|U+005D RIGHT SQUARE BRACKET|]}} | |||
|{{chset-cell1|U+005E CIRCUMFLEX ACCENT|]}} | |||
|{{chset-cell1|U+005F LOW LINE|]}} | |||
|- | |||
|{{chset-left1|6x}} | |||
|{{chset-cell1|U+0060 GRAVE ACCENT|]}} | |||
|{{chset-cell1|U+0061 LATIN SMALL LETTER A|]}} | |||
|{{chset-cell1|U+0062 LATIN SMALL LETTER B|]}} | |||
|{{chset-cell1|U+0063 LATIN SMALL LETTER C|]}} | |||
|{{chset-cell1|U+0064 LATIN SMALL LETTER D|]}} | |||
|{{chset-cell1|U+0065 LATIN SMALL LETTER E|]}} | |||
|{{chset-cell1|U+0066 LATIN SMALL LETTER F|]}} | |||
|{{chset-cell1|U+0067 LATIN SMALL LETTER G|]}} | |||
|{{chset-cell1|U+0068 LATIN SMALL LETTER H|]}} | |||
|{{chset-cell1|U+0069 LATIN SMALL LETTER I|]}} | |||
|{{chset-cell1|U+006A LATIN SMALL LETTER J|]}} | |||
|{{chset-cell1|U+006B LATIN SMALL LETTER K|]}} | |||
|{{chset-cell1|U+006C LATIN SMALL LETTER L|]}} | |||
|{{chset-cell1|U+006D LATIN SMALL LETTER M|]}} | |||
|{{chset-cell1|U+006E LATIN SMALL LETTER N|]}} | |||
|{{chset-cell1|U+006F LATIN SMALL LETTER O|]}} | |||
|- | |||
|{{chset-left1|7x}} | |||
|{{chset-cell1|U+0070 LATIN SMALL LETTER P|]}} | |||
|{{chset-cell1|U+0071 LATIN SMALL LETTER Q|]}} | |||
|{{chset-cell1|U+0072 LATIN SMALL LETTER R|]}} | |||
|{{chset-cell1|U+0073 LATIN SMALL LETTER S|]}} | |||
|{{chset-cell1|U+0074 LATIN SMALL LETTER T|]}} | |||
|{{chset-cell1|U+0075 LATIN SMALL LETTER U|]}} | |||
|{{chset-cell1|U+0076 LATIN SMALL LETTER V|]}} | |||
|{{chset-cell1|U+0077 LATIN SMALL LETTER W|]}} | |||
|{{chset-cell1|U+0078 LATIN SMALL LETTER X|]}} | |||
|{{chset-cell1|U+0079 LATIN SMALL LETTER Y|]}} | |||
|{{chset-cell1|U+007A LATIN SMALL LETTER Z|]}} | |||
|{{chset-cell1|U+007B LEFT CURLY BRACKET|]}} | |||
|{{chset-cell1|U+007C VERTICAL LINE|]}} | |||
|{{chset-cell1|U+007D RIGHT CURLY BRACKET|]}} | |||
|{{chset-cell1|U+007E TILDE|]}} | |||
|{{chset-ctrl1|U+007F DELETE|]}} | |||
|- | |||
|{{chset-left1|8x}} | |||
|{{chset-cell1|+0|{{mono|+0}}|style=background:#FDD}} | |||
|{{chset-cell1|+1|{{mono|+1}}|style=background:#FDD}} | |||
|{{chset-cell1|+2|{{mono|+2}}|style=background:#FDD}} | |||
|{{chset-cell1|+3|{{mono|+3}}|style=background:#FDD}} | |||
|{{chset-cell1|+4|{{mono|+4}}|style=background:#FDD}} | |||
|{{chset-cell1|+5|{{mono|+5}}|style=background:#FDD}} | |||
|{{chset-cell1|+6|{{mono|+6}}|style=background:#FDD}} | |||
|{{chset-cell1|+7|{{mono|+7}}|style=background:#FDD}} | |||
|{{chset-cell1|+8|{{mono|+8}}|style=background:#FDD}} | |||
|{{chset-cell1|+9|{{mono|+9}}|style=background:#FDD}} | |||
|{{chset-cell1|+A|{{mono|+A}}|style=background:#FDD}} | |||
|{{chset-cell1|+B|{{mono|+B}}|style=background:#FDD}} | |||
|{{chset-cell1|+C|{{mono|+C}}|style=background:#FDD}} | |||
|{{chset-cell1|+D|{{mono|+D}}|style=background:#FDD}} | |||
|{{chset-cell1|+E|{{mono|+E}}|style=background:#FDD}} | |||
|{{chset-cell1|+F|{{mono|+F}}|style=background:#FDD}} | |||
|- | |||
|{{chset-left1|9x}} | |||
|{{chset-cell1|+10|{{mono|+10}}|style=background:#FDD}} | |||
|{{chset-cell1|+11|{{mono|+11}}|style=background:#FDD}} | |||
|{{chset-cell1|+12|{{mono|+12}}|style=background:#FDD}} | |||
|{{chset-cell1|+13|{{mono|+13}}|style=background:#FDD}} | |||
|{{chset-cell1|+14|{{mono|+14}}|style=background:#FDD}} | |||
|{{chset-cell1|+15|{{mono|+15}}|style=background:#FDD}} | |||
|{{chset-cell1|+16|{{mono|+16}}|style=background:#FDD}} | |||
|{{chset-cell1|+17|{{mono|+17}}|style=background:#FDD}} | |||
|{{chset-cell1|+18|{{mono|+18}}|style=background:#FDD}} | |||
|{{chset-cell1|+19|{{mono|+19}}|style=background:#FDD}} | |||
|{{chset-cell1|+1A|{{mono|+1A}}|style=background:#FDD}} | |||
|{{chset-cell1|+1B|{{mono|+1B}}|style=background:#FDD}} | |||
|{{chset-cell1|+1C|{{mono|+1C}}|style=background:#FDD}} | |||
|{{chset-cell1|+1D|{{mono|+1D}}|style=background:#FDD}} | |||
|{{chset-cell1|+1E|{{mono|+1E}}|style=background:#FDD}} | |||
|{{chset-cell1|+1F|{{mono|+1F}}|style=background:#FDD}} | |||
|- | |||
|{{chset-left1|Ax}} | |||
|{{chset-cell1|+20|{{mono|+20}}|style=background:#FDD}} | |||
|{{chset-cell1|+21|{{mono|+21}}|style=background:#FDD}} | |||
|{{chset-cell1|+22|{{mono|+22}}|style=background:#FDD}} | |||
|{{chset-cell1|+23|{{mono|+23}}|style=background:#FDD}} | |||
|{{chset-cell1|+24|{{mono|+24}}|style=background:#FDD}} | |||
|{{chset-cell1|+25|{{mono|+25}}|style=background:#FDD}} | |||
|{{chset-cell1|+26|{{mono|+26}}|style=background:#FDD}} | |||
|{{chset-cell1|+27|{{mono|+27}}|style=background:#FDD}} | |||
|{{chset-cell1|+28|{{mono|+28}}|style=background:#FDD}} | |||
|{{chset-cell1|+29|{{mono|+29}}|style=background:#FDD}} | |||
|{{chset-cell1|+2A|{{mono|+2A}}|style=background:#FDD}} | |||
|{{chset-cell1|+2B|{{mono|+2B}}|style=background:#FDD}} | |||
|{{chset-cell1|+2C|{{mono|+2C}}|style=background:#FDD}} | |||
|{{chset-cell1|+2D|{{mono|+2D}}|style=background:#FDD}} | |||
|{{chset-cell1|+2E|{{mono|+2E}}|style=background:#FDD}} | |||
|{{chset-cell1|+2F|{{mono|+2F}}|style=background:#FDD}} | |||
|- | |||
|{{chset-left1|Bx}} | |||
|{{chset-cell1|+30|{{mono|+30}}|style=background:#FDD}} | |||
|{{chset-cell1|+31|{{mono|+31}}|style=background:#FDD}} | |||
|{{chset-cell1|+32|{{mono|+32}}|style=background:#FDD}} | |||
|{{chset-cell1|+33|{{mono|+33}}|style=background:#FDD}} | |||
|{{chset-cell1|+34|{{mono|+34}}|style=background:#FDD}} | |||
|{{chset-cell1|+35|{{mono|+35}}|style=background:#FDD}} | |||
|{{chset-cell1|+36|{{mono|+36}}|style=background:#FDD}} | |||
|{{chset-cell1|+37|{{mono|+37}}|style=background:#FDD}} | |||
|{{chset-cell1|+38|{{mono|+38}}|style=background:#FDD}} | |||
|{{chset-cell1|+39|{{mono|+39}}|style=background:#FDD}} | |||
|{{chset-cell1|+3A|{{mono|+3A}}|style=background:#FDD}} | |||
|{{chset-cell1|+3B|{{mono|+3B}}|style=background:#FDD}} | |||
|{{chset-cell1|+3C|{{mono|+3C}}|style=background:#FDD}} | |||
|{{chset-cell1|+3D|{{mono|+3D}}|style=background:#FDD}} | |||
|{{chset-cell1|+3E|{{mono|+3E}}|style=background:#FDD}} | |||
|{{chset-cell1|+3F|{{mono|+3F}}|style=background:#FDD}} | |||
|- | |||
|{{chset-left1|Cx}} | |||
|{{chset-cell1|U+0000—U+003F|2|style=background:#DDD}} | |||
|{{chset-cell1|U+0040—U+007F|2|style=background:#DDD}} | |||
|{{chset-cell1|U+0080—U+00BF Latin-1 Supplement|]|style=background:#DFD}} | |||
|{{chset-cell1|U+00C0—U+00FF Latin-1 Supplement|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0100—U+013F Latin Extended-A|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0140—U+017F Latin Extended-A|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0180—U+01BF Latin Extended-B|]|style=background:#DFD}} | |||
|{{chset-cell1|U+01C0—U+01FF Latin Extended-B|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0200—U+023F Latin Extended-B|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0240—U+027F IPA Extensions|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0280—U+02BF IPA Extensions|]|style=background:#DFD}} | |||
|{{chset-cell1|U+02C0—U+02FF Spacing Modifier Letters (U+02B0–02FF)|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0300—U+033F Combining characters|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0340—U+037F Combining characters...|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0380—U+03BF Greek and Coptic|]|style=background:#DFD}} | |||
|{{chset-cell1|U+03C0—U+03FF Greek and Coptic|]|style=background:#DFD}} | |||
|- | |||
|{{chset-left1|Dx}} | |||
|{{chset-cell1|U+0400—U+043F Cyrillic|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0440—U+047F Cyrillic|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0480—U+04BF Cyrillic|]|style=background:#DFD}} | |||
|{{chset-cell1|U+04C0—U+04FF Cyrillic|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0500—U+053F Cyrillic Supplement...|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0540—U+057F Armenian|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0580—U+05BF Hebrew|]|style=background:#DFD}} | |||
|{{chset-cell1|U+05C0—U+05FF Hebrew|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0600—U+063F Arabic|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0640—U+067F Arabic|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0680—U+06BF Arabic|]|style=background:#DFD}} | |||
|{{chset-cell1|U+06C0—U+06FF Arabic|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0700—U+073F Syriac|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0740—U+077F Arabic Supplement|]|style=background:#DFD}} | |||
|{{chset-cell1|U+0780—U+07BF Thaana|]|style=background:#DFD}} | |||
|{{chset-cell1|U+07C0—U+07FF NKo|]|style=background:#DFD}} | |||
|- | |||
|{{chset-left1|Ex}} | |||
|{{chset-cell1|U+0800—U+0FFF Indic|3|style=background:#ADA}} | |||
|{{chset-cell1|U+1000—U+1FFF Misc.|3|style=background:#DFD}} | |||
|{{chset-cell1|U+2000—U+2FFF Symbols|3|style=background:#DFD}} | |||
|{{chset-cell1|U+3000—U+3FFF Kana...|3|style=background:#DFD}} | |||
|{{chset-cell1|U+4000—U+4FFF CJK Unified Ideographs|]|style=background:#DFD}} | |||
|{{chset-cell1|U+5000—U+5FFF CJK Unified Ideographs|]|style=background:#DFD}} | |||
|{{chset-cell1|U+6000—U+6FFF CJK Unified Ideographs|]|style=background:#DFD}} | |||
|{{chset-cell1|U+7000—U+7FFF CJK Unified Ideographs|]|style=background:#DFD}} | |||
|{{chset-cell1|U+8000—U+8FFF CJK Unified Ideographs|]|style=background:#DFD}} | |||
|{{chset-cell1|U+9000—U+9FFF CJK Unified Ideographs|]|style=background:#DFD}} | |||
|{{chset-cell1|U+A000—U+AFFF Asian|3|style=background:#DFD}} | |||
|{{chset-cell1|U+B000—U+BFFF Hangul|]|style=background:#DFD}} | |||
|{{chset-cell1|U+C000—U+CFFF Hangul|]|style=background:#DFD}} | |||
|{{chset-cell1|U+D000—U+DFFF Hangul...|]|style=background:#ADA}} | |||
|{{chset-cell1|U+E000—U+EFFF Private Use Area|]|style=background:#DFD}} | |||
|{{chset-cell1|U+F000—U+FFFF Private Use Area...|]|style=background:#DFD}} | |||
|- | |||
|{{chset-left1|Fx}} | |||
|{{chset-cell1|U+10000—U+3FFFF Supplementary Multilingual Plane...|]|style=background:#ADA}} | |||
|{{chset-cell1|U+40000—U+7FFFF|4|style=background:#DFD}} | |||
|{{chset-cell1|U+80000—U+BFFFF|4|style=background:#DFD}} | |||
|{{chset-cell1|U+C0000—U+FFFFF Supplementary Special-purpose Plane...|]|style=background:#DFD}} | |||
|{{chset-cell1|U+100000—U+13FFFF Supplementary Private Use Area B|]|style=background:#ADA}} | |||
|{{chset-cell1|U+140000—U+17FFFF|4|style=background:#DDD}} | |||
|{{chset-cell1|U+180000—U+1BFFFF|4|style=background:#DDD}} | |||
|{{chset-cell1|U+1C0000—U+1FFFFF|4|style=background:#DDD}} | |||
|{{chset-cell1|U+200000—U+FFFFFF|5|style=background:#DDD}} | |||
|{{chset-cell1|U+1000000—U+1FFFFFF|5|style=background:#DDD}} | |||
|{{chset-cell1|U+2000000—U+2FFFFFF|5|style=background:#DDD}} | |||
|{{chset-cell1|U+3000000—U+3FFFFFF|5|style=background:#DDD}} | |||
|{{chset-cell1|U+4000000—U+3FFFFFFF|6|style=background:#DDD}} | |||
|{{chset-cell1|U+40000000—U+7FFFFFFF|6|style=background:#DDD}} | |||
|{{chset-cell1|||style=background:#DDD}} | |||
|{{chset-cell1|||style=background:#DDD}} | |||
|} | |||
{{legend|white|7-bit (single-byte) code points. They must not be followed by a continuation byte.<ref>{{ citation | chapter-url = https://www.unicode.org/versions/Unicode13.0.0/ch03.pdf | title = The Unicode Standard | chapter = Chapter 3 | page = 54 }}</ref>}} | |||
{{legend|#FDD|Continuation bytes.<ref>{{ citation | chapter-url = https://www.unicode.org/versions/Unicode13.0.0/ch03.pdf | title = The Unicode Standard | chapter = Chapter 3 | page = 55 }}</ref> The cell shows in hexadecimal the value of the 6 bits they add. For example, cell {{mono|9D}} says +1D. The hexadecimal number 9D in binary is {{mono|10011101}}, and since the 2 highest bits ({{mono|10}}) are reserved for marking this as a continuation byte, the remaining 6 bits ({{mono|011101}}) have a hexadecimal value of 1D.}} | |||
{{legend|#DFD|Leading bytes for a sequence of multiple bytes, must be followed by exactly ''N''−1 continuation bytes.<ref>{{ citation | chapter-url = https://www.unicode.org/versions/Unicode13.0.0/ch03.pdf | title = The Unicode Standard | chapter = Chapter 3 | page = 55 }}</ref> The tooltip shows the code point range and the Unicode blocks encoded by sequences starting with this byte.}} | |||
{{legend|#ADA|Leading bytes where not all arrangements of continuation bytes are valid. {{mono|E0}} and {{mono|F0}} could start overlong encodings. {{mono|F4}} can start code points greater than U+10FFFF. {{mono|ED}} can start code points in the range U+D800–U+DFFF, which are invalid ] ].<ref name="rfc3629">{{cite IETF |title=UTF-8, a transformation format of ISO 10646 |rfc=3629 |std=63 |last1=Yergeau |first1=F. |date=November 2003 |publisher=] |access-date=August 20, 2020}}</ref>}} | |||
{{legend|#DDD|Do not appear in a valid UTF-8 sequence. {{mono|C0}} and {{mono|C1}} could be used only for an "overlong" encoding of a 1-byte character.<ref>{{ citation | chapter-url = https://www.unicode.org/versions/Unicode13.0.0/ch03.pdf | title = The Unicode Standard | chapter = Chapter 3 | page = 54 }}</ref> {{mono|F5}} to {{mono|FD}} are leading bytes of 4-byte or longer sequences that can only encode code points larger than U+10FFFF.<ref name="rfc3629" /> {{mono|FE}} and {{mono|FF}} were never assigned any meaning.<ref>{{ citation | chapter-url = https://www.unicode.org/versions/Unicode13.0.0/ch03.pdf | title = The Unicode Standard | chapter = Chapter 3 | page = 55 }}</ref>}} | |||
=== Overlong encodings === | === Overlong encodings === |
Revision as of 17:15, 15 September 2024
ASCII-compatible variable-width encoding of Unicode, using one to four bytesStandard | Unicode Standard |
---|---|
Classification | Unicode Transformation Format, extended ASCII, variable-length encoding |
Extends | ASCII |
Transforms / Encodes | ISO/IEC 10646 (Unicode) |
Preceded by | UTF-1 |
UTF-8 is a character encoding standard used for electronic communication. Defined by the Unicode Standard, the name is derived from Unicode Transformation Format – 8-bit.
UTF-8 is capable of encoding all 1,112,064 (17 planes times 2 code points per plane, minus 2 technically-invalid surrogates) valid Unicode code points using a variable-width encoding of one to four one-byte (8-bit) code units. Code points with lower numerical values, which tend to occur more frequently, are encoded using fewer bytes. It was designed for backward compatibility with ASCII: 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 a UTF-8-encoded document using only those characters is identical to the same text in ASCII and can be read by programs expecting such.
UTF-8 was designed as a superior alternative to UTF-1, a proposed variable-length encoding with partial ASCII compatibility which lacked some features including self-synchronization and fully ASCII-compatible handling of characters such as slashes. Ken Thompson and Rob Pike produced the first implementation for the Plan 9 operating system in September 1992. This led to its adoption by X/Open as its specification for FSS-UTF, which would first be officially presented at USENIX in January 1993 and subsequently adopted by the Internet Engineering Task Force (IETF) in RFC 2277 (BCP 18) for future internet standards work, replacing Single Byte Character Sets such as Latin-1 in older RFCs.
UTF-8 results in fewer internationalization issues than any alternative text encoding, and it has been implemented in all modern operating systems, including Microsoft Windows, and standards such as JSON, where, as is increasingly the case, it is the only allowed form of Unicode.
UTF-8 is the dominant encoding for the World Wide Web and other Internet technologies, accounting for 98.3% of all web pages, 99.1% of the top 100,000 pages, and up to 100% for many languages, as of 2024. Virtually all countries and languages have 95% or more use of UTF-8 encodings on the web.
History
See also: Universal Coded Character Set § HistoryThe International Organization for Standardization (ISO) set out to compose a universal multi-byte character set in 1989. 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 (or extended 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.
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 (FSS-UTF) and most of the text of this proposal were later preserved in the final specification. 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 self-synchronizing, letting a reader start anywhere and immediately detect character boundaries, at the cost of being somewhat less bit-efficient than the previous proposal. 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.
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 (BCP 18) for future internet standards work in January 1998, 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.
Naming
The official name for the encoding is UTF-8, the spelling used in all Unicode Consortium documents. Most standards officially list it in upper case as well, but all that do are also case-insensitive and utf-8
is often used in code.
Some other spellings may also be accepted by standards, e.g. web standards (which include CSS, HTML, XML, and HTTP headers) explicitly allow utf8 (and disallow "unicode") and many aliases for encodings. Spellings with a space e.g. "UTF 8" should not be used. The official Internet Assigned Numbers Authority also lists csUTF8 as the only alias, which is rarely used.
In Windows, UTF-8 is codepage 65001
(i.e. CP_UTF8
in source code).
In MySQL, UTF-8 is called utf8mb4
(with utf8mb3
, and its alias utf8
, being a subset encoding for characters in the Basic Multilingual Plane).
In HP PCL, the Symbol-ID for UTF-8 is 18N
.
In Oracle Database (since version 9.0), AL32UTF8
means UTF-8. Oracle previously used the UTF-8 name to refer to CESU-8, a deprecated variant.
UTF-8-BOM and UTF-8-NOBOM are sometimes used for text files which contain or do not contain a byte-order mark (BOM), respectively. In Japan especially, UTF-8 encoding without a BOM is sometimes called UTF-8N.
Design
This section is in list format but may read better as prose. You can help by converting this section, if appropriate. Editing help is available. |
Some of the important features of this encoding are as follows:
- Backward compatibility: Backward compatibility with ASCII and the enormous amount of software designed to process ASCII-encoded text was the main driving force behind the design of UTF-8. In UTF-8, single bytes with values in the range of 0 to 127 map directly to Unicode code points in the ASCII range. Single bytes in this range represent characters, as they do in ASCII. Moreover, 7-bit bytes (bytes where the most significant bit is 0) never appear in a multi-byte sequence, and no valid multi-byte sequence decodes to an ASCII code-point. A sequence of 7-bit bytes is both valid ASCII and valid UTF-8, and under either interpretation represents the same sequence of characters. Therefore, the 7-bit bytes in a UTF-8 stream represent all and only the ASCII characters in the stream. Thus, many text processors, parsers, protocols, file formats, text display programs, etc., which use ASCII characters for formatting and control purposes, will continue to work as intended by treating the UTF-8 byte stream as a sequence of single-byte characters, without decoding the multi-byte sequences. ASCII characters on which the processing turns, such as punctuation, whitespace, and control characters will never be encoded as multi-byte sequences. It is therefore safe for such processors to simply ignore or pass-through the multi-byte sequences, without decoding them. For example, ASCII whitespace may be used to tokenize a UTF-8 stream into words; ASCII line-feeds may be used to split a UTF-8 stream into lines; and ASCII NUL characters can be used to split UTF-8-encoded data into null-terminated strings. Similarly, many format strings used by library functions like "printf" will correctly handle UTF-8-encoded input arguments.
- Fallback and auto-detection: Only a small subset of possible byte strings are a valid UTF-8 string: several bytes cannot appear; a byte with the high bit set cannot be alone; and further requirements mean that it is extremely unlikely that a readable text in any extended ASCII is valid UTF-8. Part of the popularity of UTF-8 is due to it providing a form of backward compatibility for these as well. A UTF-8 processor which erroneously receives extended ASCII as input can thus "auto-detect" this with very high reliability. A UTF-8 stream may simply contain errors, resulting in the auto-detection scheme producing false positives; but auto-detection is successful in the vast majority of cases, especially with longer texts, and is widely used. It also works to "fall back" or replace 8-bit bytes using the appropriate code-point for a legacy encoding when errors in the UTF-8 are detected, allowing recovery even if UTF-8 and legacy encoding is concatenated in the same file.
- Prefix code: The first byte indicates the number of bytes in the sequence. Reading from a stream can instantaneously decode each individual fully received sequence, without first having to wait for either the first byte of a next sequence or an end-of-stream indication. The length of multi-byte sequences is easily determined by humans as it is simply the number of high-order 1s in the leading byte. An incorrect character will not be decoded if a stream ends mid-sequence.
- Self-synchronization: The leading bytes and the continuation bytes do not share values (continuation bytes start with the bits 10 while single bytes start with 0 and longer lead bytes start with 11). This means a search will not accidentally find the sequence for one character starting in the middle of another character. It also means the start of a character can be found from a random position by backing up at most 3 bytes to find the leading byte. An incorrect character will not be decoded if a stream starts mid-sequence, and a shorter sequence will never appear inside a longer one.
- Sorting order: The chosen values of the leading bytes means that a list of UTF-8 strings can be sorted in code point order by sorting the corresponding byte sequences.
Single-byte
- UTF-8 can encode any Unicode character, avoiding the need to figure out and set a "code page" or otherwise indicate what character set is in use, and allowing output in multiple scripts at the same time. For many scripts there have been more than one single-byte encoding in usage, so even knowing the script was insufficient information to display it correctly.
- The bytes 0xFE and 0xFF do not appear, so a valid UTF-8 stream never matches the UTF-16 byte-order mark (BOM) and thus cannot be confused with it. The absence of 0xFF (0377) also eliminates the need to escape this byte in Telnet (and FTP control connection).
- UTF-8 encoded text is larger than specialized single-byte encodings except for plain ASCII characters. In the case of scripts which used 8-bit character sets with non-Latin characters encoded in the upper half (such as most Cyrillic and Greek alphabet code pages), characters in UTF-8 will be double the size. For some scripts, such as Thai and Devanagari (which is used by various South Asian languages), characters will triple in size. There are even examples where a single byte turns into a composite character in Unicode and is thus six times larger in UTF-8. This has caused objections in India and other countries.
- It is possible in UTF-8 (or any other multi-byte encoding) to split or truncate a string in the middle of a character. If the two pieces are not re-appended later before interpretation as characters, this can introduce an invalid sequence at both the end of the previous section and the start of the next, and some decoders will not preserve these bytes and result in data loss. Because UTF-8 is self-synchronizing this will however never introduce a different valid character, and it is also fairly easy to move the truncation point backward to the start of a character.
- If the code points are all the same size, measurements of a fixed number of them is easy. Due to ASCII-era documentation where "character" is used as a synonym for "byte" this is often considered important. However, by measuring string positions using bytes instead of "characters" most algorithms can be easily and efficiently adapted for UTF-8. Searching for a string within a long string can for example be done byte by byte; the self-synchronization property prevents false positives.
Other multi-byte
- UTF-8 can encode any Unicode character. Files in different scripts can be displayed correctly without having to choose the correct code page or font. For instance, Chinese and Arabic can be written in the same file without specialized markup or manual settings that specify an encoding.
- UTF-8 is self-synchronizing: character boundaries are easily identified by scanning for well-defined bit patterns in either direction. If bytes are lost due to error or corruption, one can always locate the next valid character and resume processing. If there is a need to shorten a string to fit a specified field, the previous valid character can easily be found. Many multi-byte encodings such as Shift JIS are much harder to resynchronize. This also means that byte-oriented string-searching algorithms can be used with UTF-8 (as a character is the same as a "word" made up of that many bytes), optimized versions of byte searches can be much faster due to hardware support and lookup tables that have only 256 entries. Self-synchronization does however require that bits be reserved for these markers in every byte, increasing the size.
- Efficient to encode using simple bitwise operations. UTF-8 does not require slower mathematical operations such as multiplication or division (unlike Shift JIS, GB 2312 and other encodings).
- UTF-8 will take more space than a multi-byte encoding designed for a specific script. East Asian legacy encodings generally used two bytes per character yet take three bytes per character in UTF-8.
UTF-16
Main article: UTF-16- Byte encodings and UTF-8 are represented by byte arrays in programs, and often nothing needs to be done to a function when converting source code from a byte encoding to UTF-8. UTF-16 is represented by 16-bit word arrays, and converting to UTF-16 while maintaining compatibility with existing ASCII-based programs (such as was done with Windows) requires every API and data structure that takes a string to be duplicated, one version accepting byte strings and another version accepting UTF-16. If backward compatibility is not needed, all string handling still must be modified.
- Text encoded in UTF-8 will be smaller than the same text encoded in UTF-16 if there are more code points below U+0080 than in the range U+0800..U+FFFF. This is true for all modern European languages. It is often true even for languages like Chinese, due to the large number of spaces, newlines, digits, and HTML markup in typical files.
- Most communication (e.g. HTML and IP) and storage (e.g. for Unix) was designed for a stream of bytes. A UTF-16 string must use a pair of bytes for each code unit:
- The order of those two bytes becomes an issue and must be specified in the UTF-16 protocol, such as with a byte-order mark (BOM).
- If an odd number of bytes is missing from UTF-16, the whole rest of the string will be meaningless text. Any bytes missing from UTF-8 will still allow the text to be recovered accurately starting with the next character after the missing bytes.
Encoding
This section may overuse or misuse colour, making it hard to understand for colour-blind users. Please remove or fix instances of distracting or hard-to-read colours or remove coloured links that may impede users' ability to distinguish links from regular text, or links coloured for purely aesthetic reasons. See the guides to editing for accessibility of contrast and colour. |
UTF-8 encodes code points in one to four bytes, depending on the value of the code point. In the following table, the x characters are replaced by the bits of the code point:
First code point | Last code point | Byte 1 | Byte 2 | Byte 3 | Byte 4 |
---|---|---|---|---|---|
U+0000 | U+007F | 0xxxxxxx | |||
U+0080 | U+07FF | 110xxxxx | 10xxxxxx | ||
U+0800 | U+FFFF | 1110xxxx | 10xxxxxx | 10xxxxxx | |
U+010000 | U+10FFFF | 11110xxx | 10xxxxxx | 10xxxxxx | 10xxxxxx |
The first 128 code points (ASCII) need 1 byte. The next 1,920 code points need two bytes to encode, which covers the remainder of almost all Latin-script alphabets, and also IPA extensions, Greek, Cyrillic, Coptic, Armenian, Hebrew, Arabic, Syriac, Thaana and N'Ko alphabets, as well as Combining Diacritical Marks. Three bytes are needed for the remaining 61,440 codepoints of the Basic Multilingual Plane (BMP), including most Chinese, Japanese and Korean characters. Four bytes are needed for the 1,048,576 codepoints in the other planes of Unicode, which include emoji (pictographic symbols), less common CJK characters, various historic scripts, and mathematical symbols.
A whole graphic character can take more than 4 bytes, because it is made of more than one code point. For instance, a national flag character takes 8 bytes since it is "constructed from a pair of Unicode scalar values" both from outside the BMP. Some complex emoji characters can take even more than this: The transgender flag emoji (🏳️⚧️), which consists of the 5 code point sequence U+1F3F3 U+FE0F U+200D U+26A7 U+FE0F, requires sixteen bytes to encode, while that for the flag of Scotland (🏴) requires a total of 28 bytes for the 7 code point sequence U+1F3F4 U+E0067 U+E0062 U+E0073 U+E0063 U+E0074 U+E007F.
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 – 000 000010 000010 101100, and encoded as 11110000 10000010 10000010 10101100 (or F0 82 82 AC in hexadecimal). This is called an overlong encoding.
The standard specifies that the correct encoding of a code point uses 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.
Invalid sequences and error handling
Not all sequences of bytes are valid UTF-8. A UTF-8 decoder should be prepared for:
- invalid bytes
- an unexpected continuation byte
- a non-continuation byte before the end of the character
- the string ending before the end of the character (which can happen in simple string truncation)
- an overlong encoding
- a sequence that decodes to an invalid code point
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."
Since RFC 3629 (November 2003), the high and low surrogate halves used by UTF-16 (U+D800 through U+DFFF) and code points not encodable by UTF-16 (those after U+10FFFF) 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 (such as Windows filenames or UTF-16 that has been split between the surrogates) as UTF-8, while it is possible with WTF-8.
Some implementations of decoders throw exceptions on errors. This has the disadvantage that it can turn what would otherwise be harmless errors (such as a "no such file" error) 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.
Since Unicode 6 (October 2010), the standard (chapter 3) has recommended a "best practice" where the error is either one byte long, or ends before the first byte that is disallowed. In these decoders E1,A0,C0 is two errors (2 bytes in the first one). This means an error is no more than three bytes long and never contains the start of a valid character, and there are 21952 different possible errors. The standard also recommends replacing each error with the replacement character "�" (U+FFFD).
These recommendations are not often followed. It is common to consider each byte to be an error, in which case E1,A0,C0 is three errors (each 1 byte long). This means there are only 128 different errors, and it is also common to replace them with 128 different characters, to make the decoding "lossless".
Byte-order mark
If the Unicode byte-order mark (BOM, U+FEFF, technically the U+FEFF ZERO WIDTH NO-BREAK SPACE character) is at the start of a UTF-8 file, the first three bytes will be 0xEF, 0xBB, 0xBF.
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 trans-coded from another encoding. While ASCII text encoded using UTF-8 is backward compatible with ASCII, this is not true when Unicode Standard recommendations are ignored and a BOM is added. A BOM can confuse software that isn't prepared for it but can otherwise accept UTF-8, e.g. programming languages that permit non-ASCII bytes in string literals but not at the start of the file. Nevertheless, there was and still is software that always inserts a BOM when writing UTF-8, and refuses to correctly interpret UTF-8 unless the first character is a BOM (or the file only contains ASCII).
Implementations and adoption
See also: Popularity of text encodingsUTF-8 has been the most common encoding for the World Wide Web since 2008. As of September 2024, UTF-8 is used by 98.3% of surveyed web sites. Although many pages only use ASCII characters to display content, very few websites now declare their encoding to only be ASCII instead of UTF-8. Over 50% of the languages tracked have 100% UTF-8 use.
Many standards only support UTF-8, e.g. JSON exchange requires it (without a byte-order mark (BOM)). UTF-8 is also the recommendation from the WHATWG for HTML and DOM specifications, and stating "UTF-8 encoding is the most appropriate encoding for interchange of Unicode" and the Internet Mail Consortium recommends that all e‑mail programs be able to display and create mail using UTF-8. The World Wide Web Consortium recommends UTF-8 as the default encoding in XML and HTML (and not just using UTF-8, also declaring it in metadata), "even when all characters are in the ASCII range ... Using non-UTF-8 encodings can have unexpected results".
Lots of software has the ability to read/write UTF-8. It may though require the user to change options from the normal settings, or may require a BOM (byte-order mark) as the first character to read the file. Examples of software supporting UTF-8 include Microsoft Word, Microsoft Excel (2016 and later), Google Drive, LibreOffice and most databases.
Some software can only read and write UTF-8 (or at least does not require a BOM). Windows Notepad, in all currently supported versions of Windows, defaults to writing UTF-8 without a BOM (a change from the outdated / unsupported Windows 7 Notepad), bringing it into line with most other text editors. Some system files on Windows 11 require UTF-8 with no requirement for a BOM, and almost all files on macOS and Linux are required to be UTF-8 without a BOM. Java 18 defaults to reading and writing files as UTF-8, and in older versions (e.g. LTS versions) only the NIO API was changed to do so. Many other programming languages default to UTF-8 for I/O, including Ruby 3.0 and R 4.2.2. All current versions of Python support UTF-8 for I/O, even on Windows (where it is opt-in for the open()
function), and plans exist to make UTF-8 I/O the default in Python 3.15 on all platforms. C++23 adopts UTF-8 as the only portable source code file format (surprisingly there was none before).
Backwards compatibility is a serious impediment to changing code to use UTF-8 instead of a 16-bit encoding, but this is happening. The default string primitive in Go, Julia, Rust, Swift 5, and PyPy uses UTF-8 internally in all cases. Python 3.3 uses UTF-8 internally for Python C API extensions and sometimes for strings and a future version of Python is planned to store strings as UTF-8 by default. Modern versions of Microsoft Visual Studio use UTF-8 internally. Microsoft's SQL Server 2019 added support for UTF-8, and using it results in a 35% speed increase, and "nearly 50% reduction in storage requirements."
All currently supported Windows versions support UTF-8 in some way (including Xbox); partial support has existed since at least Windows XP. As of May 2019, Microsoft has reversed its previous position of only recommending UTF-16; the capability to set UTF-8 as the "code page" for the Windows API was introduced; and Microsoft recommends programmers use UTF-8, and even states "UTF-16 is a unique burden that Windows places on code that targets multiple platforms".
The Java programming language includes Modified UTF-8 (MUTF-8), in which the null character (U+0000) uses the two-byte overlong encoding 11000000 10000000 (hexadecimal C0 80), instead of 00000000 (hexadecimal 00). Modified UTF-8 strings never contain any actual null bytes but can contain all Unicode code points including U+0000, which allows such strings (with a null byte appended) 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 language supports standard UTF-8 when reading and writing strings through InputStreamReader
and OutputStreamWriter
(if it is the platform's default character set or as requested by the program). However it uses Modified UTF-8 for object serialization among other applications of DataInput
and DataOutput
, 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.
Version 3 of the Python programming language treats each byte of an invalid UTF-8 bytestream as an error (see also changes with new UTF-8 mode in Python 3.7); this gives 128 different possible errors. Extensions have been created to allow any byte sequence that is assumed to be UTF-8 to be losslessly transformed to UTF-16 or UTF-32, by translating the 128 possible error bytes to reserved code points, and transforming those code points back to error bytes to output UTF-8. The most common approach is to translate the codes to U+DC80...U+DCFF which are low (trailing) surrogate values and thus "invalid" UTF-16, as used by Python's PEP 383 (or "surrogateescape") approach. Another encoding called MirBSD OPTU-8/16 converts them to U+EF80...U+EFFF in a Private Use Area. In either approach, the byte value is encoded in the low eight bits of the output code point. These encodings are very useful because they avoid the need to deal with "invalid" byte strings until much later, if at all, and allow "text" and "data" byte arrays to be the same object. If a program wants to use UTF-16 internally these are required to preserve and use filenames that can use invalid UTF-8; as the Windows filesystem API uses UTF-16, the need to support invalid UTF-8 is less there. For the encoding to be reversible, the standard UTF-8 encodings of the code points used for erroneous bytes must be considered invalid. This makes the encoding incompatible with WTF-8 or CESU-8 (though only for 128 code points). When re-encoding it is necessary to be careful of sequences of error code points which convert back to valid UTF-8, which may be used by malicious software to get unexpected characters in the output, though this cannot produce ASCII characters so it is considered comparatively safe, since malicious sequences (such as cross-site scripting) usually rely on ASCII characters.
Standards
There are several current definitions of UTF-8 in various standards documents:
- RFC 3629 / STD 63 (2003), which establishes UTF-8 as a standard internet protocol element
- RFC 5198 defines UTF-8 NFC for Network Interchange (2008)
- ISO/IEC 10646:2014 §9.1 (2014)
- The Unicode Standard, Version 15.0.0 (2022)
They supersede the definitions given in the following obsolete works:
- The Unicode Standard, Version 2.0, Appendix A (1996)
- ISO/IEC 10646-1:1993 Amendment 2 / Annex R (1996)
- RFC 2044 (1996)
- RFC 2279 (1998)
- The Unicode Standard, Version 3.0, §2.3 (2000) plus Corrigendum #1 : UTF-8 Shortest Form (2000)
- Unicode Standard Annex #27: Unicode 3.1 (2001)
- The Unicode Standard, Version 5.0 (2006)
- The Unicode Standard, Version 6.0 (2010)
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.
See also
- Alt code – Input method used with MSDOS and Windows
- Character encodings in HTML – Use of encoding systems for international characters in HTML
- Comparison of Unicode encodings
- GB 18030 – Official Chinese character encoding
- Iconv – Standard UNIX utility
- Specials (Unicode block) – Unicode block containing some special codepoints and two non-characters
- Unicode and email – Relationship between Unicode and email
- Unicode and HTML – Relationship between Unicode characters and HTML
- UTF-EBCDIC – Character encoding for Unicode compatible with EBCDIC
References
- "Chapter 2. General Structure". The Unicode Standard (6.0 ed.). Mountain View, California, US: The Unicode Consortium. ISBN 978-1-936213-01-6.
- Pike, Rob (30 April 2003). "UTF-8 history".
- Pike, Rob; Thompson, Ken (1993). "Hello World or Καλημέρα κόσμε or こんにちは 世界" (PDF). Proceedings of the Winter 1993 USENIX Conference.
- "File System Safe UCS - Transformation Format (FSS-UTF) - X/Open Preliminary Specification" (PDF). unicode.org.
- "USENIX Winter 1993 Conference Proceedings". usenix.org.
- ^ Alvestrand, Harald T. (January 1998). IETF Policy on Character Sets and Languages. IETF. doi:10.17487/RFC2277. BCP 18. RFC 2277.
- ^ "UTF-8 support in the Microsoft GDK". learn.microsoft.com. Microsoft Game Development Kit (GDK). Retrieved 2023-03-05.
- ^ "Encoding Standard". encoding.spec.whatwg.org. Retrieved 2020-04-15.
- ^ "Usage Survey of Character Encodings broken down by Ranking". W3Techs. Retrieved 2024-09-03.
- "Appendix F. FSS-UTF / File System Safe UCS Transformation format" (PDF). The Unicode Standard 1.1. Archived (PDF) from the original on 2016-06-07. Retrieved 2016-06-07.
- Whistler, Kenneth (2001-06-12). "FSS-UTF, UTF-2, UTF-8, and UTF-16". Archived from the original on 2016-06-07. Retrieved 2006-06-07.
- ^ Pike, Rob (2003-04-30). "UTF-8 history". Retrieved 2012-09-07.
- Pike, Rob (2012-09-06). "UTF-8 turned 20 years old yesterday". Retrieved 2012-09-07.
- "Encoding Standard § 4.2. Names and labels". WHATWG. Retrieved 2018-04-29.
- "Character Sets". Internet Assigned Numbers Authority. 2013-01-23. Retrieved 2013-02-08.
- Liviu (2014-02-07). "UTF-8 codepage 65001 in Windows 7 - part I". Retrieved 2018-01-30.
Previously under XP (and, unverified, but probably Vista, too) for loops simply did not work while codepage 65001 was active
- "MySQL :: MySQL 8.0 Reference Manual :: 10.9.1 The utf8mb4 Character Set (4-Byte UTF-8 Unicode Encoding)". MySQL 8.0 Reference Manual. Oracle Corporation. Retrieved 2023-03-14.
- "MySQL :: MySQL 8.0 Reference Manual :: 10.9.2 The utf8mb3 Character Set (3-Byte UTF-8 Unicode Encoding)". MySQL 8.0 Reference Manual. Oracle Corporation. Retrieved 2023-02-24.
- "HP PCL Symbol Sets | Printer Control Language (PCL & PXL) Support Blog". 2015-02-19. Archived from the original on 2015-02-19. Retrieved 2018-01-30.
- "Database Globalization Support Guide". docs.oracle.com. Retrieved 2023-03-16.
- "BOM". suikawiki (in Japanese). Archived from the original on 2009-01-17.
- Davis, Mark. "Forms of Unicode". IBM. Archived from the original on 2005-05-06. Retrieved 2013-09-18.
- "String". Apple Developer. Retrieved 2021-03-15.
- Marin, Marvin (2000-10-17). Windows NT UNICODE vulnerability analysis. Web server folder traversal. SANS Institute (Report). Malware FAQ. MS00-078. Archived from the original on Aug 27, 2014.
- "CVE-2008-2938". National Vulnerability Database (nvd.nist.gov). U.S. National Institute of Standards and Technology. 2008.
- Cite error: The named reference
rfc3629
was invoked but never defined (see the help page). - "Change Windows filesystem encoding to UTF-8". Python.org. PEP 529. Retrieved 2022-05-10.
- "DataInput". docs.oracle.com. Java Platform SE 8). Retrieved 2021-03-24.
- "Non-decodable bytes in system character interfaces". python.org. 2009-04-22. Retrieved 2014-08-13.
- Unicode 6.0.0. unicode.org (Report). October 2010.
- ^ von Löwis, Martin (2009-04-22). "Non-decodable Bytes in System Character Interfaces". Python Software Foundation. PEP 383.
- "Chapter 2" (PDF), The Unicode Standard - Version 15.0.0, p. 39
- "UTF-8 and Unicode FAQ for Unix/Linux".
- Davis, Mark (2012-02-03). "Unicode over 60 percent of the web". Official Google blog. Archived from the original on 2018-08-09. Retrieved 2020-07-24.
- Davis, Mark (2008-05-05). "Moving to Unicode 5.1". Official Google blog. Retrieved 2023-03-13.
- "Usage statistics and market share of ASCII for websites". W3Techs. January 2024. Retrieved 2024-01-01.
- Bray, Tim (December 2017). Bray, Tim (ed.). The JavaScript Object Notation (JSON) Data Interchange Format. IETF. doi:10.17487/RFC8259. RFC 8259. Retrieved 16 February 2018.
- "Using International Characters in Internet Mail". Internet Mail Consortium. 1998-08-01. Archived from the original on 2007-10-26. Retrieved 2007-11-08.
- "Encoding Standard". encoding.spec.whatwg.org. Retrieved 2018-11-15.
- "Specifying the document's character encoding". HTML 5.2 (Report). World Wide Web Consortium. 14 December 2017. Retrieved 2018-06-03.
- "Choose text encoding when you open and save files". Microsoft Support (support.microsoft.com). Retrieved 2021-11-01.
- "UTF-8 - Character encoding of Microsoft Word
DOC
andDOCX
files?". Stack Overflow. Retrieved 2021-11-01. - "Exporting a UTF-8
.txt
file from Word". support.3playmedia.com. - "Are
XLSX
files UTF-8 encoded, by definition?". Stack Overflow. Excel. Retrieved 2021-11-01. - Abhinav, Ankit; Xu, Jazlyn (April 13, 2020). "How to open UTF-8
CSV
file in Excel without mis-conversion of characters in Japanese and Chinese language for both Mac and Windows?". Microsoft Support Community. Retrieved 2021-11-01. - Galloway, Matt (October 2012). "Character encoding for iOS developers; or, UTF-8 what now?". www.galloway.me.uk. Retrieved 2021-01-02.
... in reality, you usually just assume UTF-8 since that is by far the most common encoding.
- "Windows 10 Notepad is getting better UTF-8 encoding support". BleepingComputer. Retrieved 2021-03-24.
Microsoft is now defaulting to saving new text files as UTF-8 without BOM, as shown below.
- "Customize the Windows 11 Start menu". docs.microsoft.com. Retrieved 2021-06-29.
Make sure your LayoutModification.json uses UTF-8 encoding.
- "UTF-8 by default". openjdk.java.net. JEP 400. Retrieved 2022-03-30.
- "Set default for Encoding.default_external to UTF-8 on Windows". Ruby Issue Tracking System (bugs.ruby-lang.org). Ruby master. Feature #16604. Retrieved 2022-08-01.
- "Feature #12650: Use UTF-8 encoding for ENV on Windows". Ruby Issue Tracking System (bugs.ruby-lang.org). Ruby master. Retrieved 2022-08-01.
- "New features in R 4.2.0". R bloggers (r-bloggers.com). The Jumping Rivers Blog. 2022-04-01. Retrieved 2022-08-01.
- "add a new UTF-8 mode". peps.python.org. PEP 540. Retrieved 2022-09-23.
- "Make UTF-8 mode default". peps.python.org. PEP 686. Retrieved 2023-07-26.
- "Add optional
EncodingWarning
". Python.org. PEP 597. Retrieved 2021-08-24. - Support for UTF-8 as a portable source file encoding (PDF). open-std.org (Report). 2022. p2295r6.
- "Source code representation". The Go Programming Language Specification. golang.org (Report). Retrieved 2021-02-10.
- Tsai, Michael J. (21 March 2019). "UTF-8 string in Swift 5" (blog post). Retrieved 2021-03-15.
- "PyPy v7.1 released; now uses UTF-8 internally for Unicode strings". Mattip. PyPy status blog. 2019-03-24. Retrieved 2020-11-21.
- ^ "Flexible String Representation". Python.org. PEP 393. Retrieved 2022-05-18.
- "Common Object Structures". Python documentation. Retrieved 2024-05-29.
- "Unicode objects and codecs". Python documentation. Retrieved 2023-08-19.
UTF-8 representation is created on demand and cached in the Unicode object.
- "PEP 623 – remove wstr from Unicode". Python.org. Retrieved 2020-11-21.
- Wouters, Thomas (2023-07-11). "Python 3.12.0 beta 4 released". Python Insider (pythoninsider.blogspot.com) (blog post). Retrieved 2023-07-26.
The deprecated
wstr
andwstr_length
members of the C implementation of unicode objects were removed, per PEP 623. - "validate-charset (validate for compatible characters)". docs.microsoft.com. Retrieved 2021-07-19.
Visual Studio uses UTF-8 as the internal character encoding during conversion between the source character set and the execution character set.
- "Introducing UTF-8 support for SQL Server". techcommunity.microsoft.com. 2019-07-02. Retrieved 2021-08-24.
- "Use the Windows UTF-8 code page – UWP applications". docs.microsoft.com. Retrieved 2020-06-06.
- "Java SE documentation for Interface java.io.DataInput, subsection on Modified UTF-8". Oracle Corporation. 2015. Retrieved 2015-10-16.
- "The Java Virtual Machine Specification, section 4.4.7: "The CONSTANT_Utf8_info Structure"". Oracle Corporation. 2015. Retrieved 2015-10-16.
- "Java Object Serialization Specification, chapter 6: Object Serialization Stream Protocol, section 2: Stream Elements". Oracle Corporation. 2010. Retrieved 2015-10-16.
- "Java Native Interface Specification, chapter 3: JNI Types and Data Structures, section: Modified UTF-8 Strings". Oracle Corporation. 2015. Retrieved 2015-10-16.
- "The Java Virtual Machine Specification, section 4.4.7: "The CONSTANT_Utf8_info Structure"". Oracle Corporation. 2015. Retrieved 2015-10-16.
- "ART and Dalvik". Android Open Source Project. Archived from the original on 2013-04-26. Retrieved 2013-04-09.
- "UTF-8 bit by bit". Tcler's Wiki. 2001-02-28. Retrieved 2022-09-03.
- "PEP 540 -- Add a new UTF-8 Mode". Python.org. Retrieved 2021-03-24.
- "RTFM optu8to16(3), optu8to16vis(3)". www.mirbsd.org.
- ^ Davis, Mark; Suignard, Michel (2014). "3.7 Enabling Lossless Conversion". Unicode Security Considerations. Unicode Technical Report #36.
- ISO/IEC 10646:2014 §9.1, 2014.
- The Unicode Standard, Version 15.0 §3.9 D92, §3.10 D95, 2021.
- Unicode Standard Annex #27: Unicode 3.1, 2001.
- The Unicode Standard, Version 5.0 §3.9–§3.10 ch. 3, 2006.
- The Unicode Standard, Version 6.0 §3.9 D92, §3.10 D95, 2010.
External links
- Original UTF-8 paper (or pdf) for Plan 9 from Bell Labs
- History of UTF-8 by Rob Pike
- Characters, Symbols and the Unicode Miracle on YouTube
Character encodings | |
---|---|
Early telecommunications | |
ISO/IEC 8859 |
|
Bibliographic use | |
National standards | |
ISO/IEC 2022 | |
Mac OS Code pages ("scripts") | |
DOS code pages | |
IBM AIX code pages | |
Windows code pages | |
EBCDIC code pages | |
DEC terminals (VTx) | |
Platform specific |
|
Unicode / ISO/IEC 10646 | |
TeX typesetting system | |
Miscellaneous code pages | |
Control character | |
Related topics | |
Character sets |
Rob Pike | |
---|---|
Operating systems | |
Programming languages | |
Software | |
Publications | |
Other |
Ken Thompson | |
---|---|
Operating systems | |
Programming languages | |
Software | |
Associated institutions | |
Other |