OSDN Git Service

cd52bd3b604ebf6c037752702b751d0a5259f1f4
[linuxjm/LDP_man-pages.git] / original / man7 / utf-8.7
1 .\" Copyright (C) Markus Kuhn, 1996, 2001
2 .\"
3 .\" %%%LICENSE_START(GPLv2+_DOC_FULL)
4 .\" This is free documentation; you can redistribute it and/or
5 .\" modify it under the terms of the GNU General Public License as
6 .\" published by the Free Software Foundation; either version 2 of
7 .\" the License, or (at your option) any later version.
8 .\"
9 .\" The GNU General Public License's references to "object code"
10 .\" and "executables" are to be interpreted as the output of any
11 .\" document formatting or typesetting system, including
12 .\" intermediate and printed output.
13 .\"
14 .\" This manual is distributed in the hope that it will be useful,
15 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
16 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 .\" GNU General Public License for more details.
18 .\"
19 .\" You should have received a copy of the GNU General Public
20 .\" License along with this manual; if not, see
21 .\" <http://www.gnu.org/licenses/>.
22 .\" %%%LICENSE_END
23 .\"
24 .\" 1995-11-26  Markus Kuhn <mskuhn@cip.informatik.uni-erlangen.de>
25 .\"      First version written
26 .\" 2001-05-11  Markus Kuhn <mgk25@cl.cam.ac.uk>
27 .\"      Update
28 .\"
29 .TH UTF-8 7 2014-06-13 "GNU" "Linux Programmer's Manual"
30 .SH NAME
31 UTF-8 \- an ASCII compatible multibyte Unicode encoding
32 .SH DESCRIPTION
33 The Unicode 3.0 character set occupies a 16-bit code space.
34 The most obvious
35 Unicode encoding (known as UCS-2)
36 consists of a sequence of 16-bit words.
37 Such strings can contain\(emas part of many 16-bit characters\(embytes
38 such as \(aq\\0\(aq or \(aq/\(aq, which have a
39 special meaning in filenames and other C library function arguments.
40 In addition, the majority of UNIX tools expect ASCII files and can't
41 read 16-bit words as characters without major modifications.
42 For these reasons,
43 UCS-2 is not a suitable external encoding of Unicode
44 in filenames, text files, environment variables, and so on.
45 The ISO 10646 Universal Character Set (UCS),
46 a superset of Unicode, occupies an even larger code
47 space\(em31\ bits\(emand the obvious
48 UCS-4 encoding for it (a sequence of 32-bit words) has the same problems.
49
50 The UTF-8 encoding of Unicode and UCS
51 does not have these problems and is the common way in which
52 Unicode is used on UNIX-style operating systems.
53 .SS Properties
54 The UTF-8 encoding has the following nice properties:
55 .TP 0.2i
56 *
57 UCS
58 characters 0x00000000 to 0x0000007f (the classic US-ASCII
59 characters) are encoded simply as bytes 0x00 to 0x7f (ASCII
60 compatibility).
61 This means that files and strings which contain only
62 7-bit ASCII characters have the same encoding under both
63 ASCII
64 and
65 UTF-8 .
66 .TP
67 *
68 All UCS characters greater than 0x7f are encoded as a multibyte sequence
69 consisting only of bytes in the range 0x80 to 0xfd, so no ASCII
70 byte can appear as part of another character and there are no
71 problems with, for example,  \(aq\\0\(aq or \(aq/\(aq.
72 .TP
73 *
74 The lexicographic sorting order of UCS-4 strings is preserved.
75 .TP
76 *
77 All possible 2^31 UCS codes can be encoded using UTF-8.
78 .TP
79 *
80 The bytes 0xc0, 0xc1, 0xfe, and 0xff are never used in the UTF-8 encoding.
81 .TP
82 *
83 The first byte of a multibyte sequence which represents a single non-ASCII
84 UCS character is always in the range 0xc2 to 0xfd and indicates how long
85 this multibyte sequence is.
86 All further bytes in a multibyte sequence
87 are in the range 0x80 to 0xbf.
88 This allows easy resynchronization and
89 makes the encoding stateless and robust against missing bytes.
90 .TP
91 *
92 UTF-8 encoded UCS characters may be up to six bytes long, however the
93 Unicode standard specifies no characters above 0x10ffff, so Unicode characters
94 can be only up to four bytes long in
95 UTF-8.
96 .SS Encoding
97 The following byte sequences are used to represent a character.
98 The sequence to be used depends on the UCS code number of the character:
99 .TP 0.4i
100 0x00000000 \- 0x0000007F:
101 .RI 0 xxxxxxx
102 .TP
103 0x00000080 \- 0x000007FF:
104 .RI 110 xxxxx
105 .RI 10 xxxxxx
106 .TP
107 0x00000800 \- 0x0000FFFF:
108 .RI 1110 xxxx
109 .RI 10 xxxxxx
110 .RI 10 xxxxxx
111 .TP
112 0x00010000 \- 0x001FFFFF:
113 .RI 11110 xxx
114 .RI 10 xxxxxx
115 .RI 10 xxxxxx
116 .RI 10 xxxxxx
117 .TP
118 0x00200000 \- 0x03FFFFFF:
119 .RI 111110 xx
120 .RI 10 xxxxxx
121 .RI 10 xxxxxx
122 .RI 10 xxxxxx
123 .RI 10 xxxxxx
124 .TP
125 0x04000000 \- 0x7FFFFFFF:
126 .RI 1111110 x
127 .RI 10 xxxxxx
128 .RI 10 xxxxxx
129 .RI 10 xxxxxx
130 .RI 10 xxxxxx
131 .RI 10 xxxxxx
132 .PP
133 The
134 .I xxx
135 bit positions are filled with the bits of the character code number in
136 binary representation.
137 Only the shortest possible multibyte sequence
138 which can represent the code number of the character can be used.
139 .PP
140 The UCS code values 0xd800\(en0xdfff (UTF-16 surrogates) as well as 0xfffe and
141 0xffff (UCS noncharacters) should not appear in conforming UTF-8 streams.
142 .SS Example
143 The Unicode character 0xa9 = 1010 1001 (the copyright sign) is encoded
144 in UTF-8 as
145 .PP
146 .RS
147 11000010 10101001 = 0xc2 0xa9
148 .RE
149 .PP
150 and character 0x2260 = 0010 0010 0110 0000 (the "not equal" symbol) is
151 encoded as:
152 .PP
153 .RS
154 11100010 10001001 10100000 = 0xe2 0x89 0xa0
155 .RE
156 .SS Application notes
157 Users have to select a UTF-8 locale, for example with
158 .PP
159 .RS
160 export LANG=en_GB.UTF-8
161 .RE
162 .PP
163 in order to activate the UTF-8 support in applications.
164 .PP
165 Application software that has to be aware of the used character
166 encoding should always set the locale with for example
167 .PP
168 .RS
169 setlocale(LC_CTYPE, "")
170 .RE
171 .PP
172 and programmers can then test the expression
173 .PP
174 .RS
175 strcmp(nl_langinfo(CODESET), "UTF-8") == 0
176 .RE
177 .PP
178 to determine whether a UTF-8 locale has been selected and whether
179 therefore all plaintext standard input and output, terminal
180 communication, plaintext file content, filenames and environment
181 variables are encoded in UTF-8.
182 .PP
183 Programmers accustomed to single-byte encodings such as US-ASCII or ISO 8859
184 have to be aware that two assumptions made so far are no longer valid
185 in UTF-8 locales.
186 Firstly, a single byte does not necessarily correspond any
187 more to a single character.
188 Secondly, since modern terminal emulators in UTF-8
189 mode also support Chinese, Japanese, and Korean
190 double-width characters as well as nonspacing combining characters,
191 outputting a single character does not necessarily advance the cursor
192 by one position as it did in ASCII.
193 Library functions such as
194 .BR mbsrtowcs (3)
195 and
196 .BR wcswidth (3)
197 should be used today to count characters and cursor positions.
198 .PP
199 The official ESC sequence to switch from an ISO 2022
200 encoding scheme (as used for instance by VT100 terminals) to
201 UTF-8 is ESC % G
202 ("\\x1b%G").
203 The corresponding return sequence from
204 UTF-8 to ISO 2022 is ESC % @ ("\\x1b%@").
205 Other ISO 2022 sequences (such as
206 for switching the G0 and G1 sets) are not applicable in UTF-8 mode.
207 .SS Security
208 The Unicode and UCS standards require that producers of UTF-8
209 shall use the shortest form possible, for example, producing a two-byte
210 sequence with first byte 0xc0 is nonconforming.
211 Unicode 3.1 has added the requirement that conforming programs must not accept
212 non-shortest forms in their input.
213 This is for security reasons: if
214 user input is checked for possible security violations, a program
215 might check only for the ASCII
216 version of "/../" or ";" or NUL and overlook that there are many
217 non-ASCII ways to represent these things in a non-shortest UTF-8
218 encoding.
219 .SS Standards
220 ISO/IEC 10646-1:2000, Unicode 3.1, RFC\ 3629, Plan 9.
221 .\" .SH AUTHOR
222 .\" Markus Kuhn <mgk25@cl.cam.ac.uk>
223 .SH SEE ALSO
224 .BR locale (1),
225 .BR nl_langinfo (3),
226 .BR setlocale (3),
227 .BR charsets (7),
228 .BR unicode (7)
229 .SH COLOPHON
230 This page is part of release 3.78 of the Linux
231 .I man-pages
232 project.
233 A description of the project,
234 information about reporting bugs,
235 and the latest version of this page,
236 can be found at
237 \%http://www.kernel.org/doc/man\-pages/.