Copyright (C) 2000-2012 |
Manpages UTF-8Section: Linux Programmer's Manual (7)Updated: 2001-05-11 Index Return to Main Contents NAMEUTF-8 - an ASCII compatible multi-byte Unicode encodingDESCRIPTIONThe Unicode 3.0 character set occupies a 16-bit code space. The most obvious Unicode encoding (known as UCS-2) consists of a sequence of 16-bit words. Such strings can contain as parts of many 16-bit characters bytes like '\0' or '/' which have a special meaning in filenames and other C library function parameters. In addition, the majority of UNIX tools expects ASCII files and can't read 16-bit words as characters without major modifications. For these reasons, UCS-2 is not a suitable external encoding of Unicode in filenames, text files, environment variables, etc. The ISO 10646 Universal Character Set (UCS), a superset of Unicode, occupies even a 31-bit code space and the obvious UCS-4 encoding for it (a sequence of 32-bit words) has the same problems.The UTF-8 encoding of Unicode and UCS does not have these problems and is the common way in which Unicode is used on Unix-style operating systems. PROPERTIESThe UTF-8 encoding has the following nice properties:
ENCODINGThe following byte sequences are used to represent a character. The sequence to be used depends on the UCS code number of the character:
The xxx bit positions are filled with the bits of the character code number in binary representation. Only the shortest possible multi-byte sequence which can represent the code number of the character can be used. The UCS code values 0xd800en0xdfff (UTF-16 surrogates) as well as 0xfffe and 0xffff (UCS non-characters) should not appear in conforming UTF-8 streams. EXAMPLESThe Unicode character 0xa9 = 1010 1001 (the copyright sign) is encoded in UTF-8 as
and character 0x2260 = 0010 0010 0110 0000 (the "not equal" symbol) is encoded as:
APPLICATION NOTESUsers have to select a UTF-8 locale, for example with
in order to activate the UTF-8 support in applications. Application software that has to be aware of the used character encoding should always set the locale with for example
and programmers can then test the expression
to determine whether a UTF-8 locale has been selected and whether therefore all plaintext standard input and output, terminal communication, plaintext file content, filenames and environment variables are encoded in UTF-8. Programmers accustomed to single-byte encodings such as US-ASCII or ISO 8859 have to be aware that two assumptions made so far are no longer valid in UTF-8 locales. Firstly, a single byte does not necessarily correspond any more to a single character. Secondly, since modern terminal emulators in UTF-8 mode also support Chinese, Japanese, and Korean double-width characters as well as non-spacing combining characters, outputting a single character does not necessarily advance the cursor by one position as it did in ASCII. Library functions such as mbsrtowcs(3) and wcswidth(3) should be used today to count characters and cursor positions. The official ESC sequence to switch from an ISO 2022 encoding scheme (as used for instance by VT100 terminals) to UTF-8 is ESC % G ("\x1b%G"). The corresponding return sequence from UTF-8 to ISO 2022 is ESC % @ ("\x1b%@"). Other ISO 2022 sequences (such as for switching the G0 and G1 sets) are not applicable in UTF-8 mode. It can be hoped that in the foreseeable future, UTF-8 will replace ASCII and ISO 8859 at all levels as the common character encoding on POSIX systems, leading to a significantly richer environment for handling plain text. SECURITYThe Unicode and UCS standards require that producers of UTF-8 shall use the shortest form possible, e.g., producing a two-byte sequence with first byte 0xc0 is non-conforming. Unicode 3.1 has added the requirement that conforming programs must not accept non-shortest forms in their input. This is for security reasons: if user input is checked for possible security violations, a program might check only for the ASCII version of "/../" or ";" or NUL and overlook that there are many non-ASCII ways to represent these things in a non-shortest UTF-8 encoding.STANDARDSISO/IEC 10646-1:2000, Unicode 3.1, RFC 2279, Plan 9.AUTHORMarkus Kuhn <mgk25@cl.cam.ac.uk>SEE ALSOnl_langinfo(3), setlocale(3), charsets(7), unicode(7)
IndexThis document was created by man2html, using the manual pages. Time: 02:16:13 GMT, December 13, 2024 |