1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.2 $ -->
<section id="mbstring.encodings">
<title>Summaries of supported encodings</title>
<segmentedlist>
<title>Summaries of supported encodings</title>
<segtitle>Name in the IANA character set registry</segtitle>
<segtitle>Underlying character set</segtitle>
<segtitle>Description</segtitle>
<segtitle>Additional note</segtitle>
<seglistitem>
<seg>ISO-10646-UCS-4</seg>
<seg>ISO 10646</seg>
<seg>
The Universal Character Set with 31-bit code space, standardized as UCS-4
by ISO/IEC 10646. It is kept synchronized with the latest version of the
Unicode code map.
</seg>
<seg>
If this name is used in the encoding conversion facility,
the converter attempts to identify by the preceding BOM
(byte order mark)in which endian the subsequent bytes
are represented.
</seg>
</seglistitem>
<seglistitem>
<seg>ISO-10646-UCS-4</seg>
<seg>UCS-4</seg>
<seg>
See above.
</seg>
<seg>
In contrast to <literal>UCS-4</literal>, strings are always assumed
to be in big endian form.
</seg>
</seglistitem>
<seglistitem>
<seg>ISO-10646-UCS-4</seg>
<seg>UCS-4</seg>
<seg>
See above.
</seg>
<seg>
In contrast to <literal>UCS-4</literal>, strings are always assumed
to be in little endian form.
</seg>
</seglistitem>
<seglistitem>
<seg>ISO-10646-UCS-2</seg>
<seg>UCS-2</seg>
<seg>
The Universal Character Set with 16-bit code space, standardized as UCS-2
by ISO/IEC 10646. It is kept synchronized with the latest version of the
unicode code map.
</seg>
<seg>
If this name is used in the encoding conversion facility,
the converter attempts to identify by the preceding BOM
(byte order mark)in which endian the subsequent bytes
are represented.
</seg>
</seglistitem>
<seglistitem>
<seg>ISO-10646-UCS-2</seg>
<seg>UCS-2</seg>
<seg>
See above.
</seg>
<seg>
In contrast to <literal>UCS-2</literal>, strings are always assumed
to be in big endian form.
</seg>
</seglistitem>
<seglistitem>
<seg>ISO-10646-UCS-2</seg>
<seg>UCS-2</seg>
<seg>
See above.
</seg>
<seg>
In contrast to <literal>UCS-2</literal>, strings are always assumed
to be in little endian form.
</seg>
</seglistitem>
<seglistitem>
<seg>UTF-32</seg>
<seg>Unicode</seg>
<seg>
Unicode Transformation Format of 32-bit unit width, whose encoding space
refers to the Unicode's codeset standard. This encoding scheme wasn't
identical to UCS-4 because the code space of Unicode were limited to
a 21-bit value.
</seg>
<seg>
If this name is used in the encoding conversion facility,
the converter attempts to identify by the preceding BOM
(byte order mark)in which endian the subsequent bytes
are represented.
</seg>
</seglistitem>
<seglistitem>
<seg>UTF-32BE</seg>
<seg>Unicode</seg>
<seg>See above</seg>
<seg>
In contrast to <literal>UTF-32</literal>, strings are always assumed
to be in big endian form.
</seg>
</seglistitem>
<seglistitem>
<seg>UTF-32LE</seg>
<seg>Unicode</seg>
<seg>See above</seg>
<seg>
In contrast to <literal>UTF-32</literal>, strings are always assumed
to be in little endian form.
</seg>
</seglistitem>
<seglistitem>
<seg>UTF-16</seg>
<seg>Unicode</seg>
<seg>
Unicode Transformation Format of 16-bit unit width. It's worth a note
that UTF-16 is no longer the same specification as UCS-2 because the
surrogate mechanism has been introduced since Unicode 2.0 and
UTF-16 now refers to a 21-bit code space.
</seg>
<seg>
If this name is used in the encoding conversion facility,
the converter attempts to identify by the preceding BOM
(byte order mark)in which endian the subsequent bytes
are represented.
</seg>
</seglistitem>
<seglistitem>
<seg>UTF-16BE</seg>
<seg>Unicode</seg>
<seg>
See above.
</seg>
<seg>
In contrast to <literal>UTF-16</literal>, strings are always assumed
to be in big endian form.
</seg>
</seglistitem>
<seglistitem>
<seg>UTF-16BE</seg>
<seg>Unicode</seg>
<seg>
See above.
</seg>
<seg>
In contrast to <literal>UTF-16</literal>, strings are always assumed
to be in big endian form.
</seg>
</seglistitem>
<seglistitem>
<seg>UTF-8</seg>
<seg>Unicode / UCS</seg>
<seg>
Unicode Transformation Format of 8-bit unit width.
</seg>
<seg>none</seg>
</seglistitem>
<seglistitem>
<seg>UTF-7</seg>
<seg>Unicode</seg>
<seg>
A mail-safe transformation format of Unicode, specified in
<ulink url="&url.rfc;2152">RFC2152</ulink>.
</seg>
<seg>none</seg>
</seglistitem>
<seglistitem>
<seg>(none)</seg>
<seg>Unicode</seg>
<seg>
A variant of UTF-7 which is specialized for use in the
<ulink url="&url.rfc;3501">IMAP protocol</ulink>.
</seg>
<seg>none</seg>
</seglistitem>
<seglistitem>
<seg>
US-ASCII (preferred MIME name) / iso-ir-6 / ANSI_X3.4-1986 /
ISO_646.irv:1991 / ASCII / ISO646-US / us / IBM367 / CP367 / csASCII
</seg>
<seg>ASCII / ISO 646</seg>
<seg>
American Standard Code for Information Interchange is a commonly-used
7-bit encoding. Also standardized as an international standard, ISO 646.
</seg>
<seg>(none)</seg>
</seglistitem>
<seglistitem>
<seg>
EUC-JP (preferred MIME name) /
Extended_UNIX_Code_Packed_Format_for_Japanese / csEUCPkdFmtJapanese
</seg>
<seg>
Compound of US-ASCII / JIS X0201:1997 (hankaku kana part) /
JIS X0208:1990 / JIS X0212:1990
</seg>
<seg>
As you see the name is derived from an abbreviation of Extended UNIX Code
Packed Format for Japanese, this encoding is mostly used on UNIX or
alike platforms. The original encoding scheme, Extended UNIX Code, is
designed on the basis of ISO 2022.
</seg>
<seg>
The character set referred to by EUC-JP is different to IBM932 / CP932,
which are used by OS/2® and Microsoft® Windows®.
For information interchange with those platforms, use EUCJP-WIN instead.
</seg>
</seglistitem>
<seglistitem>
<seg>Shift_JIS (preferred MIME name) / MS_Kanji / csShift_JIS</seg>
<seg>Compound of JIS X0201:1997 / JIS X0208:1997</seg>
<seg>
Shift_JIS was developed in early 80's, at the time personal Japanese word
processors were brought into the market, in order to maintain
compatiblities with the legacy encoding scheme JIS X 0201:1976.
According to the IANA definition the codeset of Shift_JIS is slightly
different to IBM932 / CP932. However, the names "SJIS" / "Shift_JIS" are
often wrongly used to refer to these codesets.
</seg>
<seg>For the CP932 codemap, use SJIS-WIN instead.</seg>
</seglistitem>
<seglistitem>
<seg>(none)</seg>
<seg>
Compound of JIS X0201:1997 / JIS X0208:1997 / IBM extensions / NEC extensions
</seg>
<seg>
While this "encoding" uses the same encoding scheme as EUC-JP,
the underlying character set is different. That is, some code points map
to different characters than EUC-JP.
</seg>
<seg>none</seg>
</seglistitem>
<seglistitem>
<seg>Windows-31J / csWindows31J</seg>
<seg>
Compound of JIS X0201:1997 / JIS X0208:1997 / IBM extensions / NEC extensions
</seg>
<seg>
While this "encoding" uses the same encoding scheme as
Shift_JIS, the underlying character set is different. That means some code
points map to different characters than Shift_JIS.
</seg>
<seg>(none)</seg>
</seglistitem>
<seglistitem>
<seg>ISO-2022-JP (preferred MIME name) / csISO2022JP</seg>
<seg>
US-ASCII / JIS X0201:1976 / JIS X0208:1978 / JIS X0208:1983
</seg>
<seg><ulink url="&url.rfc;1468">RFC1468</ulink></seg>
<seg>(none)</seg>
</seglistitem>
<seglistitem>
<seg>JIS</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-1</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-2</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-3</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-4</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-5</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-6</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-7</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-8</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-9</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-10</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-13</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-14</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-8859-15</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>byte2be</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>byte2le</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>byte4be</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>byte4le</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>BASE64</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>HTML-ENTITIES</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>7bit</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>8bit</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>EUC-CN</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>CP936</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>HZ</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>EUC-TW</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>CP950</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>BIG-5</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>EUC-KR</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>UHC (CP949)</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>ISO-2022-KR</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>Windows-1251 (CP1251)</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>Windows-1252 (CP1252)</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>CP866 (IBM866)</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
<seglistitem>
<seg>KOI8-R</seg>
<seg></seg>
<seg></seg>
<seg></seg>
</seglistitem>
</segmentedlist>
</section>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
|