jdk/make/data/unicodedata/SpecialCasing.txt
author peytoia
Tue, 20 Oct 2015 19:34:04 +0900
changeset 33242 eafa1e90b0e1
parent 31680 88c53c2293b4
permissions -rw-r--r--
8072600: Unicode 8 support Reviewed-by: okutsu
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33242
eafa1e90b0e1 8072600: Unicode 8 support
peytoia
parents: 31680
diff changeset
     1
# SpecialCasing-8.0.0.txt
eafa1e90b0e1 8072600: Unicode 8 support
peytoia
parents: 31680
diff changeset
     2
# Date: 2014-12-16, 23:08:04 GMT [MD]
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
     3
#
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
     4
# Unicode Character Database
31680
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
     5
# Copyright (c) 1991-2014 Unicode, Inc.
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
     6
# For terms of use, see http://www.unicode.org/terms_of_use.html
7247
20bd166a1ad6 6959267: Support Unicode 6.0.0
peytoia
parents: 2497
diff changeset
     7
# For documentation, see http://www.unicode.org/reports/tr44/
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
#
31680
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
     9
# Special Casing
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
31680
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    11
# This file is a supplement to the UnicodeData.txt file. It does not define any
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    12
# properties, but rather provides additional information about the casing of
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    13
# Unicode characters, for situations when casing incurs a change in string length
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    14
# or is dependent on context or locale. For compatibility, the UnicodeData.txt
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    15
# file only contains simple case mappings for characters where they are one-to-one
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    16
# and independent of context and language. The data in this file, combined with
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    17
# the simple case mappings in UnicodeData.txt, defines the full case mappings
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    18
# Lowercase_Mapping (lc), Titlecase_Mapping (tc), and Uppercase_Mapping (uc).
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    19
#
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    20
# Note that the preferred mechanism for defining tailored casing operations is
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    21
# the Unicode Common Locale Data Repository (CLDR). For more information, see the
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    22
# discussion of case mappings and case algorithms in the Unicode Standard.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
# All code points not listed in this file that do not have a simple case mappings
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
# in UnicodeData.txt map to themselves.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
# ================================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# Format
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
# ================================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
# The entries in this file are in the following machine-readable format:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#
31680
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    31
# <code>; <lower>; <title>; <upper>; (<condition_list>;)? # <comment>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#
31680
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    33
# <code>, <lower>, <title>, and <upper> provide the respective full case mappings
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    34
# of <code>, expressed as character values in hex. If there is more than one character,
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    35
# they are separated by spaces. Other than as used to separate elements, spaces are
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    36
# to be ignored.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
#
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
    38
# The <condition_list> is optional. Where present, it consists of one or more language IDs
31680
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    39
# or casing contexts, separated by spaces. In these conditions:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
# - A condition list overrides the normal behavior if all of the listed conditions are true.
31680
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    41
# - The casing context is always the context of the characters in the original string,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
#   NOT in the resulting string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
# - Case distinctions in the condition list are not significant.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
# - Conditions preceded by "Not_" represent the negation of the condition.
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
    45
# The condition list is not represented in the UCD as a formal property.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
#
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
    47
# A language ID is defined by BCP 47, with '-' and '_' treated equivalently.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
#
31680
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    49
# A casing context for a character is defined by Section 3.13 Default Case Algorithms
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
    50
