mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-1834 Update the CCSID numbers for Unicode
X-SVN-Rev: 9317
This commit is contained in:
parent
65cd4eb2d3
commit
bf4890e0c0
3 changed files with 12 additions and 12 deletions
|
@ -540,7 +540,7 @@ static const UConverterImpl _UTF16LEImpl={
|
|||
static const UConverterStaticData _UTF16LEStaticData={
|
||||
sizeof(UConverterStaticData),
|
||||
"UTF-16LE",
|
||||
1200, UCNV_IBM, UCNV_UTF16_LittleEndian, 2, 2,
|
||||
1202, UCNV_IBM, UCNV_UTF16_LittleEndian, 2, 2,
|
||||
{ 0xfd, 0xff, 0, 0 },2,FALSE,FALSE,
|
||||
0,
|
||||
0,
|
||||
|
@ -767,7 +767,7 @@ static const UConverterImpl _UTF16Impl = {
|
|||
static const UConverterStaticData _UTF16StaticData = {
|
||||
sizeof(UConverterStaticData),
|
||||
"UTF-16",
|
||||
1200, /* ### TODO review correctness of all Unicode CCSIDs */
|
||||
0, /* ### TODO review correctness of all Unicode CCSIDs */
|
||||
UCNV_IBM, UCNV_UTF16, 2, 2,
|
||||
#if U_IS_BIG_ENDIAN
|
||||
{ 0xff, 0xfd, 0, 0 }, 2,
|
||||
|
|
|
@ -1042,7 +1042,7 @@ static const UConverterImpl _UTF32LEImpl = {
|
|||
static const UConverterStaticData _UTF32LEStaticData = {
|
||||
sizeof(UConverterStaticData),
|
||||
"UTF-32LE",
|
||||
1232,
|
||||
1234,
|
||||
UCNV_IBM, UCNV_UTF32_LittleEndian, 4, 4,
|
||||
{ 0xfd, 0xff, 0, 0 }, 4, FALSE, FALSE,
|
||||
0,
|
||||
|
@ -1298,7 +1298,7 @@ static const UConverterImpl _UTF32Impl = {
|
|||
static const UConverterStaticData _UTF32StaticData = {
|
||||
sizeof(UConverterStaticData),
|
||||
"UTF-32",
|
||||
1232, /* ### TODO review correctness of all Unicode CCSIDs */
|
||||
0, /* ### TODO review correctness of all Unicode CCSIDs */
|
||||
UCNV_IBM, UCNV_UTF32, 4, 4,
|
||||
#if U_IS_BIG_ENDIAN
|
||||
{ 0, 0, 0xff, 0xfd }, 4,
|
||||
|
|
|
@ -99,20 +99,20 @@
|
|||
|
||||
# Fully algorithmic converters
|
||||
|
||||
UTF-8 { IANA* MIME* } ibm-1208 cp1208
|
||||
UTF-8 { IANA* MIME* } ibm-1208 ibm-1209 ibm-5304 ibm-5305 cp1208 cp65001
|
||||
|
||||
# The ICU 2.2 UTF-16/32 converters detect and write a BOM.
|
||||
UTF-16 { IANA* MIME* } ISO-10646-UCS-2 { IANA } csUnicode ibm-17584 ibm-13488 ibm-1200 cp1200 ucs-2
|
||||
UTF-16BE { IANA* MIME* } UTF16_BigEndian x-utf-16be
|
||||
UTF-16LE { IANA* MIME* } UTF16_LittleEndian x-utf-16le
|
||||
UTF-16 { IANA* MIME* } ISO-10646-UCS-2 { IANA } csUnicode ucs-2
|
||||
UTF-16BE { IANA* MIME* } UTF16_BigEndian x-utf-16be ibm-1200 ibm-1201 ibm-5297 ibm-13488 ibm-17584 cp1201
|
||||
UTF-16LE { IANA* MIME* } UTF16_LittleEndian x-utf-16le ibm-1202 ibm-13490 ibm-17586 cp1200
|
||||
|
||||
# ICU-specific names for special uses
|
||||
UTF16_PlatformEndian
|
||||
UTF16_OppositeEndian
|
||||
|
||||
UTF-32 { IANA* MIME* } ISO-10646-UCS-4 { IANA } csUCS4 ucs-4 ibm-1232
|
||||
UTF-32BE { IANA* } UTF32_BigEndian
|
||||
UTF-32LE { IANA* } UTF32_LittleEndian
|
||||
UTF-32 { IANA* MIME* } ISO-10646-UCS-4 { IANA } csUCS4 ucs-4
|
||||
UTF-32BE { IANA* } UTF32_BigEndian ibm-1232 ibm-1233
|
||||
UTF-32LE { IANA* } UTF32_LittleEndian ibm-1234
|
||||
|
||||
# ICU-specific names for special uses
|
||||
UTF32_PlatformEndian
|
||||
|
@ -127,7 +127,7 @@ UTF32_OppositeEndian
|
|||
# By choosing the option "version=1", set O will be escaped instead.
|
||||
# For example:
|
||||
# utf7Converter=ucnv_open("UTF-7,version=1");
|
||||
UTF-7 { IANA* MIME* }
|
||||
UTF-7 { IANA* MIME* } cp65000
|
||||
|
||||
SCSU { IANA* }
|
||||
BOCU-1
|
||||
|
|
Loading…
Add table
Reference in a new issue