UTF-8
UTF-8 (8-bit UCS/Unicode Transformation Format) is a variable-length character encoding for Unicode. It is able to represent any character in the Unicode standard, yet is backwards compatible with ASCII. For these reasons, it is steadily becoming the preferred encoding for e-mail, web pages,[1][2] and other places where characters are stored or streamed.
UTF-8 encodes each character (code point) in 1 to 4 octets (8-bit bytes), with the single octet encoding used only for the 128 US-ASCII characters. See the Description section below for details.
The Internet Engineering Task Force (IETF) requires all Internet protocols to identify the encoding used for character data, and the supported character encodings must include UTF-8.[3] The Internet Mail Consortium (IMC) recommends that all e-mail programs be able to display and create mail using UTF-8.[4]
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 that provided a byte-stream encoding of its 32-bit code points. This encoding was not satisfactory on performance grounds, but did introduce the notion that bytes in the ASCII range of 0–127 represent themselves in UTF, thereby providing backward compatibility.
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 multibyte sequences would include only 8-bit characters, i.e. those where the high bit was set.
In August 1992, this proposal was circulated by an IBM X/Open representative to interested parties. Ken Thompson of the Plan 9 operating system group at Bell Labs, then made a crucial modification to the encoding to allow it to be self-synchronizing, meaning that it was not necessary to read from the beginning of the string in order to find code point boundaries. Thompson's design was outlined on September 2, 1992, on a placemat in a New Jersey diner with Rob Pike. 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.[5]
UTF-8 was first officially presented at the USENIX conference in San Diego, from January 25–29, 1993.
Description
The UTF-8 encoding is variable-width, ranging from 1–4 bytes. Each byte has 0–4 leading 1 bits followed by a zero bit to indicate its type. N 1 bits indicates the first byte in a N-byte sequence, with the exception that zero 1 bits indicates a one-byte sequence while one 1 bit indicates a continuation byte in a multi-byte sequence (this was done for ASCII compatibility). The scalar value of the Unicode code point is the concatenation of the non-control bits. In this table, zeroes and ones represent control bits, x
-s represent the lowest 8 bits of the Unicode value, y
-s represent the next higher 8 bits, and z
-s represent the bits higher than that.
Unicode | Byte1 | Byte2 | Byte3 | Byte4 | example |
---|---|---|---|---|---|
U+0000–U+007F
|
0xxxxxxx
|
'$' U+0024 → 00100100 → 0x24
| |||
U+0080–U+07FF
|
110yyyxx
|
10xxxxxx
|
'¢' U+00A2 → 11000010,10100010 → 0xC2,0xA2
| ||
U+0800–U+FFFF
|
1110yyyy
|
10yyyyxx
|
10xxxxxx
|
'€' U+20AC → 11100010,10000010,10101100 → 0xE2,0x82,0xAC
| |
U+10000–U+10FFFF
|
11110zzz
|
10zzyyyy
|
10yyyyxx
|
10xxxxxx
|
'𤭢' U+024B62 → 11110000,10100100,10101101,10100010 → 0xF0,0xA4,0xAD,0xA2
|
So the first 128 characters (US-ASCII) need one byte. The next 1,920 characters need two bytes to encode. This includes Latin letters with diacritics and characters from Greek, Cyrillic, Coptic, Armenian, Hebrew, Arabic, Syriac and Tāna alphabets. Three bytes are needed for the rest of the Basic Multilingual Plane (which contains virtually all characters in common use). Four bytes are needed for characters in the other planes of Unicode, which include less common CJK characters and various historic scripts.
By continuing the pattern given above it is possible to deal with much larger numbers. The original specification allowed for sequences of up to six bytes covering numbers up to 31 bits (the original limit of the Universal Character Set). However, UTF-8 was restricted by RFC 3629 to use only the area covered by the formal Unicode definition, U+0000
to U+10FFFF
, in November 2003.
With these restrictions, bytes in a UTF-8 sequence have the following meanings. The ones marked in red can never appear in a legal UTF-8 sequence. The ones in green are represented in a single byte. The ones in white must only appear as the first byte in a multi-byte sequence, and the ones in orange can only appear as the second or later byte in a multi-byte sequence:
binary | hex | decimal | notes |
---|---|---|---|
00000000-01111111 | 00-7F | 0-127 | US-ASCII (single byte) |
10000000-10111111 | 80-BF | 128-191 | Second, third, or fourth byte of a multi-byte sequence |
11000000-11000001 | C0-C1 | 192-193 | Overlong encoding: start of a 2-byte sequence, but code point <= 127 |
11000010-11011111 | C2-DF | 194-223 | Start of 2-byte sequence |
11100000-11101111 | E0-EF | 224-239 | Start of 3-byte sequence |
11110000-11110100 | F0-F4 | 240-244 | Start of 4-byte sequence |
11110101-11110111 | F5-F7 | 245-247 | Restricted by RFC 3629: start of 4-byte sequence for codepoint above 10FFFF |
11111000-11111011 | F8-FB | 248-251 | Restricted by RFC 3629: start of 5-byte sequence |
11111100-11111101 | FC-FD | 252-253 | Restricted by RFC 3629: start of 6-byte sequence |
11111110-11111111 | FE-FF | 254-255 | Invalid: not defined by original UTF-8 specification |
Invalid byte sequences
Not all sequences of bytes are valid UTF-8. A UTF-8 decoder should be prepared for:
- the red invalid bytes in the above table
- an unexpected continuation byte
- a start byte not followed by enough continuation bytes
- a sequence that decodes to a value that should use a shorter sequence (an "overlong form").
Many earlier decoders would happily try to decode these. 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.[6]
RFC 3629 states "Implementations of the decoding algorithm MUST protect against decoding invalid sequences."[7] 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." Many UTF-8 decoders throw an exception if a string has an error in it. In recent times this has been found to be impractical: being unable to work with data means you cannot even try to fix it. One example was Python 3.0 which would exit immediately if the command line had invalid UTF-8 in it.[8] A more useful solution is to translate the first byte to a replacement and continue parsing with the next byte. Popular replacements are:
- The replacement character '�' (U+FFFD)
- The '?' or '¿' character (U+003F or U+00BF)
- The invalid Unicode code points U+DC80..U+DCFF where the low 8 bits are the byte's value.
- Interpret the bytes according to another encoding (often ISO-8859-1 or CP1252).
Replacing errors is "lossy": more than one UTF-8 string converts to the same Unicode result. Therefore the original UTF-8 should be stored, translation should only be used when displaying the text to the user.
Invalid code points
UTF-8 may only legally be used to encode valid Unicode scalar values. According to the Unicode standard the high and low surrogate halves used by UTF-16 (U+D800 through U+DFFF) and values above U+10FFFF are not legal Unicode values, and the UTF-8 encoding of them is an invalid byte sequence and should be treated as described above.
Whether an actual application should treat these as invalid is questionable. Allowing them allows lossless conversion of an invalid UTF-16 string and allows CESU encoding (described below) to be decoded. There are other code points that are far more important to detect and reject, such as the reversed-BOM U+FFFE, or the codes U+0080..U+00AF which may indicate improperly translated CP1252 or double-encoded UTF-8.
Official name and incorrect variants
The official name is "UTF-8". All letters are upper-case, and the name is hyphenated. This spelling is used in all the documents relating to the encoding.
Alternatively, the name "utf-8" may be used by all standards conforming to the Internet Assigned Numbers Authority (IANA) list[9] (which include CSS, HTML, XML, and HTTP headers[10]), as the declaration is case insensitive.
Other descriptions that omit the hyphen or replace it with a space, such as "utf8" or "UTF 8", are incorrect and should be avoided. Despite this, most agents such as browsers can understand them.
UTF-8 derivations
The following implementations are slight differences from the UTF-8 specification. They are incompatible with the UTF-8 specification.
CESU-8
Many pieces of software added UTF-8 conversions for UCS-2 data and did not alter their UTF-8 conversion when UCS-2 was replaced with the surrogate-pair supporting UTF-16. The result is that each half of a UTF-16 surrogate pair is encoded as its own 3-byte UTF-8 encoding, resulting in 6 bytes rather than 4 for characters outside the Basic Multilingual Plane. Oracle databases use this, as well as Java and Tcl as described below, and probably a great deal of other Windows software where the programmers were unaware of the complexities of UTF-16. Although most usage is by accident, a supposed benefit is that this preserves UTF-16 binary sorting order when CESU-8 is binary sorted.
Modified UTF-8
In Modified UTF-8[11] the null character (U+0000) is encoded as 0xC0,0x80 rather than 0x00, which is not valid UTF-8[12] because it is not the shortest possible representation. Modified UTF-8 strings will never contain any null-bytes,[13] which allows them (with a NUL added to the end) to be processed by the traditional ASCIIZ string functions, yet allows all Unicode values including U+0000 to be in the string.
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 InputStreamReader
and OutputStreamWriter
. However it uses Modified UTF-8 for object serialization[14], for the Java Native Interface[15], and for embedding constant strings in class files[16]. Tcl also uses the same modified UTF-8[17] as Java for internal representation of Unicode data.
Byte-order mark
Many Windows programs (including Windows Notepad) add the bytes 0xEF,0xBB,0xBF at the start of any document saved as UTF-8. This is the UTF-8 encoding of the Unicode byte-order mark (BOM), and is commonly referred to as a UTF-8 BOM even though it is not relevant to byte order. The BOM can also appear if another encoding with a BOM is translated to UTF-8 without stripping it.
The presence of the UTF-8 BOM may cause interoperability problems with existing software that could otherwise handle UTF-8, for example:
- Older text editors may display the BOM as "" at the start of the document, even if the UTF-8 file contains only ASCII and would otherwise display correctly.
- Programming language parsers can often handle UTF-8 in string constants and comments, but cannot parse the BOM at the start of the file.
- Programs that identify file types by leading characters may fail to identify the file if a BOM is present even if the user of the file could skip the BOM. Or conversely they will identify the file when the user cannot handle the BOM. An example is the Unix shebang syntax.
- Programs that insert information at the start of a file will result in a file with the BOM somewhere in the middle of it (this is also a problem with the UTF-16 BOM). One example is offline browsers that add the orginating URL to the start of the file.
If compatibility with existing programs is not important, the BOM could be used to identify if a file is UTF-8 versus a legacy encoding, but this is still problematical due to many instances where the BOM is added or removed without actually changing the encoding, or various encodings are concatenated together. Checking if the text is valid UTF-8 is more reliable than using BOM.
Precomposition and Decomposition
Certain accented characters (such as é) can be represented by unique code points (U+00E9, LATIN SMALL LETTER E WITH ACUTE), or with combining characters (U+0065, LATIN SMALL LETTER E and U+0301, COMBINING ACUTE ACCENT). The former is a “precomposed” form and is the standard for filenames on Linux, while the latter “decomposed” form is standard for filenames on Mac OS X. The decomposed form is also known as UTF8-MAC. When transferring files between filesystems using the two forms, file names may need to be explicitly converted.[18][19]
Advantages and disadvantages
General
Advantages
- The ASCII characters are represented by themselves as single bytes that do not appear anywhere else, which makes UTF-8 work with the majority of existing APIs that take bytes strings but only treat a small number of ASCII codes specially. This removes the need to write a new Unicode version of every API, and makes it much easier to convert existing systems to UTF-8 than any other Unicode encoding.
- UTF-8 is the only encoding for XML entities that does not require a BOM or an indication of the encoding.[20]
- UTF-8 and UTF-16 are the standard encodings for Unicode text in HTML documents, with UTF-8 as the preferred and most used encoding.
- UTF-8 strings can be fairly reliably recognized as such by a simple algorithm.[21] The chance of a random string of bytes being valid UTF-8 and not pure ASCII is 3.9% for a two-byte sequence, 0.41% for a three-byte sequence and 0.026% for a four-byte sequence.[22] ISO/IEC 8859-1 is even less likely to be mis-recognized as UTF-8: the only non-ASCII characters in it would have to be in sequences starting with either an accented letter or the multiplication symbol and ending with a symbol. This is an advantage that most other encodings do not have, causing errors (mojibake) if the encoding is not stated in the file and wrongly guessed.
- Sorting of UTF-8 strings as arrays of unsigned bytes will produce the same results as sorting them based on Unicode code points.
Disadvantages
- A UTF-8 parser that is not compliant with current versions of the standard might accept a number of different pseudo-UTF-8 representations and convert them to the same Unicode output. This provides a way for information to leak past validation routines designed to process data in its eight-bit representation.[23]
- One UTF-8 advantage is that other single-byte encodings can pass through the same API. However, failure to identify the encoding later can lead to errors when rendering the string for the user. This is usually caused by software defaulting to the legacy encoding and relying on a BOM or other information to identify UTF-8. Defaulting to UTF-8 and switching to legacy encoding when invalid sequences are encountered can solve this.
Compared to single-byte encodings
Advantages
- 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 languages at the same time. For many languages there has been more than one single-byte encoding in usage, so even knowing the language 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 and thus cannot be confused with it.
Disadvantages
- UTF-8 encoded text is larger than the appropriate single-byte encoding except for plain ASCII characters. In the case of languages which used 8-bit character sets with non-Latin alphabets encoded in the upper half (such as most Cyrillic and Greek alphabet code pages), letters in UTF-8 will be double the size. For some languages such as Hindi's Devanagari and Thai, letters will be triple the size (this has caused objections in India and other countries).
- Many computer users perceive the encoding Latin-1 (or the Windows-1252 extension) to include all the necessary characters for them and all users they communicate with. They do not see any advantage of using Unicode, as they are unbothered by code pages, and thus no advantage of using UTF-8.
- It is possible in UTF-8 (or any other multi-byte encoding) to split a string in the middle of a character, which may result in an invalid string if the pieces are not concatenated later.
- If the code points are all the same size, measurements of a fixed number of them is easy. This is often mistakenly considered important due to confusion caused by old documentation written for ASCII, where "character" was used as a synonym for "byte". If you measure strings using bytes instead of "characters" most algorithms can be easily and efficiently adapted for UTF-8.
Compared to other multi-byte encodings
Advantages
- UTF-8 uses the codes 0-127 only for the ASCII characters.
- UTF-8 can encode any Unicode character. Files in different languages can be displayed correctly without having to choose the correct code page or font. Chinese, Korean and Japanese can all be in the same text without special codes inserted to switch the encoding.
- UTF-8 is "self-synchronizing": character boundaries are easily found when searching either forwards or backwards. If bytes are lost due to error or corruption, one can always locate the beginning of the next character and thus limit the damage. Many multi-byte encodings are much harder to resynchronize.
- Any byte oriented string searching algorithm can be used with UTF-8 data, since the sequence of bytes for a character cannot occur anywhere else. Some older variable-length encodings (such as Shift JIS) did not have this property and thus made string-matching algorithms rather complicated.
- Efficient to encode using simple bit operations. UTF-8 does not require slower mathematical operations such as multiplication or division (unlike the obsolete UTF-1 encoding).
Disadvantages
- UTF-8 often takes more space than an encoding made for one or a few languages. Latin letters with diacritics and characters from other alphabetic scripts typically take one byte per character in the appropriate multi-byte encoding but take two in UTF-8. East Asian scripts generally have two bytes per character in their multi-byte encodings yet take three bytes per character in UTF-8.
Compared to UTF-16
Advantages
- Converting to UTF-16 while maintaining compatibility with existing programs (such as was done with Windows) requires every API and data structure that takes a string to be duplicated. Handling of invalid encodings makes this much more difficult than it may first appear.
- Byte streams containing invalid UTF-8 cannot be losslessly stored as UTF-16. Invalid UTF-16 however can be stored as UTF-8. This turns out to be surprisingly important in practice.
- Characters outside the basic multilingual plane are not a special case. UTF-16 is often mistaken to be the obsolete constant-length UCS-2 encoding, leading to code that works for most text but suddenly fails for non-BMP characters.
- ASCII characters will be half the size in UTF-8. Text in all languages using codepoints below U+0800 (which includes all modern European languages) will be smaller in UTF-8 due to the presence of ASCII spaces, newlines, numbers, and punctuation.
- Most communication and storage was designed for a stream of bytes. A UTF-16 string must use a pair of bytes for each code, which introduces a couple of potential problems:
- The order of those two bytes becomes an issue and must be added to the protocol, such as with a byte-order mark
- If a byte is missing from UTF-16, the whole rest of the string will be meaningless text.
Disadvantages
- A simplistic parser for UTF-16 is unlikely to convert invalid sequences to ASCII. Since the dangerous characters in most situations are ASCII, a simplistic UTF-16 parser is much less dangerous than a simplistic UTF-8 parser.
- Characters U+0800 through U+FFFF use three bytes in UTF-8, but only two in UTF-16. As a result, text in (for example) Chinese, Japanese or Hindi could take more space in UTF-8 if there are more of these characters than there are ASCII characters. Since ASCII includes spaces, numbers, newlines, some punctuation, and most characters used in programming and markup languages, this rarely happens. For example both the Japanese and the Korean UTF-8 article on Wikipedia take more space if saved as UTF-16 than the original UTF-8 version [24]
- In UCS-2 (but not UTF-16) Unicode code points are all the same size, making measurements of a fixed number of them easy. This is often mistakenly considered important due to confusion caused by old documentation written for ASCII, where "character" was used as a synonym for "byte". If you measure strings using bytes instead of "characters" most algorithms can be easily and efficiently adapted for UTF-8.
See also
- Alt code
- ASCII
- Byte-order mark
- Comparison of e-mail clients#Features
- Comparison of Unicode encodings
- Character encodings in HTML
- ISO/IEC 8859
- iconv—a standardized API used to convert between different character encodings
- GB 18030
- UTF-8 in URIs
- Unicode and e-mail
- Unicode and HTML
- Universal Character Set
- UTF-16/UCS-2
- UTF-9 and UTF-18
References
- ^ "Moving to Unicode 5.1". Official Google Blog. May 5 2008. Retrieved 2008-05-08.
{{cite web}}
: Check date values in:|date=
(help) - ^ "Usage of character encodings for websites". W3Techs. Retrieved 2009-09-25.
- ^ Alvestrand, H. (1998), "IETF Policy on Character Sets and Languages", RFC 2277, Internet Engineering Task Force
- ^ "Using International Characters in Internet Mail". Internet Mail Consortium. August 1 1998. Retrieved 2007-11-08.
{{cite web}}
: Check date values in:|date=
(help) - ^ Pike, Rob (2003-04-03). "UTF-8 history".
- ^ Marin, Marvin (2000-10-17). "Web Server Folder Traversal MS00-078".
- ^ Yergeau, F. (2003), "UTF-8, a transformation format of ISO 10646", RFC 3629, Internet Engineering Task Force
- ^ "Non-decodable Bytes in System Character Interfaces".
- ^ Internet Assigned Numbers Authority Character Sets
- ^ W3C: Setting the HTTP charset parameter notes that the IANA list is used for HTTP
- ^ "Java SE 6 documentation for Interface java.io.DataInput, subsection on Modified UTF-8". Sun Microsystems. 2008. Retrieved 2009-05-22.
- ^ "[...] the overlong UTF-8 sequence C0 80 [...]", "[...] the illegal two-octet sequence C0 80 [...]""Request for Comments 3629: "UTF-8, a transformation format of ISO 10646"". 2003. Retrieved 2009-05-22.
- ^ "[...] Java virtual machine UTF-8 strings never have embedded nulls.""The Java Virtual Machine Specification, 2nd Edition, section 4.4.7: "The CONSTANT_Utf8_info Structure"". Sun Microsystems. 1999. Retrieved 2009-05-24.
- ^ "[...] encoded in modified UTF-8.""Java Object Serialization Specification, chapter 6: Object Serialization Stream Protocol, section 2: Stream Elements". Sun Microsystems. 2005. Retrieved 2009-05-22.
- ^ "The JNI uses modified UTF-8 strings to represent various string types.""Java Native Interface Specification, chapter 3: JNI Types and Data Structures, section: Modified UTF-8 Strings". Sun Microsystems. 2003. Retrieved 2009-05-22.
- ^ "[...] differences between this format and the "standard" UTF-8 format.""The Java Virtual Machine Specification, 2nd Edition, section 4.4.7: "The CONSTANT_Utf8_info Structure"". Sun Microsystems. 1999. Retrieved 2009-05-23.
- ^ "In orthodox UTF-8, a NUL byte(\x00) is represented by a NUL byte. [...] But [...] we [...] want NUL bytes inside [...] strings [...]""Tcler's Wiki: UTF-8 bit by bit (Revision 6)". 2009-04-25. Retrieved 2009-05-22.
- ^ http://sourceforge.net/tracker/?func=detail&aid=2727174&group_id=8642&atid=108642
- ^ http://forums.macosxhints.com/archive/index.php/t-99344.html
- ^ http://www.w3.org/TR/REC-xml/#charencoding
- ^ W3 FAQ: Multilingual Forms: a Perl regular expression to validate a UTF-8 string)
- ^ There are 256 × 256 − 128 × 128 not-pure-ASCII two-byte sequences, and of those, only 1920 encode valid UTF-8 characters (the range U+0080 to U+07FF), so the proportion of valid not-pure-ASCII two-byte sequences is 3.9%. Similarly, there are 256 × 256 × 256 − 128 × 128 × 128 not-pure-ASCII three-byte sequences, and 61,406 valid three-byte UTF-8 sequences (U+000800 to U+00FFFF minus surrogate pairs and non-characters), so the proportion is 0.41%; finally, there are 2564 − 1284 non-ASCII four-byte sequences, and 1,048,544 valid four-byte UTF-8 sequences (U+010000 to U+10FFFF minus non-characters), so the proportion is 0.026%. Note that this assumes that control characters pass as ASCII; without the control characters, the percentage proportions drop somewhat).
- ^ http://tools.ietf.org/html/rfc3629#section-10
- ^ The version from 2009-04-27 of ja:UTF-8 needed 50 kb when saved (as UTF-8), but when converted to UTF-16 (with notepad) it took 81 kb, with a similar result for the Korean article This should be done with something other than notepad, with a program that doesn't mangle newlines.[clarification needed]
External links
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
- The Unicode Standard, Version 5.0, §3.9 D92, $3.10 D95 (2007)
- The Unicode Standard, Version 4.0, §3.9–§3.10 (2003)
- ISO/IEC 10646:2003 Annex D (2003)
They supersede the definitions given in the following obsolete works:
- ISO/IEC 10646-1:1993 Amendment 2 / Annex R (1996)
- The Unicode Standard, Version 2.0, Appendix A (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)
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.
- Original UTF-8 paper (or pdf) for Plan 9 from Bell Labs
- RFC 5198 defines UTF-8 NFC for Network Interchange
- UTF-8 test pages by Andreas Prilop and the World Wide Web Consortium
- How to configure e-mail clients to send UTF-8 text
- Unix/Linux: UTF-8/Unicode FAQ, Linux Unicode HOWTO, UTF-8 and Gentoo
- The Unicode/UTF-8-character table displays UTF-8 in a variety of formats (with Unicode and HTML encoding information)
- Online Tool for URL Encoding/Decoding according to RFC 3986 / RFC 3629(JavaScript, GPL)
- Unicode and Multilingual Web Browsers from Alan Wood’s Unicode Resources describes support and additional configuration of Unicode/UTF-8 in modern browsers
- JSP Wiki Browser Compatibility page details specific problems with UTF-8 in older browsers
- Mathematical Symbols in Unicode
- Unicode.se shows how to set your homepages and databases to UTF-8
- Graphical View of UTF-8 in ICU's Converter Explorer