# of The Unicode Standard.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
# Parsers of this file must be prepared to deal with future additions to this format:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
#  * Additional contexts
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
#  * Additional fields
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
# ================================================================================
12300
c795ca195227 7070436: Support Unicode 6.1.0 in JDK 8
peytoia
parents: 7247
diff changeset
    56
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
# ================================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
# Unconditional mappings
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
# ================================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
# The German es-zed is special--the normal mapping is to SS.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
# Note: the titlecase should never occur in practice. It is equal to titlecase(uppercase(<es-zed>))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
00DF; 00DF; 0053 0073; 0053 0053; # LATIN SMALL LETTER SHARP S
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
# Preserve canonical equivalence for I with dot. Turkic is handled below.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
0130; 0069 0307; 0130; 0130; # LATIN CAPITAL LETTER I WITH DOT ABOVE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
# Ligatures
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
FB00; FB00; 0046 0066; 0046 0046; # LATIN SMALL LIGATURE FF
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
FB01; FB01; 0046 0069; 0046 0049; # LATIN SMALL LIGATURE FI
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
FB02; FB02; 0046 006C; 0046 004C; # LATIN SMALL LIGATURE FL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
FB03; FB03; 0046 0066 0069; 0046 0046 0049; # LATIN SMALL LIGATURE FFI
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
FB04; FB04; 0046 0066 006C; 0046 0046 004C; # LATIN SMALL LIGATURE FFL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
FB05; FB05; 0053 0074; 0053 0054; # LATIN SMALL LIGATURE LONG S T
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
FB06; FB06; 0053 0074; 0053 0054; # LATIN SMALL LIGATURE ST
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
0587; 0587; 0535 0582; 0535 0552; # ARMENIAN SMALL LIGATURE ECH YIWN
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
FB13; FB13; 0544 0576; 0544 0546; # ARMENIAN SMALL LIGATURE MEN NOW
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
FB14; FB14; 0544 0565; 0544 0535; # ARMENIAN SMALL LIGATURE MEN ECH
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
FB15; FB15; 0544 056B; 0544 053B; # ARMENIAN SMALL LIGATURE MEN INI
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
FB16; FB16; 054E 0576; 054E 0546; # ARMENIAN SMALL LIGATURE VEW NOW
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
FB17; FB17; 0544 056D; 0544 053D; # ARMENIAN SMALL LIGATURE MEN XEH
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
# No corresponding uppercase precomposed character
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
0149; 0149; 02BC 004E; 02BC 004E; # LATIN SMALL LETTER N PRECEDED BY APOSTROPHE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
0390; 0390; 0399 0308 0301; 0399 0308 0301; # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
03B0; 03B0; 03A5 0308 0301; 03A5 0308 0301; # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
01F0; 01F0; 004A 030C; 004A 030C; # LATIN SMALL LETTER J WITH CARON
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
1E96; 1E96; 0048 0331; 0048 0331; # LATIN SMALL LETTER H WITH LINE BELOW
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
1E97; 1E97; 0054 0308; 0054 0308; # LATIN SMALL LETTER T WITH DIAERESIS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
1E98; 1E98; 0057 030A; 0057 030A; # LATIN SMALL LETTER W WITH RING ABOVE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
1E99; 1E99; 0059 030A; 0059 030A; # LATIN SMALL LETTER Y WITH RING ABOVE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
1E9A; 1E9A; 0041 02BE; 0041 02BE; # LATIN SMALL LETTER A WITH RIGHT HALF RING
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
1F50; 1F50; 03A5 0313; 03A5 0313; # GREEK SMALL LETTER UPSILON WITH PSILI
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
1F52; 1F52; 03A5 0313 0300; 03A5 0313 0300; # GREEK SMALL LETTER UPSILON WITH PSILI AND VARIA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
1F54; 1F54; 03A5 0313 0301; 03A5 0313 0301; # GREEK SMALL LETTER UPSILON WITH PSILI AND OXIA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
1F56; 1F56; 03A5 0313 0342; 03A5 0313 0342; # GREEK SMALL LETTER UPSILON WITH PSILI AND PERISPOMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
1FB6; 1FB6; 0391 0342; 0391 0342; # GREEK SMALL LETTER ALPHA WITH PERISPOMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
1FC6; 1FC6; 0397 0342; 0397 0342; # GREEK SMALL LETTER ETA WITH PERISPOMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
1FD2; 1FD2; 0399 0308 0300; 0399 0308 0300; # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND VARIA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
1FD3; 1FD3; 0399 0308 0301; 0399 0308 0301; # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
1FD6; 1FD6; 0399 0342; 0399 0342; # GREEK SMALL LETTER IOTA WITH PERISPOMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
1FD7; 1FD7; 0399 0308 0342; 0399 0308 0342; # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND PERISPOMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
1FE2; 1FE2; 03A5 0308 0300; 03A5 0308 0300; # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND VARIA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
1FE3; 1FE3; 03A5 0308 0301; 03A5 0308 0301; # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
1FE4; 1FE4; 03A1 0313; 03A1 0313; # GREEK SMALL LETTER RHO WITH PSILI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
1FE6; 1FE6; 03A5 0342; 03A5 0342; # GREEK SMALL LETTER UPSILON WITH PERISPOMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
1FE7; 1FE7; 03A5 0308 0342; 03A5 0308 0342; # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND PERISPOMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
1FF6; 1FF6; 03A9 0342; 03A9 0342; # GREEK SMALL LETTER OMEGA WITH PERISPOMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
7247
20bd166a1ad6 6959267: Support Unicode 6.0.0
peytoia
parents: 2497
diff changeset
   115
