]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man7/utf-8.7
All pages: Remove the 5th argument to .TH
[thirdparty/man-pages.git] / man7 / utf-8.7
CommitLineData
fea681da
MK
1.\" Copyright (C) Markus Kuhn, 1996, 2001
2.\"
e4a74ca8 3.\" SPDX-License-Identifier: GPL-2.0-or-later
fea681da
MK
4.\"
5.\" 1995-11-26 Markus Kuhn <mskuhn@cip.informatik.uni-erlangen.de>
6.\" First version written
7.\" 2001-05-11 Markus Kuhn <mgk25@cl.cam.ac.uk>
8.\" Update
9.\"
45186a5d 10.TH UTF-8 7 2019-03-06 "Linux man-pages (unreleased)"
fea681da 11.SH NAME
ae03dc66 12UTF-8 \- an ASCII compatible multibyte Unicode encoding
fea681da 13.SH DESCRIPTION
57e79231 14The Unicode 3.0 character set occupies a 16-bit code space.
c13182ef 15The most obvious
57e79231 16Unicode encoding (known as UCS-2)
c13182ef 17consists of a sequence of 16-bit words.
76f6db57 18Such strings can contain\(emas part of many 16-bit characters\(embytes
d1a71985 19such as \(aq\e0\(aq or \(aq/\(aq, which have a
c4bb193f 20special meaning in filenames and other C library function arguments.
76f6db57 21In addition, the majority of UNIX tools expect ASCII files and can't
c13182ef
MK
22read 16-bit words as characters without major modifications.
23For these reasons,
57e79231 24UCS-2 is not a suitable external encoding of Unicode
9581cf78 25in filenames, text files, environment variables, and so on.
57e79231 26The ISO 10646 Universal Character Set (UCS),
76f6db57
MK
27a superset of Unicode, occupies an even larger code
28space\(em31\ bits\(emand the obvious
57e79231 29UCS-4 encoding for it (a sequence of 32-bit words) has the same problems.
a721e8b2 30.PP
57e79231 31The UTF-8 encoding of Unicode and UCS
fea681da 32does not have these problems and is the common way in which
57e79231 33Unicode is used on UNIX-style operating systems.
6427f1d8 34.SS Properties
57e79231 35The UTF-8 encoding has the following nice properties:
fea681da
MK
36.TP 0.2i
37*
57e79231
MK
38UCS
39characters 0x00000000 to 0x0000007f (the classic US-ASCII
fea681da 40characters) are encoded simply as bytes 0x00 to 0x7f (ASCII
c13182ef
MK
41compatibility).
42This means that files and strings which contain only
437-bit ASCII characters have the same encoding under both
57e79231 44ASCII
fea681da 45and
57e79231 46UTF-8 .
fea681da
MK
47.TP
48*
57e79231 49All UCS characters greater than 0x7f are encoded as a multibyte sequence
fea681da
MK
50consisting only of bytes in the range 0x80 to 0xfd, so no ASCII
51byte can appear as part of another character and there are no
d1a71985 52problems with, for example, \(aq\e0\(aq or \(aq/\(aq.
fea681da
MK
53.TP
54*
57e79231 55The lexicographic sorting order of UCS-4 strings is preserved.
fea681da
MK
56.TP
57*
57e79231 58All possible 2^31 UCS codes can be encoded using UTF-8.
fea681da
MK
59.TP
60*
57e79231 61The bytes 0xc0, 0xc1, 0xfe, and 0xff are never used in the UTF-8 encoding.
fea681da 62.TP
c13182ef 63*
ae03dc66 64The first byte of a multibyte sequence which represents a single non-ASCII
57e79231 65UCS character is always in the range 0xc2 to 0xfd and indicates how long
ae03dc66
MK
66this multibyte sequence is.
67All further bytes in a multibyte sequence
c13182ef
MK
68are in the range 0x80 to 0xbf.
69This allows easy resynchronization and
fea681da
MK
70makes the encoding stateless and robust against missing bytes.
71.TP
72*
57e79231
MK
73UTF-8 encoded UCS characters may be up to six bytes long, however the
74Unicode standard specifies no characters above 0x10ffff, so Unicode characters
33a0ccb2 75can be only up to four bytes long in
57e79231 76UTF-8.
6427f1d8 77.SS Encoding
c13182ef
MK
78The following byte sequences are used to represent a character.
79The sequence to be used depends on the UCS code number of the character:
fea681da 80.TP 0.4i
4d9b6984 810x00000000 \- 0x0000007F:
fea681da
MK
82.RI 0 xxxxxxx
83.TP
4d9b6984 840x00000080 \- 0x000007FF:
c13182ef 85.RI 110 xxxxx
fea681da
MK
86.RI 10 xxxxxx
87.TP
4d9b6984 880x00000800 \- 0x0000FFFF:
fea681da
MK
89.RI 1110 xxxx
90.RI 10 xxxxxx
91.RI 10 xxxxxx
92.TP
4d9b6984 930x00010000 \- 0x001FFFFF:
fea681da
MK
94.RI 11110 xxx
95.RI 10 xxxxxx
96.RI 10 xxxxxx
97.RI 10 xxxxxx
98.TP
4d9b6984 990x00200000 \- 0x03FFFFFF:
fea681da
MK
100.RI 111110 xx
101.RI 10 xxxxxx
102.RI 10 xxxxxx
103.RI 10 xxxxxx
104.RI 10 xxxxxx
105.TP
4d9b6984 1060x04000000 \- 0x7FFFFFFF:
fea681da
MK
107.RI 1111110 x
108.RI 10 xxxxxx
109.RI 10 xxxxxx
110.RI 10 xxxxxx
111.RI 10 xxxxxx
112.RI 10 xxxxxx
113.PP
114The
115.I xxx
116bit positions are filled with the bits of the character code number in
ad0fbddd 117binary representation, most significant bit first (big-endian).
ae03dc66 118Only the shortest possible multibyte sequence
fea681da
MK
119which can represent the code number of the character can be used.
120.PP
57e79231 121The UCS code values 0xd800\(en0xdfff (UTF-16 surrogates) as well as 0xfffe and
15f0b7af
AC
1220xffff (UCS noncharacters) should not appear in conforming UTF-8 streams.
123According to RFC 3629 no point above U+10FFFF should be used,
124which limits characters to four bytes.
6427f1d8 125.SS Example
57e79231 126The Unicode character 0xa9 = 1010 1001 (the copyright sign) is encoded
fea681da
MK
127in UTF-8 as
128.PP
129.RS
13011000010 10101001 = 0xc2 0xa9
131.RE
132.PP
133and character 0x2260 = 0010 0010 0110 0000 (the "not equal" symbol) is
134encoded as:
135.PP
136.RS
13711100010 10001001 10100000 = 0xe2 0x89 0xa0
138.RE
73d8cece 139.SS Application notes
57e79231 140Users have to select a UTF-8 locale, for example with
fea681da
MK
141.PP
142.RS
143export LANG=en_GB.UTF-8
144.RE
145.PP
57e79231 146in order to activate the UTF-8 support in applications.
fea681da
MK
147.PP
148Application software that has to be aware of the used character
149encoding should always set the locale with for example
150.PP
151.RS
152setlocale(LC_CTYPE, "")
153.RE
154.PP
155and programmers can then test the expression
156.PP
157.RS
158strcmp(nl_langinfo(CODESET), "UTF-8") == 0
159.RE
160.PP
57e79231 161to determine whether a UTF-8 locale has been selected and whether
fea681da 162therefore all plaintext standard input and output, terminal
735334d4 163communication, plaintext file content, filenames, and environment
57e79231 164variables are encoded in UTF-8.
fea681da 165.PP
57e79231 166Programmers accustomed to single-byte encodings such as US-ASCII or ISO 8859
fea681da 167have to be aware that two assumptions made so far are no longer valid
57e79231 168in UTF-8 locales.
c13182ef
MK
169Firstly, a single byte does not necessarily correspond any
170more to a single character.
57e79231 171Secondly, since modern terminal emulators in UTF-8
fea681da 172mode also support Chinese, Japanese, and Korean
57e79231 173double-width characters as well as nonspacing combining characters,
fea681da 174outputting a single character does not necessarily advance the cursor
57e79231 175by one position as it did in ASCII.
fea681da
MK
176Library functions such as
177.BR mbsrtowcs (3)
178and
179.BR wcswidth (3)
180should be used today to count characters and cursor positions.
181.PP
57e79231 182The official ESC sequence to switch from an ISO 2022
fea681da 183encoding scheme (as used for instance by VT100 terminals) to
57e79231 184UTF-8 is ESC % G
d1a71985 185("\ex1b%G").
c13182ef 186The corresponding return sequence from
d1a71985 187UTF-8 to ISO 2022 is ESC % @ ("\ex1b%@").
c13182ef 188Other ISO 2022 sequences (such as
fea681da 189for switching the G0 and G1 sets) are not applicable in UTF-8 mode.
6427f1d8 190.SS Security
57e79231 191The Unicode and UCS standards require that producers of UTF-8
75b94dc3 192shall use the shortest form possible, for example, producing a two-byte
cfea5132 193sequence with first byte 0xc0 is nonconforming.
57e79231 194Unicode 3.1 has added the requirement that conforming programs must not accept
c13182ef
MK
195non-shortest forms in their input.
196This is for security reasons: if
fea681da 197user input is checked for possible security violations, a program
57e79231 198might check only for the ASCII
fea681da 199version of "/../" or ";" or NUL and overlook that there are many
57e79231 200non-ASCII ways to represent these things in a non-shortest UTF-8
fea681da 201encoding.
6427f1d8 202.SS Standards
4550bf19 203ISO/IEC 10646-1:2000, Unicode 3.1, RFC\ 3629, Plan 9.
fd7f0a7f
MK
204.\" .SH AUTHOR
205.\" Markus Kuhn <mgk25@cl.cam.ac.uk>
47297adb 206.SH SEE ALSO
c664680a 207.BR locale (1),
fea681da
MK
208.BR nl_langinfo (3),
209.BR setlocale (3),
210.BR charsets (7),
211.BR unicode (7)