# IMPORTANT-when iota-subscript (0345) is uppercased or titlecased,
20bd166a1ad6 6959267: Support Unicode 6.0.0
peytoia
parents: 2497
diff changeset
   116
#  the result will be incorrect unless the iota-subscript is moved to the end
20bd166a1ad6 6959267: Support Unicode 6.0.0
peytoia
parents: 2497
diff changeset
   117
#  of any sequence of combining marks. Otherwise, the accents will go on the capital iota.
20bd166a1ad6 6959267: Support Unicode 6.0.0
peytoia
parents: 2497
diff changeset
   118
#  This process can be achieved by first transforming the text to NFC before casing.
20bd166a1ad6 6959267: Support Unicode 6.0.0
peytoia
parents: 2497
diff changeset
   119
#  E.g. <alpha><iota_subscript><acute> is uppercased to <ALPHA><acute><IOTA>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
31680
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
   121
# The following cases are already in the UnicodeData.txt file, so are only commented here.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
# 0345; 0345; 0345; 0399; # COMBINING GREEK YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
# All letters with YPOGEGRAMMENI (iota-subscript) or PROSGEGRAMMENI (iota adscript)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
# have special uppercases.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
# Note: characters with PROSGEGRAMMENI are actually titlecase, not uppercase!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
1F80; 1F80; 1F88; 1F08 0399; # GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
1F81; 1F81; 1F89; 1F09 0399; # GREEK SMALL LETTER ALPHA WITH DASIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
1F82; 1F82; 1F8A; 1F0A 0399; # GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
1F83; 1F83; 1F8B; 1F0B 0399; # GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
1F84; 1F84; 1F8C; 1F0C 0399; # GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
1F85; 1F85; 1F8D; 1F0D 0399; # GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
1F86; 1F86; 1F8E; 1F0E 0399; # GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
1F87; 1F87; 1F8F; 1F0F 0399; # GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
1F88; 1F80; 1F88; 1F08 0399; # GREEK CAPITAL LETTER ALPHA WITH PSILI AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
1F89; 1F81; 1F89; 1F09 0399; # GREEK CAPITAL LETTER ALPHA WITH DASIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
1F8A; 1F82; 1F8A; 1F0A 0399; # GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
1F8B; 1F83; 1F8B; 1F0B 0399; # GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
1F8C; 1F84; 1F8C; 1F0C 0399; # GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
1F8D; 1F85; 1F8D; 1F0D 0399; # GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
1F8E; 1F86; 1F8E; 1F0E 0399; # GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
1F8F; 1F87; 1F8F; 1F0F 0399; # GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
1F90; 1F90; 1F98; 1F28 0399; # GREEK SMALL LETTER ETA WITH PSILI AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
1F91; 1F91; 1F99; 1F29 0399; # GREEK SMALL LETTER ETA WITH DASIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
1F92; 1F92; 1F9A; 1F2A 0399; # GREEK SMALL LETTER ETA WITH PSILI AND VARIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
1F93; 1F93; 1F9B; 1F2B 0399; # GREEK SMALL LETTER ETA WITH DASIA AND VARIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
1F94; 1F94; 1F9C; 1F2C 0399; # GREEK SMALL LETTER ETA WITH PSILI AND OXIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
1F95; 1F95; 1F9D; 1F2D 0399; # GREEK SMALL LETTER ETA WITH DASIA AND OXIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
1F96; 1F96; 1F9E; 1F2E 0399; # GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
1F97; 1F97; 1F9F; 1F2F 0399; # GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
1F98; 1F90; 1F98; 1F28 0399; # GREEK CAPITAL LETTER ETA WITH PSILI AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
1F99; 1F91; 1F99; 1F29 0399; # GREEK CAPITAL LETTER ETA WITH DASIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
1F9A; 1F92; 1F9A; 1F2A 0399; # GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
1F9B; 1F93; 1F9B; 1F2B 0399; # GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
1F9C; 1F94; 1F9C; 1F2C 0399; # GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
1F9D; 1F95; 1F9D; 1F2D 0399; # GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
1F9E; 1F96; 1F9E; 1F2E 0399; # GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
1F9F; 1F97; 1F9F; 1F2F 0399; # GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
1FA0; 1FA0; 1FA8; 1F68 0399; # GREEK SMALL LETTER OMEGA WITH PSILI AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
1FA1; 1FA1; 1FA9; 1F69 0399; # GREEK SMALL LETTER OMEGA WITH DASIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
1FA2; 1FA2; 1FAA; 1F6A 0399; # GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
1FA3; 1FA3; 1FAB; 1F6B 0399; # GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
1FA4; 1FA4; 1FAC; 1F6C 0399; # GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
1FA5; 1FA5; 1FAD; 1F6D 0399; # GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
1FA6; 1FA6; 1FAE; 1F6E 0399; # GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
1FA7; 1FA7; 1FAF; 1F6F 0399; # GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
1FA8; 1FA0; 1FA8; 1F68 0399; # GREEK CAPITAL LETTER OMEGA WITH PSILI AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
1FA9; 1FA1; 1FA9; 1F69 0399; # GREEK CAPITAL LETTER OMEGA WITH DASIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
1FAA; 1FA2; 1FAA; 1F6A 0399; # GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
1FAB; 1FA3; 1FAB; 1F6B 0399; # GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
1FAC; 1FA4; 1FAC; 1F6C 0399; # GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
1FAD; 1FA5; 1FAD; 1F6D 0399; # GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
1FAE; 1FA6; 1FAE; 1F6E 0399; # GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
1FAF; 1FA7; 1FAF; 1F6F 0399; # GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
1FB3; 1FB3; 1FBC; 0391 0399; # GREEK SMALL LETTER ALPHA WITH YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
1FBC; 1FB3; 1FBC; 0391 0399; # GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
1FC3; 1FC3; 1FCC; 0397 0399; # GREEK SMALL LETTER ETA WITH YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
1FCC; 1FC3; 1FCC; 0397 0399; # GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
1FF3; 1FF3; 1FFC; 03A9 0399; # GREEK SMALL LETTER OMEGA WITH YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
1FFC; 1FF3; 1FFC; 03A9 0399; # GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   184
# Some characters with YPOGEGRAMMENI also have no corresponding titlecases
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
1FB2; 1FB2; 1FBA 0345; 1FBA 0399; # GREEK SMALL LETTER ALPHA WITH VARIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
1FB4; 1FB4; 0386 0345; 0386 0399; # GREEK SMALL LETTER ALPHA WITH OXIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
1FC2; 1FC2; 1FCA 0345; 1FCA 0399; # GREEK SMALL LETTER ETA WITH VARIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
1FC4; 1FC4; 0389 0345; 0389 0399; # GREEK SMALL LETTER ETA WITH OXIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
1FF2; 1FF2; 1FFA 0345; 1FFA 0399; # GREEK SMALL LETTER OMEGA WITH VARIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
1FF4; 1FF4; 038F 0345; 038F 0399; # GREEK SMALL LETTER OMEGA WITH OXIA AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
1FB7; 1FB7; 0391 0342 0345; 0391 0342 0399; # GREEK SMALL LETTER ALPHA WITH PERISPOMENI AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
1FC7; 1FC7; 0397 0342 0345; 0397 0342 0399; # GREEK SMALL LETTER ETA WITH PERISPOMENI AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
1FF7; 1FF7; 03A9 0342 0345; 03A9 0342 0399; # GREEK SMALL LETTER OMEGA WITH PERISPOMENI AND YPOGEGRAMMENI
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
# ================================================================================
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   198
# Conditional Mappings
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   199
# The remainder of this file provides conditional casing data used to produce 
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   200
# full case mappings.
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   201
# ================================================================================
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   202
# Language-Insensitive Mappings
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   203
# These are characters whose full case mappings do not depend on language, but do
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   204
# depend on context (which characters come before or after). For more information
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   205
# see the header of this file and the Unicode Standard.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
# ================================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
# Special case for final form of sigma
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
03A3; 03C2; 03A3; 03A3; Final_Sigma; # GREEK CAPITAL LETTER SIGMA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
31680
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
   212
# Note: the following cases for non-final are already in the UnicodeData.txt file.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
# 03A3; 03C3; 03A3; 03A3; # GREEK CAPITAL LETTER SIGMA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
# 03C3; 03C3; 03A3; 03A3; # GREEK SMALL LETTER SIGMA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
# 03C2; 03C2; 03A3; 03A3; # GREEK SMALL LETTER FINAL SIGMA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
# Note: the following cases are not included, since they would case-fold in lowercasing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
# 03C3; 03C2; 03A3; 03A3; Final_Sigma; # GREEK SMALL LETTER SIGMA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
# 03C2; 03C3; 03A3; 03A3; Not_Final_Sigma; # GREEK SMALL LETTER FINAL SIGMA
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
# ================================================================================
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   224
# Language-Sensitive Mappings
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   225
# These are characters whose full case mappings depend on language and perhaps also
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   226
# context (which characters come before or after). For more information
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   227
# see the header of this file and the Unicode Standard.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
# ================================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
# Lithuanian
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
# Lithuanian retains the dot in a lowercase i when followed by accents.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
# Remove DOT ABOVE after "i" with upper or titlecase
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
0307; 0307; ; ; lt After_Soft_Dotted; # COMBINING DOT ABOVE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
# Introduce an explicit dot above when lowercasing capital I's and J's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
# whenever there are more accents above.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
# (of the accents used in Lithuanian: grave, acute, tilde above, and ogonek)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
0049; 0069 0307; 0049; 0049; lt More_Above; # LATIN CAPITAL LETTER I
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
004A; 006A 0307; 004A; 004A; lt More_Above; # LATIN CAPITAL LETTER J
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
012E; 012F 0307; 012E; 012E; lt More_Above; # LATIN CAPITAL LETTER I WITH OGONEK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
00CC; 0069 0307 0300; 00CC; 00CC; lt; # LATIN CAPITAL LETTER I WITH GRAVE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
00CD; 0069 0307 0301; 00CD; 00CD; lt; # LATIN CAPITAL LETTER I WITH ACUTE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
0128; 0069 0307 0303; 0128; 0128; lt; # LATIN CAPITAL LETTER I WITH TILDE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
# ================================================================================
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
# Turkish and Azeri
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
# I and i-dotless; I-dot and i are case pairs in Turkish and Azeri
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
# The following rules handle those cases.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
0130; 0069; 0130; 0130; tr; # LATIN CAPITAL LETTER I WITH DOT ABOVE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
0130; 0069; 0130; 0130; az; # LATIN CAPITAL LETTER I WITH DOT ABOVE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
# When lowercasing, remove dot_above in the sequence I + dot_above, which will turn into i.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
# This matches the behavior of the canonically equivalent I-dot_above
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
0307; ; 0307; 0307; tr After_I; # COMBINING DOT ABOVE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
0307; ; 0307; 0307; az After_I; # COMBINING DOT ABOVE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
# When lowercasing, unless an I is before a dot_above, it turns into a dotless i.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
0049; 0131; 0049; 0049; tr Not_Before_Dot; # LATIN CAPITAL LETTER I
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
0049; 0131; 0049; 0049; az Not_Before_Dot; # LATIN CAPITAL LETTER I
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
# When uppercasing, i turns into a dotted capital I
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
0069; 0069; 0130; 0130; tr; # LATIN SMALL LETTER I
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
0069; 0069; 0130; 0130; az; # LATIN SMALL LETTER I
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
31680
88c53c2293b4 8032446: Support Unicode 7.0.0 in JDK 9
peytoia
parents: 21805
diff changeset
   275
# Note: the following case is already in the UnicodeData.txt file.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
# 0131; 0131; 0049; 0049; tr; # LATIN SMALL LETTER DOTLESS I
2497
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   278
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   279
# EOF
903fd9d785ef 6404304: RFE: Unicode 5.1 support
peytoia
parents: 2
diff changeset
   280