.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "PERLUNIPROPS 1" .TH PERLUNIPROPS 1 "2023-11-25" "perl v5.36.0" "Perl Programmers Reference Guide" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" perluniprops \- Index of Unicode Version 14.0.0 character properties in Perl .SH "DESCRIPTION" .IX Header "DESCRIPTION" This document provides information about the portion of the Unicode database that deals with character properties, that is the portion that is defined on single code points. (\*(L"Other information in the Unicode data base\*(R" below briefly mentions other data that Unicode provides.) .PP Perl can provide access to all non-provisional Unicode character properties, though not all are enabled by default. The omitted ones are the Unihan properties and certain deprecated or Unicode-internal properties. (An installation may choose to recompile Perl's tables to change this. See \*(L"Unicode character properties that are \s-1NOT\s0 accepted by Perl\*(R".) .PP For most purposes, access to Unicode properties from the Perl core is through regular expression matches, as described in the next section. For some special purposes, and to access the properties that are not suitable for regular expression matching, all the Unicode character properties that Perl handles are accessible via the standard Unicode::UCD module, as described in the section \*(L"Properties accessible through Unicode::UCD\*(R". .PP Perl also provides some additional extensions and short-cut synonyms for Unicode properties. .PP This document merely lists all available properties and does not attempt to explain what each property really means. There is a brief description of each Perl extension; see \*(L"Other Properties\*(R" in perlunicode for more information on these. There is some detail about Blocks, Scripts, General_Category, and Bidi_Class in perlunicode, but to find out about the intricacies of the official Unicode properties, refer to the Unicode standard. A good starting place is . .PP Note that you can define your own properties; see \&\*(L"User-Defined Character Properties\*(R" in perlunicode. .ie n .SH "Properties accessible through ""\ep{}"" and ""\eP{}""" .el .SH "Properties accessible through \f(CW\ep{}\fP and \f(CW\eP{}\fP" .IX Header "Properties accessible through p{} and P{}" The Perl regular expression \f(CW\*(C`\ep{}\*(C'\fR and \f(CW\*(C`\eP{}\*(C'\fR constructs give access to most of the Unicode character properties. The table below shows all these constructs, both single and compound forms. .PP \&\fBCompound forms\fR consist of two components, separated by an equals sign or a colon. The first component is the property name, and the second component is the particular value of the property to match against, for example, \&\f(CW\*(C`\ep{Script_Extensions: Greek}\*(C'\fR and \f(CW\*(C`\ep{Script_Extensions=Greek}\*(C'\fR both mean to match characters whose Script_Extensions property value is Greek. (\f(CW\*(C`Script_Extensions\*(C'\fR is an improved version of the \f(CW\*(C`Script\*(C'\fR property.) .PP \&\fBSingle forms\fR, like \f(CW\*(C`\ep{Greek}\*(C'\fR, are mostly Perl-defined shortcuts for their equivalent compound forms. The table shows these equivalences. (In our example, \f(CW\*(C`\ep{Greek}\*(C'\fR is a just a shortcut for \&\f(CW\*(C`\ep{Script_Extensions=Greek}\*(C'\fR). There are also a few Perl-defined single forms that are not shortcuts for a compound form. One such is \f(CW\*(C`\ep{Word}\*(C'\fR. These are also listed in the table. .PP In parsing these constructs, Perl always ignores Upper/lower case differences everywhere within the {braces}. Thus \f(CW\*(C`\ep{Greek}\*(C'\fR means the same thing as \&\f(CW\*(C`\ep{greek}\*(C'\fR. But note that changing the case of the \f(CW"p"\fR or \f(CW"P"\fR before the left brace completely changes the meaning of the construct, from \*(L"match\*(R" (for \f(CW\*(C`\ep{}\*(C'\fR) to \*(L"doesn't match\*(R" (for \f(CW\*(C`\eP{}\*(C'\fR). Casing in this document is for improved legibility. .PP Also, white space, hyphens, and underscores are normally ignored everywhere between the {braces}, and hence can be freely added or removed even if the \f(CW\*(C`/x\*(C'\fR modifier hasn't been specified on the regular expression. But in the table below a '\fBT\fR' at the beginning of an entry means that tighter (stricter) rules are used for that entry: .RS 4 .ie n .IP "Single form (""\ep{name}"") tighter rules:" 4 .el .IP "Single form (\f(CW\ep{name}\fR) tighter rules:" 4 .IX Item "Single form (p{name}) tighter rules:" White space, hyphens, and underscores \s-1ARE\s0 significant except for: .RS 4 .IP "\(bu" 4 white space adjacent to a non-word character .IP "\(bu" 4 underscores separating digits in numbers .RE .RS 4 .Sp That means, for example, that you can freely add or remove white space adjacent to (but within) the braces without affecting the meaning. .RE .ie n .IP "Compound form (""\ep{name=value}"" or ""\ep{name:value}"") tighter rules:" 4 .el .IP "Compound form (\f(CW\ep{name=value}\fR or \f(CW\ep{name:value}\fR) tighter rules:" 4 .IX Item "Compound form (p{name=value} or p{name:value}) tighter rules:" The tighter rules given above for the single form apply to everything to the right of the colon or equals; the looser rules still apply to everything to the left. .Sp That means, for example, that you can freely add or remove white space adjacent to (but within) the braces and the colon or equal sign. .RE .RS 4 .RE .PP Some properties are considered obsolete by Unicode, but still available. There are several varieties of obsolescence: .RS 4 .IP "Stabilized" 4 .IX Item "Stabilized" A property may be stabilized. Such a determination does not indicate that the property should or should not be used; instead it is a declaration that the property will not be maintained nor extended for newly encoded characters. Such properties are marked with an '\fBS\fR' in the table. .IP "Deprecated" 4 .IX Item "Deprecated" A property may be deprecated, perhaps because its original intent has been replaced by another property, or because its specification was somehow defective. This means that its use is strongly discouraged, so much so that a warning will be issued if used, unless the regular expression is in the scope of a \f(CW\*(C`no warnings \*(Aqdeprecated\*(Aq\*(C'\fR statement. A '\fBD\fR' flags each such entry in the table, and the entry there for the longest, most descriptive version of the property will give the reason it is deprecated, and perhaps advice. Perl may issue such a warning, even for properties that aren't officially deprecated by Unicode, when there used to be characters or code points that were matched by them, but no longer. This is to warn you that your program may not work like it did on earlier Unicode releases. .Sp A deprecated property may be made unavailable in a future Perl version, so it is best to move away from them. .Sp A deprecated property may also be stabilized, but this fact is not shown. .IP "Obsolete" 4 .IX Item "Obsolete" Properties marked with an '\fBO\fR' in the table are considered (plain) obsolete. Generally this designation is given to properties that Unicode once used for internal purposes (but not any longer). .IP "Discouraged" 4 .IX Item "Discouraged" This is not actually a Unicode-specified obsolescence, but applies to certain Perl extensions that are present for backwards compatibility, but are discouraged from being used. These are not obsolete, but their meanings are not stable. Future Unicode versions could force any of these extensions to be removed without warning, replaced by another property with the same name that means something different. An '\fBX\fR' flags each such entry in the table. Use the equivalent shown instead. .Sp In particular, matches in the Block property have single forms defined by Perl that begin with \f(CW"In_"\fR, \f(CW\*(C`"Is_\*(C'\fR, or even with no prefix at all, Like all \fB\s-1DISCOURAGED\s0\fR forms, these are not stable. For example, \&\f(CW\*(C`\ep{Block=Deseret}\*(C'\fR can currently be written as \f(CW\*(C`\ep{In_Deseret}\*(C'\fR, \&\f(CW\*(C`\ep{Is_Deseret}\*(C'\fR, or \f(CW\*(C`\ep{Deseret}\*(C'\fR. But, a new Unicode version may come along that would force Perl to change the meaning of one or more of these, and your program would no longer be correct. Currently there are no such conflicts with the form that begins \f(CW"In_"\fR, but there are many with the other two shortcuts, and Unicode continues to define new properties that begin with \f(CW"In"\fR, so it's quite possible that a conflict will occur in the future. The compound form is guaranteed to not become obsolete, and its meaning is clearer anyway. See \*(L"Blocks\*(R" in perlunicode for more information about this. .Sp User-defined properties must begin with \*(L"In\*(R" or \*(L"Is\*(R". These override any Unicode property of the same name. .RE .RS 4 .RE .PP The table below has two columns. The left column contains the \f(CW\*(C`\ep{}\*(C'\fR constructs to look up, possibly preceded by the flags mentioned above; and the right column contains information about them, like a description, or synonyms. The table shows both the single and compound forms for each property that has them. If the left column is a short name for a property, the right column will give its longer, more descriptive name; and if the left column is the longest name, the right column will show any equivalent shortest name, in both single and compound forms if applicable. .PP If braces are not needed to specify a property (e.g., \f(CW\*(C`\epL\*(C'\fR), the left column contains both forms, with and without braces. .PP The right column will also caution you if a property means something different than what might normally be expected. .PP All single forms are Perl extensions; a few compound forms are as well, and are noted as such. .PP Numbers in (parentheses) indicate the total number of Unicode code points matched by the property. For the entries that give the longest, most descriptive version of the property, the count is followed by a list of some of the code points matched by it. The list includes all the matched characters in the 0\-255 range, enclosed in the familiar [brackets] the same as a regular expression bracketed character class. Following that, the next few higher matching ranges are also given. To avoid visual ambiguity, the \s-1SPACE\s0 character is represented as \f(CW\*(C`\ex20\*(C'\fR. .PP For emphasis, those properties that match no code points at all are listed as well in a separate section following the table. .PP Most properties match the same code points regardless of whether \f(CW"/i"\fR case-insensitive matching is specified or not. But a few properties are affected. These are shown with the notation \f(CW\*(C`(/i= \f(CIother_property\f(CW)\*(C'\fR in the second column. Under case-insensitive matching they match the same code pode points as the property \fIother_property\fR. .PP There is no description given for most non-Perl defined properties (See for that). .PP For compactness, '\fB*\fR' is used as a wildcard instead of showing all possible combinations. For example, entries like: .PP .Vb 1 \& \ep{Gc: *} \ep{General_Category: *} .Ve .PP mean that 'Gc' is a synonym for 'General_Category', and anything that is valid for the latter is also valid for the former. Similarly, .PP .Vb 1 \& \ep{Is_*} \ep{*} .Ve .PP means that if and only if, for example, \f(CW\*(C`\ep{Foo}\*(C'\fR exists, then \&\f(CW\*(C`\ep{Is_Foo}\*(C'\fR and \f(CW\*(C`\ep{IsFoo}\*(C'\fR are also valid and all mean the same thing. And similarly, \f(CW\*(C`\ep{Foo=Bar}\*(C'\fR means the same as \f(CW\*(C`\ep{Is_Foo=Bar}\*(C'\fR and \&\f(CW\*(C`\ep{IsFoo=Bar}\*(C'\fR. \*(L"*\*(R" here is restricted to something not beginning with an underscore. .PP Also, in binary properties, 'Yes', 'T', and 'True' are all synonyms for 'Y'. And 'No', 'F', and 'False' are all synonyms for 'N'. The table shows 'Y*' and \&'N*' to indicate this, and doesn't have separate entries for the other possibilities. Note that not all properties which have values 'Yes' and 'No' are binary, and they have all their values spelled out without using this wild card, and a \f(CW\*(C`NOT\*(C'\fR clause in their description that highlights their not being binary. These also require the compound form to match them, whereas true binary properties have both single and compound forms available. .PP Note that all non-essential underscores are removed in the display of the short names below. .PP \&\fBLegend summary:\fR .IP "\fB*\fR is a wild-card" 4 .IX Item "* is a wild-card" .PD 0 .IP "\fB(\ed+)\fR in the info column gives the number of Unicode code points matched by this property." 4 .IX Item "(d+) in the info column gives the number of Unicode code points matched by this property." .IP "\fBD\fR means this is deprecated." 4 .IX Item "D means this is deprecated." .IP "\fBO\fR means this is obsolete." 4 .IX Item "O means this is obsolete." .IP "\fBS\fR means this is stabilized." 4 .IX Item "S means this is stabilized." .IP "\fBT\fR means tighter (stricter) name matching applies." 4 .IX Item "T means tighter (stricter) name matching applies." .IP "\fBX\fR means use of this form is discouraged, and may not be stable." 4 .IX Item "X means use of this form is discouraged, and may not be stable." .PD .PP .Vb 1 \& NAME INFO \& \& \ep{Adlam} \ep{Script_Extensions=Adlam} (Short: \& \ep{Adlm}; NOT \ep{Block=Adlam}) (90) \& \ep{Adlm} \ep{Adlam} (= \ep{Script_Extensions=Adlam}) \& (NOT \ep{Block=Adlam}) (90) \& X \ep{Aegean_Numbers} \ep{Block=Aegean_Numbers} (64) \& T \ep{Age: 1.1} \ep{Age=V1_1} (33_979) \& \ep{Age: V1_1} Code point\*(Aqs usage introduced in version \& 1.1 (33_979: U+0000..01F5, U+01FA..0217, \& U+0250..02A8, U+02B0..02DE, \& U+02E0..02E9, U+0300..0345 ...) \& T \ep{Age: 2.0} \ep{Age=V2_0} (144_521) \& \ep{Age: V2_0} Code point\*(Aqs usage was introduced in \& version 2.0; See also Property \& \*(AqPresent_In\*(Aq (144_521: U+0591..05A1, \& U+05A3..05AF, U+05C4, U+0F00..0F47, \& U+0F49..0F69, U+0F71..0F8B ...) \& T \ep{Age: 2.1} \ep{Age=V2_1} (2) \& \ep{Age: V2_1} Code point\*(Aqs usage was introduced in \& version 2.1; See also Property \& \*(AqPresent_In\*(Aq (2: U+20AC, U+FFFC) \& T \ep{Age: 3.0} \ep{Age=V3_0} (10_307) \& \ep{Age: V3_0} Code point\*(Aqs usage was introduced in \& version 3.0; See also Property \& \*(AqPresent_In\*(Aq (10_307: U+01F6..01F9, \& U+0218..021F, U+0222..0233, \& U+02A9..02AD, U+02DF, U+02EA..02EE ...) \& T \ep{Age: 3.1} \ep{Age=V3_1} (44_978) \& \ep{Age: V3_1} Code point\*(Aqs usage was introduced in \& version 3.1; See also Property \& \*(AqPresent_In\*(Aq (44_978: U+03F4..03F5, \& U+FDD0..FDEF, U+10300..1031E, \& U+10320..10323, U+10330..1034A, \& U+10400..10425 ...) \& T \ep{Age: 3.2} \ep{Age=V3_2} (1016) \& \ep{Age: V3_2} Code point\*(Aqs usage was introduced in \& version 3.2; See also Property \& \*(AqPresent_In\*(Aq (1016: U+0220, U+034F, \& U+0363..036F, U+03D8..03D9, U+03F6, \& U+048A..048B ...) \& T \ep{Age: 4.0} \ep{Age=V4_0} (1226) \& \ep{Age: V4_0} Code point\*(Aqs usage was introduced in \& version 4.0; See also Property \& \*(AqPresent_In\*(Aq (1226: U+0221, \& U+0234..0236, U+02AE..02AF, \& U+02EF..02FF, U+0350..0357, U+035D..035F \& ...) \& T \ep{Age: 4.1} \ep{Age=V4_1} (1273) \& \ep{Age: V4_1} Code point\*(Aqs usage was introduced in \& version 4.1; See also Property \& \*(AqPresent_In\*(Aq (1273: U+0237..0241, \& U+0358..035C, U+03FC..03FF, \& U+04F6..04F7, U+05A2, U+05C5..05C7 ...) \& T \ep{Age: 5.0} \ep{Age=V5_0} (1369) \& \ep{Age: V5_0} Code point\*(Aqs usage was introduced in \& version 5.0; See also Property \& \*(AqPresent_In\*(Aq (1369: U+0242..024F, \& U+037B..037D, U+04CF, U+04FA..04FF, \& U+0510..0513, U+05BA ...) \& T \ep{Age: 5.1} \ep{Age=V5_1} (1624) \& \ep{Age: V5_1} Code point\*(Aqs usage was introduced in \& version 5.1; See also Property \& \*(AqPresent_In\*(Aq (1624: U+0370..0373, \& U+0376..0377, U+03CF, U+0487, \& U+0514..0523, U+0606..060A ...) \& T \ep{Age: 5.2} \ep{Age=V5_2} (6648) \& \ep{Age: V5_2} Code point\*(Aqs usage was introduced in \& version 5.2; See also Property \& \*(AqPresent_In\*(Aq (6648: U+0524..0525, \& U+0800..082D, U+0830..083E, U+0900, \& U+094E, U+0955 ...) \& T \ep{Age: 6.0} \ep{Age=V6_0} (2088) \& \ep{Age: V6_0} Code point\*(Aqs usage was introduced in \& version 6.0; See also Property \& \*(AqPresent_In\*(Aq (2088: U+0526..0527, \& U+0620, U+065F, U+0840..085B, U+085E, \& U+093A..093B ...) \& T \ep{Age: 6.1} \ep{Age=V6_1} (732) \& \ep{Age: V6_1} Code point\*(Aqs usage was introduced in \& version 6.1; See also Property \& \*(AqPresent_In\*(Aq (732: U+058F, U+0604, \& U+08A0, U+08A2..08AC, U+08E4..08FE, \& U+0AF0 ...) \& T \ep{Age: 6.2} \ep{Age=V6_2} (1) \& \ep{Age: V6_2} Code point\*(Aqs usage was introduced in \& version 6.2; See also Property \& \*(AqPresent_In\*(Aq (1: U+20BA) \& T \ep{Age: 6.3} \ep{Age=V6_3} (5) \& \ep{Age: V6_3} Code point\*(Aqs usage was introduced in \& version 6.3; See also Property \& \*(AqPresent_In\*(Aq (5: U+061C, U+2066..2069) \& T \ep{Age: 7.0} \ep{Age=V7_0} (2834) \& \ep{Age: V7_0} Code point\*(Aqs usage was introduced in \& version 7.0; See also Property \& \*(AqPresent_In\*(Aq (2834: U+037F, \& U+0528..052F, U+058D..058E, U+0605, \& U+08A1, U+08AD..08B2 ...) \& T \ep{Age: 8.0} \ep{Age=V8_0} (7716) \& \ep{Age: V8_0} Code point\*(Aqs usage was introduced in \& version 8.0; See also Property \& \*(AqPresent_In\*(Aq (7716: U+08B3..08B4, \& U+08E3, U+0AF9, U+0C5A, U+0D5F, U+13F5 \& ...) \& T \ep{Age: 9.0} \ep{Age=V9_0} (7500) \& \ep{Age: V9_0} Code point\*(Aqs usage was introduced in \& version 9.0; See also Property \& \*(AqPresent_In\*(Aq (7500: U+08B6..08BD, \& U+08D4..08E2, U+0C80, U+0D4F, \& U+0D54..0D56, U+0D58..0D5E ...) \& T \ep{Age: 10.0} \ep{Age=V10_0} (8518) \& \ep{Age: V10_0} Code point\*(Aqs usage was introduced in \& version 10.0; See also Property \& \*(AqPresent_In\*(Aq (8518: U+0860..086A, \& U+09FC..09FD, U+0AFA..0AFF, U+0D00, \& U+0D3B..0D3C, U+1CF7 ...) \& T \ep{Age: 11.0} \ep{Age=V11_0} (684) \& \ep{Age: V11_0} Code point\*(Aqs usage was introduced in \& version 11.0; See also Property \& \*(AqPresent_In\*(Aq (684: U+0560, U+0588, \& U+05EF, U+07FD..07FF, U+08D3, U+09FE ...) \& T \ep{Age: 12.0} \ep{Age=V12_0} (554) \& \ep{Age: V12_0} Code point\*(Aqs usage was introduced in \& version 12.0; See also Property \& \*(AqPresent_In\*(Aq (554: U+0C77, U+0E86, \& U+0E89, U+0E8C, U+0E8E..0E93, U+0E98 ...) \& T \ep{Age: 12.1} \ep{Age=V12_1} (1) \& \ep{Age: V12_1} Code point\*(Aqs usage was introduced in \& version 12.1; See also Property \& \*(AqPresent_In\*(Aq (1: U+32FF) \& T \ep{Age: 13.0} \ep{Age=V13_0} (5930) \& \ep{Age: V13_0} Code point\*(Aqs usage was introduced in \& version 13.0; See also Property \& \*(AqPresent_In\*(Aq (5930: U+08BE..08C7, \& U+0B55, U+0D04, U+0D81, U+1ABF..1AC0, \& U+2B97 ...) \& T \ep{Age: 14.0} \ep{Age=V14_0} (838) \& \ep{Age: V14_0} Code point\*(Aqs usage was introduced in \& version 14.0; See also Property \& \*(AqPresent_In\*(Aq (838: U+061D, U+0870..088E, \& U+0890..0891, U+0898..089F, U+08B5, \& U+08C8..08D2 ...) \& \ep{Age: NA} \ep{Age=Unassigned} (829_768 plus all \& above\-Unicode code points) \& \ep{Age: Unassigned} Code point\*(Aqs usage has not been assigned \& in any Unicode release thus far. \& (Short: \ep{Age=NA}) (829_768 plus all above\-Unicode code points: \& U+0378..0379, U+0380..0383, U+038B, \& U+038D, U+03A2, U+0530 ...) \& \ep{Aghb} \ep{Caucasian_Albanian} (= \& \ep{Script_Extensions= \& Caucasian_Albanian}) (NOT \ep{Block= \& Caucasian_Albanian}) (53) \& \ep{AHex} \ep{PosixXDigit} (= \ep{ASCII_Hex_Digit=Y}) \& (22) \& \ep{AHex: *} \ep{ASCII_Hex_Digit: *} \& \ep{Ahom} \ep{Script_Extensions=Ahom} (NOT \ep{Block= \& Ahom}) (65) \& X \ep{Alchemical} \ep{Alchemical_Symbols} (= \ep{Block= \& Alchemical_Symbols}) (128) \& X \ep{Alchemical_Symbols} \ep{Block=Alchemical_Symbols} (Short: \& \ep{InAlchemical}) (128) \& \ep{All} All code points, including those above \& Unicode. Same as qr/./s (1_114_112 plus \& all above\-Unicode code points: \& U+0000..infinity) \& \ep{Alnum} \ep{XPosixAlnum} (134_056) \& \ep{Alpha} \ep{XPosixAlpha} (= \ep{Alphabetic=Y}) \& (133_396) \& \ep{Alpha: *} \ep{Alphabetic: *} \& \ep{Alphabetic} \ep{XPosixAlpha} (= \ep{Alphabetic=Y}) \& (133_396) \& \ep{Alphabetic: N*} (Short: \ep{Alpha=N}, \eP{Alpha}) (980_716 \& plus all above\-Unicode code points: \& [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/0\-9:;<= \& >?\e@\e[\e\e\e]\e^_\`\e{\e|\e}~\ex7f\-\exa9\exab\-\exb4 \& \exb6\-\exb9\exbb\-\exbf\exd7\exf7], \& U+02C2..02C5, U+02D2..02DF, \& U+02E5..02EB, U+02ED, U+02EF..0344 ...) \& \ep{Alphabetic: Y*} (Short: \ep{Alpha=Y}, \ep{Alpha}) (133_396: \& [A\-Za\-z\exaa\exb5\exba\exc0\-\exd6\exd8\-\exf6 \& \exf8\-\exff], U+0100..02C1, U+02C6..02D1, \& U+02E0..02E4, U+02EC, U+02EE ...) \& X \ep{Alphabetic_PF} \ep{Alphabetic_Presentation_Forms} (= \& \ep{Block=Alphabetic_Presentation_Forms}) \& (80) \& X \ep{Alphabetic_Presentation_Forms} \ep{Block= \& Alphabetic_Presentation_Forms} (Short: \& \ep{InAlphabeticPF}) (80) \& \ep{Anatolian_Hieroglyphs} \ep{Script_Extensions= \& Anatolian_Hieroglyphs} (Short: \ep{Hluw}; \& NOT \ep{Block=Anatolian_Hieroglyphs}) \& (583) \& X \ep{Ancient_Greek_Music} \ep{Ancient_Greek_Musical_Notation} (= \& \ep{Block= \& Ancient_Greek_Musical_Notation}) (80) \& X \ep{Ancient_Greek_Musical_Notation} \ep{Block= \& Ancient_Greek_Musical_Notation} (Short: \& \ep{InAncientGreekMusic}) (80) \& X \ep{Ancient_Greek_Numbers} \ep{Block=Ancient_Greek_Numbers} (80) \& X \ep{Ancient_Symbols} \ep{Block=Ancient_Symbols} (64) \& \ep{Any} All Unicode code points (1_114_112: \& U+0000..10FFFF) \& \ep{Arab} \ep{Arabic} (= \ep{Script_Extensions= \& Arabic}) (NOT \ep{Block=Arabic}) (1411) \& \ep{Arabic} \ep{Script_Extensions=Arabic} (Short: \& \ep{Arab}; NOT \ep{Block=Arabic}) (1411) \& X \ep{Arabic_Ext_A} \ep{Arabic_Extended_A} (= \ep{Block= \& Arabic_Extended_A}) (96) \& X \ep{Arabic_Ext_B} \ep{Arabic_Extended_B} (= \ep{Block= \& Arabic_Extended_B}) (48) \& X \ep{Arabic_Extended_A} \ep{Block=Arabic_Extended_A} (Short: \& \ep{InArabicExtA}) (96) \& X \ep{Arabic_Extended_B} \ep{Block=Arabic_Extended_B} (Short: \& \ep{InArabicExtB}) (48) \& X \ep{Arabic_Math} \ep{Arabic_Mathematical_Alphabetic_Symbols} \& (= \ep{Block= \& Arabic_Mathematical_Alphabetic_Symbols}) \& (256) \& X \ep{Arabic_Mathematical_Alphabetic_Symbols} \ep{Block= \& Arabic_Mathematical_Alphabetic_Symbols} \& (Short: \ep{InArabicMath}) (256) \& X \ep{Arabic_PF_A} \ep{Arabic_Presentation_Forms_A} (= \& \ep{Block=Arabic_Presentation_Forms_A}) \& (688) \& X \ep{Arabic_PF_B} \ep{Arabic_Presentation_Forms_B} (= \& \ep{Block=Arabic_Presentation_Forms_B}) \& (144) \& X \ep{Arabic_Presentation_Forms_A} \ep{Block= \& Arabic_Presentation_Forms_A} (Short: \& \ep{InArabicPFA}) (688) \& X \ep{Arabic_Presentation_Forms_B} \ep{Block= \& Arabic_Presentation_Forms_B} (Short: \& \ep{InArabicPFB}) (144) \& X \ep{Arabic_Sup} \ep{Arabic_Supplement} (= \ep{Block= \& Arabic_Supplement}) (48) \& X \ep{Arabic_Supplement} \ep{Block=Arabic_Supplement} (Short: \& \ep{InArabicSup}) (48) \& \ep{Armenian} \ep{Script_Extensions=Armenian} (Short: \& \ep{Armn}; NOT \ep{Block=Armenian}) (96) \& \ep{Armi} \ep{Imperial_Aramaic} (= \& \ep{Script_Extensions=Imperial_Aramaic}) \& (NOT \ep{Block=Imperial_Aramaic}) (31) \& \ep{Armn} \ep{Armenian} (= \ep{Script_Extensions= \& Armenian}) (NOT \ep{Block=Armenian}) (96) \& X \ep{Arrows} \ep{Block=Arrows} (112) \& \ep{ASCII} \ep{Block=Basic_Latin} (128) \& \ep{ASCII_Hex_Digit} \ep{PosixXDigit} (= \ep{ASCII_Hex_Digit=Y}) \& (22) \& \ep{ASCII_Hex_Digit: N*} (Short: \ep{AHex=N}, \eP{AHex}) (1_114_090 \& plus all above\-Unicode code points: \& [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/:;<=>? \& \e@G\-Z\e[\e\e\e]\e^_\`g\-z\e{\e|\e}~\ex7f\-\exff], \& U+0100..infinity) \& \ep{ASCII_Hex_Digit: Y*} (Short: \ep{AHex=Y}, \ep{AHex}) (22: [0\-9A\- \& Fa\-f]) \& \ep{Assigned} All assigned code points (284_278: \& U+0000..0377, U+037A..037F, \& U+0384..038A, U+038C, U+038E..03A1, \& U+03A3..052F ...) \& \ep{Avestan} \ep{Script_Extensions=Avestan} (Short: \& \ep{Avst}; NOT \ep{Block=Avestan}) (61) \& \ep{Avst} \ep{Avestan} (= \ep{Script_Extensions= \& Avestan}) (NOT \ep{Block=Avestan}) (61) \& \ep{Bali} \ep{Balinese} (= \ep{Script_Extensions= \& Balinese}) (NOT \ep{Block=Balinese}) (124) \& \ep{Balinese} \ep{Script_Extensions=Balinese} (Short: \& \ep{Bali}; NOT \ep{Block=Balinese}) (124) \& \ep{Bamu} \ep{Bamum} (= \ep{Script_Extensions=Bamum}) \& (NOT \ep{Block=Bamum}) (657) \& \ep{Bamum} \ep{Script_Extensions=Bamum} (Short: \& \ep{Bamu}; NOT \ep{Block=Bamum}) (657) \& X \ep{Bamum_Sup} \ep{Bamum_Supplement} (= \ep{Block= \& Bamum_Supplement}) (576) \& X \ep{Bamum_Supplement} \ep{Block=Bamum_Supplement} (Short: \& \ep{InBamumSup}) (576) \& X \ep{Basic_Latin} \ep{ASCII} (= \ep{Block=Basic_Latin}) (128) \& \ep{Bass} \ep{Bassa_Vah} (= \ep{Script_Extensions= \& Bassa_Vah}) (NOT \ep{Block=Bassa_Vah}) \& (36) \& \ep{Bassa_Vah} \ep{Script_Extensions=Bassa_Vah} (Short: \& \ep{Bass}; NOT \ep{Block=Bassa_Vah}) (36) \& \ep{Batak} \ep{Script_Extensions=Batak} (Short: \& \ep{Batk}; NOT \ep{Block=Batak}) (56) \& \ep{Batk} \ep{Batak} (= \ep{Script_Extensions=Batak}) \& (NOT \ep{Block=Batak}) (56) \& \ep{Bc: *} \ep{Bidi_Class: *} \& \ep{Beng} \ep{Bengali} (= \ep{Script_Extensions= \& Bengali}) (NOT \ep{Block=Bengali}) (113) \& \ep{Bengali} \ep{Script_Extensions=Bengali} (Short: \& \ep{Beng}; NOT \ep{Block=Bengali}) (113) \& \ep{Bhaiksuki} \ep{Script_Extensions=Bhaiksuki} (Short: \& \ep{Bhks}; NOT \ep{Block=Bhaiksuki}) (97) \& \ep{Bhks} \ep{Bhaiksuki} (= \ep{Script_Extensions= \& Bhaiksuki}) (NOT \ep{Block=Bhaiksuki}) \& (97) \& \ep{Bidi_C} \ep{Bidi_Control} (= \ep{Bidi_Control=Y}) \& (12) \& \ep{Bidi_C: *} \ep{Bidi_Control: *} \& \ep{Bidi_Class: AL} \ep{Bidi_Class=Arabic_Letter} (1708) \& \ep{Bidi_Class: AN} \ep{Bidi_Class=Arabic_Number} (63) \& \ep{Bidi_Class: Arabic_Letter} (Short: \ep{Bc=AL}) (1708: U+0608, \& U+060B, U+060D, U+061B..064A, \& U+066D..066F, U+0671..06D5 ...) \& \ep{Bidi_Class: Arabic_Number} (Short: \ep{Bc=AN}) (63: \& U+0600..0605, U+0660..0669, \& U+066B..066C, U+06DD, U+0890..0891, \& U+08E2 ...) \& \ep{Bidi_Class: B} \ep{Bidi_Class=Paragraph_Separator} (7) \& \ep{Bidi_Class: BN} \ep{Bidi_Class=Boundary_Neutral} (4016) \& \ep{Bidi_Class: Boundary_Neutral} (Short: \ep{Bc=BN}) (4016: [^\et\en \& \ecK\ef\er\ex1c\-\ex7e\ex85\exa0\-\exac\exae\-\exff], \& U+180E, U+200B..200D, U+2060..2065, \& U+206A..206F, U+FDD0..FDEF ...) \& \ep{Bidi_Class: Common_Separator} (Short: \ep{Bc=CS}) (15: [,.\e/: \& \exa0], U+060C, U+202F, U+2044, U+FE50, \& U+FE52 ...) \& \ep{Bidi_Class: CS} \ep{Bidi_Class=Common_Separator} (15) \& \ep{Bidi_Class: EN} \ep{Bidi_Class=European_Number} (168) \& \ep{Bidi_Class: ES} \ep{Bidi_Class=European_Separator} (12) \& \ep{Bidi_Class: ET} \ep{Bidi_Class=European_Terminator} (92) \& \ep{Bidi_Class: European_Number} (Short: \ep{Bc=EN}) (168: [0\-9\exb2\- \& \exb3\exb9], U+06F0..06F9, U+2070, \& U+2074..2079, U+2080..2089, U+2488..249B \& ...) \& \ep{Bidi_Class: European_Separator} (Short: \ep{Bc=ES}) (12: [+\e\-], \& U+207A..207B, U+208A..208B, U+2212, \& U+FB29, U+FE62..FE63 ...) \& \ep{Bidi_Class: European_Terminator} (Short: \ep{Bc=ET}) (92: [#\e$ \& \e%\exa2\-\exa5\exb0\-\exb1], U+058F, \& U+0609..060A, U+066A, U+09F2..09F3, \& U+09FB ...) \& \ep{Bidi_Class: First_Strong_Isolate} (Short: \ep{Bc=FSI}) (1: \& U+2068) \& \ep{Bidi_Class: FSI} \ep{Bidi_Class=First_Strong_Isolate} (1) \& \ep{Bidi_Class: L} \ep{Bidi_Class=Left_To_Right} (1_096_333 \& plus all above\-Unicode code points) \& \ep{Bidi_Class: Left_To_Right} (Short: \ep{Bc=L}) (1_096_333 plus \& all above\-Unicode code points: [A\-Za\-z \& \exaa\exb5\exba\exc0\-\exd6\exd8\-\exf6\exf8\- \& \exff], U+0100..02B8, U+02BB..02C1, \& U+02D0..02D1, U+02E0..02E4, U+02EE ...) \& \ep{Bidi_Class: Left_To_Right_Embedding} (Short: \ep{Bc=LRE}) (1: \& U+202A) \& \ep{Bidi_Class: Left_To_Right_Isolate} (Short: \ep{Bc=LRI}) (1: \& U+2066) \& \ep{Bidi_Class: Left_To_Right_Override} (Short: \ep{Bc=LRO}) (1: \& U+202D) \& \ep{Bidi_Class: LRE} \ep{Bidi_Class=Left_To_Right_Embedding} (1) \& \ep{Bidi_Class: LRI} \ep{Bidi_Class=Left_To_Right_Isolate} (1) \& \ep{Bidi_Class: LRO} \ep{Bidi_Class=Left_To_Right_Override} (1) \& \ep{Bidi_Class: Nonspacing_Mark} (Short: \ep{Bc=NSM}) (1958: \& U+0300..036F, U+0483..0489, \& U+0591..05BD, U+05BF, U+05C1..05C2, \& U+05C4..05C5 ...) \& \ep{Bidi_Class: NSM} \ep{Bidi_Class=Nonspacing_Mark} (1958) \& \ep{Bidi_Class: ON} \ep{Bidi_Class=Other_Neutral} (6000) \& \ep{Bidi_Class: Other_Neutral} (Short: \ep{Bc=ON}) (6000: [!\e"&\e\*(Aq \& \e(\e)*;<=>?\e@\e[\e\e\e]\e^_\`\e{\e|\e}~\exa1\exa6\- \& \exa9\exab\-\exac\exae\-\exaf\exb4\exb6\-\exb8\exbb\- \& \exbf\exd7\exf7], U+02B9..02BA, \& U+02C2..02CF, U+02D2..02DF, \& U+02E5..02ED, U+02EF..02FF ...) \& \ep{Bidi_Class: Paragraph_Separator} (Short: \ep{Bc=B}) (7: [\en\er \& \ex1c\-\ex1e\ex85], U+2029) \& \ep{Bidi_Class: PDF} \ep{Bidi_Class=Pop_Directional_Format} (1) \& \ep{Bidi_Class: PDI} \ep{Bidi_Class=Pop_Directional_Isolate} (1) \& \ep{Bidi_Class: Pop_Directional_Format} (Short: \ep{Bc=PDF}) (1: \& U+202C) \& \ep{Bidi_Class: Pop_Directional_Isolate} (Short: \ep{Bc=PDI}) (1: \& U+2069) \& \ep{Bidi_Class: R} \ep{Bidi_Class=Right_To_Left} (3711) \& \ep{Bidi_Class: Right_To_Left} (Short: \ep{Bc=R}) (3711: U+0590, \& U+05BE, U+05C0, U+05C3, U+05C6, \& U+05C8..05FF ...) \& \ep{Bidi_Class: Right_To_Left_Embedding} (Short: \ep{Bc=RLE}) (1: \& U+202B) \& \ep{Bidi_Class: Right_To_Left_Isolate} (Short: \ep{Bc=RLI}) (1: \& U+2067) \& \ep{Bidi_Class: Right_To_Left_Override} (Short: \ep{Bc=RLO}) (1: \& U+202E) \& \ep{Bidi_Class: RLE} \ep{Bidi_Class=Right_To_Left_Embedding} (1) \& \ep{Bidi_Class: RLI} \ep{Bidi_Class=Right_To_Left_Isolate} (1) \& \ep{Bidi_Class: RLO} \ep{Bidi_Class=Right_To_Left_Override} (1) \& \ep{Bidi_Class: S} \ep{Bidi_Class=Segment_Separator} (3) \& \ep{Bidi_Class: Segment_Separator} (Short: \ep{Bc=S}) (3: [\et\ecK \& \ex1f]) \& \ep{Bidi_Class: White_Space} (Short: \ep{Bc=WS}) (17: [\ef\ex20], \& U+1680, U+2000..200A, U+2028, U+205F, \& U+3000) \& \ep{Bidi_Class: WS} \ep{Bidi_Class=White_Space} (17) \& \ep{Bidi_Control} \ep{Bidi_Control=Y} (Short: \ep{BidiC}) (12) \& \ep{Bidi_Control: N*} (Short: \ep{BidiC=N}, \eP{BidiC}) (1_114_100 \& plus all above\-Unicode code points: \& U+0000..061B, U+061D..200D, \& U+2010..2029, U+202F..2065, \& U+206A..infinity) \& \ep{Bidi_Control: Y*} (Short: \ep{BidiC=Y}, \ep{BidiC}) (12: \& U+061C, U+200E..200F, U+202A..202E, \& U+2066..2069) \& \ep{Bidi_M} \ep{Bidi_Mirrored} (= \ep{Bidi_Mirrored=Y}) \& (553) \& \ep{Bidi_M: *} \ep{Bidi_Mirrored: *} \& \ep{Bidi_Mirrored} \ep{Bidi_Mirrored=Y} (Short: \ep{BidiM}) \& (553) \& \ep{Bidi_Mirrored: N*} (Short: \ep{BidiM=N}, \eP{BidiM}) (1_113_559 \& plus all above\-Unicode code points: \& [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq*+,\e\-.\e/0\-9:;=?\e@A\- \& Z\e\e\e^_\`a\-z\e|~\ex7f\-\exaa\exac\-\exba\exbc\- \& \exff], U+0100..0F39, U+0F3E..169A, \& U+169D..2038, U+203B..2044, U+2047..207C \& ...) \& \ep{Bidi_Mirrored: Y*} (Short: \ep{BidiM=Y}, \ep{BidiM}) (553: \& [\e(\e)<>\e[\e]\e{\e}\exab\exbb], U+0F3A..0F3D, \& U+169B..169C, U+2039..203A, \& U+2045..2046, U+207D..207E ...) \& \ep{Bidi_Paired_Bracket_Type: C} \ep{Bidi_Paired_Bracket_Type=Close} \& (64) \& \ep{Bidi_Paired_Bracket_Type: Close} (Short: \ep{Bpt=C}) (64: [\e)\e] \& \e}], U+0F3B, U+0F3D, U+169C, U+2046, \& U+207E ...) \& \ep{Bidi_Paired_Bracket_Type: N} \ep{Bidi_Paired_Bracket_Type=None} \& (1_113_984 plus all above\-Unicode code \& points) \& \ep{Bidi_Paired_Bracket_Type: None} (Short: \ep{Bpt=N}) (1_113_984 \& plus all above\-Unicode code points: \& [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq*+,\e\-.\e/0\-9:;<=>? \& \e@A\-Z\e\e\e^_\`a\-z\e|~\ex7f\-\exff], \& U+0100..0F39, U+0F3E..169A, \& U+169D..2044, U+2047..207C, U+207F..208C \& ...) \& \ep{Bidi_Paired_Bracket_Type: O} \ep{Bidi_Paired_Bracket_Type=Open} \& (64) \& \ep{Bidi_Paired_Bracket_Type: Open} (Short: \ep{Bpt=O}) (64: \& [\e(\e[\e{], U+0F3A, U+0F3C, U+169B, \& U+2045, U+207D ...) \& \ep{Blank} \ep{XPosixBlank} (18) \& \ep{Blk: *} \ep{Block: *} \& \ep{Block: Adlam} (NOT \ep{Adlam} NOR \ep{Is_Adlam}) (96: \& U+1E900..1E95F) \& \ep{Block: Aegean_Numbers} (64: U+10100..1013F) \& \ep{Block: Ahom} (NOT \ep{Ahom} NOR \ep{Is_Ahom}) (80: \& U+11700..1174F) \& \ep{Block: Alchemical} \ep{Block=Alchemical_Symbols} (128) \& \ep{Block: Alchemical_Symbols} (Short: \ep{Blk=Alchemical}) (128: \& U+1F700..1F77F) \& \ep{Block: Alphabetic_PF} \ep{Block=Alphabetic_Presentation_Forms} \& (80) \& \ep{Block: Alphabetic_Presentation_Forms} (Short: \ep{Blk= \& AlphabeticPF}) (80: U+FB00..FB4F) \& \ep{Block: Anatolian_Hieroglyphs} (NOT \ep{Anatolian_Hieroglyphs} \& NOR \ep{Is_Anatolian_Hieroglyphs}) (640: \& U+14400..1467F) \& \ep{Block: Ancient_Greek_Music} \ep{Block= \& Ancient_Greek_Musical_Notation} (80) \& \ep{Block: Ancient_Greek_Musical_Notation} (Short: \ep{Blk= \& AncientGreekMusic}) (80: U+1D200..1D24F) \& \ep{Block: Ancient_Greek_Numbers} (80: U+10140..1018F) \& \ep{Block: Ancient_Symbols} (64: U+10190..101CF) \& \ep{Block: Arabic} (NOT \ep{Arabic} NOR \ep{Is_Arabic}) (256: \& U+0600..06FF) \& \ep{Block: Arabic_Ext_A} \ep{Block=Arabic_Extended_A} (96) \& \ep{Block: Arabic_Ext_B} \ep{Block=Arabic_Extended_B} (48) \& \ep{Block: Arabic_Extended_A} (Short: \ep{Blk=ArabicExtA}) (96: \& U+08A0..08FF) \& \ep{Block: Arabic_Extended_B} (Short: \ep{Blk=ArabicExtB}) (48: \& U+0870..089F) \& \ep{Block: Arabic_Math} \ep{Block= \& Arabic_Mathematical_Alphabetic_Symbols} \& (256) \& \ep{Block: Arabic_Mathematical_Alphabetic_Symbols} (Short: \ep{Blk= \& ArabicMath}) (256: U+1EE00..1EEFF) \& \ep{Block: Arabic_PF_A} \ep{Block=Arabic_Presentation_Forms_A} (688) \& \ep{Block: Arabic_PF_B} \ep{Block=Arabic_Presentation_Forms_B} (144) \& \ep{Block: Arabic_Presentation_Forms_A} (Short: \ep{Blk=ArabicPFA}) \& (688: U+FB50..FDFF) \& \ep{Block: Arabic_Presentation_Forms_B} (Short: \ep{Blk=ArabicPFB}) \& (144: U+FE70..FEFF) \& \ep{Block: Arabic_Sup} \ep{Block=Arabic_Supplement} (48) \& \ep{Block: Arabic_Supplement} (Short: \ep{Blk=ArabicSup}) (48: \& U+0750..077F) \& \ep{Block: Armenian} (NOT \ep{Armenian} NOR \ep{Is_Armenian}) \& (96: U+0530..058F) \& \ep{Block: Arrows} (112: U+2190..21FF) \& \ep{Block: ASCII} \ep{Block=Basic_Latin} (128) \& \ep{Block: Avestan} (NOT \ep{Avestan} NOR \ep{Is_Avestan}) (64: \& U+10B00..10B3F) \& \ep{Block: Balinese} (NOT \ep{Balinese} NOR \ep{Is_Balinese}) \& (128: U+1B00..1B7F) \& \ep{Block: Bamum} (NOT \ep{Bamum} NOR \ep{Is_Bamum}) (96: \& U+A6A0..A6FF) \& \ep{Block: Bamum_Sup} \ep{Block=Bamum_Supplement} (576) \& \ep{Block: Bamum_Supplement} (Short: \ep{Blk=BamumSup}) (576: \& U+16800..16A3F) \& \ep{Block: Basic_Latin} (Short: \ep{Blk=ASCII}) (128: [\ex00\-\ex7f]) \& \ep{Block: Bassa_Vah} (NOT \ep{Bassa_Vah} NOR \ep{Is_Bassa_Vah}) \& (48: U+16AD0..16AFF) \& \ep{Block: Batak} (NOT \ep{Batak} NOR \ep{Is_Batak}) (64: \& U+1BC0..1BFF) \& \ep{Block: Bengali} (NOT \ep{Bengali} NOR \ep{Is_Bengali}) (128: \& U+0980..09FF) \& \ep{Block: Bhaiksuki} (NOT \ep{Bhaiksuki} NOR \ep{Is_Bhaiksuki}) \& (112: U+11C00..11C6F) \& \ep{Block: Block_Elements} (32: U+2580..259F) \& \ep{Block: Bopomofo} (NOT \ep{Bopomofo} NOR \ep{Is_Bopomofo}) \& (48: U+3100..312F) \& \ep{Block: Bopomofo_Ext} \ep{Block=Bopomofo_Extended} (32) \& \ep{Block: Bopomofo_Extended} (Short: \ep{Blk=BopomofoExt}) (32: \& U+31A0..31BF) \& \ep{Block: Box_Drawing} (128: U+2500..257F) \& \ep{Block: Brahmi} (NOT \ep{Brahmi} NOR \ep{Is_Brahmi}) (128: \& U+11000..1107F) \& \ep{Block: Braille} \ep{Block=Braille_Patterns} (256) \& \ep{Block: Braille_Patterns} (Short: \ep{Blk=Braille}) (256: \& U+2800..28FF) \& \ep{Block: Buginese} (NOT \ep{Buginese} NOR \ep{Is_Buginese}) \& (32: U+1A00..1A1F) \& \ep{Block: Buhid} (NOT \ep{Buhid} NOR \ep{Is_Buhid}) (32: \& U+1740..175F) \& \ep{Block: Byzantine_Music} \ep{Block=Byzantine_Musical_Symbols} \& (256) \& \ep{Block: Byzantine_Musical_Symbols} (Short: \ep{Blk= \& ByzantineMusic}) (256: U+1D000..1D0FF) \& \ep{Block: Canadian_Syllabics} \ep{Block= \& Unified_Canadian_Aboriginal_Syllabics} \& (640) \& \ep{Block: Carian} (NOT \ep{Carian} NOR \ep{Is_Carian}) (64: \& U+102A0..102DF) \& \ep{Block: Caucasian_Albanian} (NOT \ep{Caucasian_Albanian} NOR \& \ep{Is_Caucasian_Albanian}) (64: \& U+10530..1056F) \& \ep{Block: Chakma} (NOT \ep{Chakma} NOR \ep{Is_Chakma}) (80: \& U+11100..1114F) \& \ep{Block: Cham} (NOT \ep{Cham} NOR \ep{Is_Cham}) (96: \& U+AA00..AA5F) \& \ep{Block: Cherokee} (NOT \ep{Cherokee} NOR \ep{Is_Cherokee}) \& (96: U+13A0..13FF) \& \ep{Block: Cherokee_Sup} \ep{Block=Cherokee_Supplement} (80) \& \ep{Block: Cherokee_Supplement} (Short: \ep{Blk=CherokeeSup}) (80: \& U+AB70..ABBF) \& \ep{Block: Chess_Symbols} (112: U+1FA00..1FA6F) \& \ep{Block: Chorasmian} (NOT \ep{Chorasmian} NOR \ep{Is_Chorasmian}) \& (48: U+10FB0..10FDF) \& \ep{Block: CJK} \ep{Block=CJK_Unified_Ideographs} (20_992) \& \ep{Block: CJK_Compat} \ep{Block=CJK_Compatibility} (256) \& \ep{Block: CJK_Compat_Forms} \ep{Block=CJK_Compatibility_Forms} (32) \& \ep{Block: CJK_Compat_Ideographs} \ep{Block= \& CJK_Compatibility_Ideographs} (512) \& \ep{Block: CJK_Compat_Ideographs_Sup} \ep{Block= \& CJK_Compatibility_Ideographs_Supplement} \& (544) \& \ep{Block: CJK_Compatibility} (Short: \ep{Blk=CJKCompat}) (256: \& U+3300..33FF) \& \ep{Block: CJK_Compatibility_Forms} (Short: \ep{Blk=CJKCompatForms}) \& (32: U+FE30..FE4F) \& \ep{Block: CJK_Compatibility_Ideographs} (Short: \ep{Blk= \& CJKCompatIdeographs}) (512: U+F900..FAFF) \& \ep{Block: CJK_Compatibility_Ideographs_Supplement} (Short: \ep{Blk= \& CJKCompatIdeographsSup}) (544: \& U+2F800..2FA1F) \& \ep{Block: CJK_Ext_A} \ep{Block= \& CJK_Unified_Ideographs_Extension_A} \& (6592) \& \ep{Block: CJK_Ext_B} \ep{Block= \& CJK_Unified_Ideographs_Extension_B} \& (42_720) \& \ep{Block: CJK_Ext_C} \ep{Block= \& CJK_Unified_Ideographs_Extension_C} \& (4160) \& \ep{Block: CJK_Ext_D} \ep{Block= \& CJK_Unified_Ideographs_Extension_D} (224) \& \ep{Block: CJK_Ext_E} \ep{Block= \& CJK_Unified_Ideographs_Extension_E} \& (5776) \& \ep{Block: CJK_Ext_F} \ep{Block= \& CJK_Unified_Ideographs_Extension_F} \& (7488) \& \ep{Block: CJK_Ext_G} \ep{Block= \& CJK_Unified_Ideographs_Extension_G} \& (4944) \& \ep{Block: CJK_Radicals_Sup} \ep{Block=CJK_Radicals_Supplement} (128) \& \ep{Block: CJK_Radicals_Supplement} (Short: \ep{Blk=CJKRadicalsSup}) \& (128: U+2E80..2EFF) \& \ep{Block: CJK_Strokes} (48: U+31C0..31EF) \& \ep{Block: CJK_Symbols} \ep{Block=CJK_Symbols_And_Punctuation} (64) \& \ep{Block: CJK_Symbols_And_Punctuation} (Short: \ep{Blk=CJKSymbols}) \& (64: U+3000..303F) \& \ep{Block: CJK_Unified_Ideographs} (Short: \ep{Blk=CJK}) (20_992: \& U+4E00..9FFF) \& \ep{Block: CJK_Unified_Ideographs_Extension_A} (Short: \ep{Blk= \& CJKExtA}) (6592: U+3400..4DBF) \& \ep{Block: CJK_Unified_Ideographs_Extension_B} (Short: \ep{Blk= \& CJKExtB}) (42_720: U+20000..2A6DF) \& \ep{Block: CJK_Unified_Ideographs_Extension_C} (Short: \ep{Blk= \& CJKExtC}) (4160: U+2A700..2B73F) \& \ep{Block: CJK_Unified_Ideographs_Extension_D} (Short: \ep{Blk= \& CJKExtD}) (224: U+2B740..2B81F) \& \ep{Block: CJK_Unified_Ideographs_Extension_E} (Short: \ep{Blk= \& CJKExtE}) (5776: U+2B820..2CEAF) \& \ep{Block: CJK_Unified_Ideographs_Extension_F} (Short: \ep{Blk= \& CJKExtF}) (7488: U+2CEB0..2EBEF) \& \ep{Block: CJK_Unified_Ideographs_Extension_G} (Short: \ep{Blk= \& CJKExtG}) (4944: U+30000..3134F) \& \ep{Block: Combining_Diacritical_Marks} (Short: \ep{Blk= \& Diacriticals}) (112: U+0300..036F) \& \ep{Block: Combining_Diacritical_Marks_Extended} (Short: \ep{Blk= \& DiacriticalsExt}) (80: U+1AB0..1AFF) \& \ep{Block: Combining_Diacritical_Marks_For_Symbols} (Short: \ep{Blk= \& DiacriticalsForSymbols}) (48: \& U+20D0..20FF) \& \ep{Block: Combining_Diacritical_Marks_Supplement} (Short: \ep{Blk= \& DiacriticalsSup}) (64: U+1DC0..1DFF) \& \ep{Block: Combining_Half_Marks} (Short: \ep{Blk=HalfMarks}) (16: \& U+FE20..FE2F) \& \ep{Block: Combining_Marks_For_Symbols} \ep{Block= \& Combining_Diacritical_Marks_For_Symbols} \& (48) \& \ep{Block: Common_Indic_Number_Forms} (Short: \ep{Blk= \& IndicNumberForms}) (16: U+A830..A83F) \& \ep{Block: Compat_Jamo} \ep{Block=Hangul_Compatibility_Jamo} (96) \& \ep{Block: Control_Pictures} (64: U+2400..243F) \& \ep{Block: Coptic} (NOT \ep{Coptic} NOR \ep{Is_Coptic}) (128: \& U+2C80..2CFF) \& \ep{Block: Coptic_Epact_Numbers} (32: U+102E0..102FF) \& \ep{Block: Counting_Rod} \ep{Block=Counting_Rod_Numerals} (32) \& \ep{Block: Counting_Rod_Numerals} (Short: \ep{Blk=CountingRod}) (32: \& U+1D360..1D37F) \& \ep{Block: Cuneiform} (NOT \ep{Cuneiform} NOR \ep{Is_Cuneiform}) \& (1024: U+12000..123FF) \& \ep{Block: Cuneiform_Numbers} \ep{Block= \& Cuneiform_Numbers_And_Punctuation} (128) \& \ep{Block: Cuneiform_Numbers_And_Punctuation} (Short: \ep{Blk= \& CuneiformNumbers}) (128: U+12400..1247F) \& \ep{Block: Currency_Symbols} (48: U+20A0..20CF) \& \ep{Block: Cypriot_Syllabary} (64: U+10800..1083F) \& \ep{Block: Cypro_Minoan} (NOT \ep{Cypro_Minoan} NOR \& \ep{Is_Cypro_Minoan}) (112: \& U+12F90..12FFF) \& \ep{Block: Cyrillic} (NOT \ep{Cyrillic} NOR \ep{Is_Cyrillic}) \& (256: U+0400..04FF) \& \ep{Block: Cyrillic_Ext_A} \ep{Block=Cyrillic_Extended_A} (32) \& \ep{Block: Cyrillic_Ext_B} \ep{Block=Cyrillic_Extended_B} (96) \& \ep{Block: Cyrillic_Ext_C} \ep{Block=Cyrillic_Extended_C} (16) \& \ep{Block: Cyrillic_Extended_A} (Short: \ep{Blk=CyrillicExtA}) (32: \& U+2DE0..2DFF) \& \ep{Block: Cyrillic_Extended_B} (Short: \ep{Blk=CyrillicExtB}) (96: \& U+A640..A69F) \& \ep{Block: Cyrillic_Extended_C} (Short: \ep{Blk=CyrillicExtC}) (16: \& U+1C80..1C8F) \& \ep{Block: Cyrillic_Sup} \ep{Block=Cyrillic_Supplement} (48) \& \ep{Block: Cyrillic_Supplement} (Short: \ep{Blk=CyrillicSup}) (48: \& U+0500..052F) \& \ep{Block: Cyrillic_Supplementary} \ep{Block=Cyrillic_Supplement} \& (48) \& \ep{Block: Deseret} (80: U+10400..1044F) \& \ep{Block: Devanagari} (NOT \ep{Devanagari} NOR \ep{Is_Devanagari}) \& (128: U+0900..097F) \& \ep{Block: Devanagari_Ext} \ep{Block=Devanagari_Extended} (32) \& \ep{Block: Devanagari_Extended} (Short: \ep{Blk=DevanagariExt}) (32: \& U+A8E0..A8FF) \& \ep{Block: Diacriticals} \ep{Block=Combining_Diacritical_Marks} (112) \& \ep{Block: Diacriticals_Ext} \ep{Block= \& Combining_Diacritical_Marks_Extended} \& (80) \& \ep{Block: Diacriticals_For_Symbols} \ep{Block= \& Combining_Diacritical_Marks_For_Symbols} \& (48) \& \ep{Block: Diacriticals_Sup} \ep{Block= \& Combining_Diacritical_Marks_Supplement} \& (64) \& \ep{Block: Dingbats} (192: U+2700..27BF) \& \ep{Block: Dives_Akuru} (NOT \ep{Dives_Akuru} NOR \& \ep{Is_Dives_Akuru}) (96: U+11900..1195F) \& \ep{Block: Dogra} (NOT \ep{Dogra} NOR \ep{Is_Dogra}) (80: \& U+11800..1184F) \& \ep{Block: Domino} \ep{Block=Domino_Tiles} (112) \& \ep{Block: Domino_Tiles} (Short: \ep{Blk=Domino}) (112: \& U+1F030..1F09F) \& \ep{Block: Duployan} (NOT \ep{Duployan} NOR \ep{Is_Duployan}) \& (160: U+1BC00..1BC9F) \& \ep{Block: Early_Dynastic_Cuneiform} (208: U+12480..1254F) \& \ep{Block: Egyptian_Hieroglyph_Format_Controls} (16: U+13430..1343F) \& \ep{Block: Egyptian_Hieroglyphs} (NOT \ep{Egyptian_Hieroglyphs} NOR \& \ep{Is_Egyptian_Hieroglyphs}) (1072: \& U+13000..1342F) \& \ep{Block: Elbasan} (NOT \ep{Elbasan} NOR \ep{Is_Elbasan}) (48: \& U+10500..1052F) \& \ep{Block: Elymaic} (NOT \ep{Elymaic} NOR \ep{Is_Elymaic}) (32: \& U+10FE0..10FFF) \& \ep{Block: Emoticons} (80: U+1F600..1F64F) \& \ep{Block: Enclosed_Alphanum} \ep{Block=Enclosed_Alphanumerics} (160) \& \ep{Block: Enclosed_Alphanum_Sup} \ep{Block= \& Enclosed_Alphanumeric_Supplement} (256) \& \ep{Block: Enclosed_Alphanumeric_Supplement} (Short: \ep{Blk= \& EnclosedAlphanumSup}) (256: \& U+1F100..1F1FF) \& \ep{Block: Enclosed_Alphanumerics} (Short: \ep{Blk= \& EnclosedAlphanum}) (160: U+2460..24FF) \& \ep{Block: Enclosed_CJK} \ep{Block=Enclosed_CJK_Letters_And_Months} \& (256) \& \ep{Block: Enclosed_CJK_Letters_And_Months} (Short: \ep{Blk= \& EnclosedCJK}) (256: U+3200..32FF) \& \ep{Block: Enclosed_Ideographic_Sup} \ep{Block= \& Enclosed_Ideographic_Supplement} (256) \& \ep{Block: Enclosed_Ideographic_Supplement} (Short: \ep{Blk= \& EnclosedIdeographicSup}) (256: \& U+1F200..1F2FF) \& \ep{Block: Ethiopic} (NOT \ep{Ethiopic} NOR \ep{Is_Ethiopic}) \& (384: U+1200..137F) \& \ep{Block: Ethiopic_Ext} \ep{Block=Ethiopic_Extended} (96) \& \ep{Block: Ethiopic_Ext_A} \ep{Block=Ethiopic_Extended_A} (48) \& \ep{Block: Ethiopic_Ext_B} \ep{Block=Ethiopic_Extended_B} (32) \& \ep{Block: Ethiopic_Extended} (Short: \ep{Blk=EthiopicExt}) (96: \& U+2D80..2DDF) \& \ep{Block: Ethiopic_Extended_A} (Short: \ep{Blk=EthiopicExtA}) (48: \& U+AB00..AB2F) \& \ep{Block: Ethiopic_Extended_B} (Short: \ep{Blk=EthiopicExtB}) (32: \& U+1E7E0..1E7FF) \& \ep{Block: Ethiopic_Sup} \ep{Block=Ethiopic_Supplement} (32) \& \ep{Block: Ethiopic_Supplement} (Short: \ep{Blk=EthiopicSup}) (32: \& U+1380..139F) \& \ep{Block: General_Punctuation} (Short: \ep{Blk=Punctuation}; NOT \& \ep{Punct} NOR \ep{Is_Punctuation}) (112: \& U+2000..206F) \& \ep{Block: Geometric_Shapes} (96: U+25A0..25FF) \& \ep{Block: Geometric_Shapes_Ext} \ep{Block= \& Geometric_Shapes_Extended} (128) \& \ep{Block: Geometric_Shapes_Extended} (Short: \ep{Blk= \& GeometricShapesExt}) (128: \& U+1F780..1F7FF) \& \ep{Block: Georgian} (NOT \ep{Georgian} NOR \ep{Is_Georgian}) \& (96: U+10A0..10FF) \& \ep{Block: Georgian_Ext} \ep{Block=Georgian_Extended} (48) \& \ep{Block: Georgian_Extended} (Short: \ep{Blk=GeorgianExt}) (48: \& U+1C90..1CBF) \& \ep{Block: Georgian_Sup} \ep{Block=Georgian_Supplement} (48) \& \ep{Block: Georgian_Supplement} (Short: \ep{Blk=GeorgianSup}) (48: \& U+2D00..2D2F) \& \ep{Block: Glagolitic} (NOT \ep{Glagolitic} NOR \ep{Is_Glagolitic}) \& (96: U+2C00..2C5F) \& \ep{Block: Glagolitic_Sup} \ep{Block=Glagolitic_Supplement} (48) \& \ep{Block: Glagolitic_Supplement} (Short: \ep{Blk=GlagoliticSup}) \& (48: U+1E000..1E02F) \& \ep{Block: Gothic} (NOT \ep{Gothic} NOR \ep{Is_Gothic}) (32: \& U+10330..1034F) \& \ep{Block: Grantha} (NOT \ep{Grantha} NOR \ep{Is_Grantha}) (128: \& U+11300..1137F) \& \ep{Block: Greek} \ep{Block=Greek_And_Coptic} (NOT \ep{Greek} \& NOR \ep{Is_Greek}) (144) \& \ep{Block: Greek_And_Coptic} (Short: \ep{Blk=Greek}; NOT \ep{Greek} \& NOR \ep{Is_Greek}) (144: U+0370..03FF) \& \ep{Block: Greek_Ext} \ep{Block=Greek_Extended} (256) \& \ep{Block: Greek_Extended} (Short: \ep{Blk=GreekExt}) (256: \& U+1F00..1FFF) \& \ep{Block: Gujarati} (NOT \ep{Gujarati} NOR \ep{Is_Gujarati}) \& (128: U+0A80..0AFF) \& \ep{Block: Gunjala_Gondi} (NOT \ep{Gunjala_Gondi} NOR \& \ep{Is_Gunjala_Gondi}) (80: \& U+11D60..11DAF) \& \ep{Block: Gurmukhi} (NOT \ep{Gurmukhi} NOR \ep{Is_Gurmukhi}) \& (128: U+0A00..0A7F) \& \ep{Block: Half_And_Full_Forms} \ep{Block= \& Halfwidth_And_Fullwidth_Forms} (240) \& \ep{Block: Half_Marks} \ep{Block=Combining_Half_Marks} (16) \& \ep{Block: Halfwidth_And_Fullwidth_Forms} (Short: \ep{Blk= \& HalfAndFullForms}) (240: U+FF00..FFEF) \& \ep{Block: Hangul} \ep{Block=Hangul_Syllables} (NOT \ep{Hangul} \& NOR \ep{Is_Hangul}) (11_184) \& \ep{Block: Hangul_Compatibility_Jamo} (Short: \ep{Blk=CompatJamo}) \& (96: U+3130..318F) \& \ep{Block: Hangul_Jamo} (Short: \ep{Blk=Jamo}) (256: U+1100..11FF) \& \ep{Block: Hangul_Jamo_Extended_A} (Short: \ep{Blk=JamoExtA}) (32: \& U+A960..A97F) \& \ep{Block: Hangul_Jamo_Extended_B} (Short: \ep{Blk=JamoExtB}) (80: \& U+D7B0..D7FF) \& \ep{Block: Hangul_Syllables} (Short: \ep{Blk=Hangul}; NOT \ep{Hangul} \& NOR \ep{Is_Hangul}) (11_184: U+AC00..D7AF) \& \ep{Block: Hanifi_Rohingya} (NOT \ep{Hanifi_Rohingya} NOR \& \ep{Is_Hanifi_Rohingya}) (64: \& U+10D00..10D3F) \& \ep{Block: Hanunoo} (NOT \ep{Hanunoo} NOR \ep{Is_Hanunoo}) (32: \& U+1720..173F) \& \ep{Block: Hatran} (NOT \ep{Hatran} NOR \ep{Is_Hatran}) (32: \& U+108E0..108FF) \& \ep{Block: Hebrew} (NOT \ep{Hebrew} NOR \ep{Is_Hebrew}) (112: \& U+0590..05FF) \& \ep{Block: High_Private_Use_Surrogates} (Short: \ep{Blk= \& HighPUSurrogates}) (128: U+DB80..DBFF) \& \ep{Block: High_PU_Surrogates} \ep{Block= \& High_Private_Use_Surrogates} (128) \& \ep{Block: High_Surrogates} (896: U+D800..DB7F) \& \ep{Block: Hiragana} (NOT \ep{Hiragana} NOR \ep{Is_Hiragana}) \& (96: U+3040..309F) \& \ep{Block: IDC} \ep{Block= \& Ideographic_Description_Characters} (NOT \& \ep{ID_Continue} NOR \ep{Is_IDC}) (16) \& \ep{Block: Ideographic_Description_Characters} (Short: \ep{Blk=IDC}; \& NOT \ep{ID_Continue} NOR \ep{Is_IDC}) (16: \& U+2FF0..2FFF) \& \ep{Block: Ideographic_Symbols} \ep{Block= \& Ideographic_Symbols_And_Punctuation} (32) \& \ep{Block: Ideographic_Symbols_And_Punctuation} (Short: \ep{Blk= \& IdeographicSymbols}) (32: U+16FE0..16FFF) \& \ep{Block: Imperial_Aramaic} (NOT \ep{Imperial_Aramaic} NOR \& \ep{Is_Imperial_Aramaic}) (32: \& U+10840..1085F) \& \ep{Block: Indic_Number_Forms} \ep{Block=Common_Indic_Number_Forms} \& (16) \& \ep{Block: Indic_Siyaq_Numbers} (80: U+1EC70..1ECBF) \& \ep{Block: Inscriptional_Pahlavi} (NOT \ep{Inscriptional_Pahlavi} \& NOR \ep{Is_Inscriptional_Pahlavi}) (32: \& U+10B60..10B7F) \& \ep{Block: Inscriptional_Parthian} (NOT \ep{Inscriptional_Parthian} \& NOR \ep{Is_Inscriptional_Parthian}) (32: \& U+10B40..10B5F) \& \ep{Block: IPA_Ext} \ep{Block=IPA_Extensions} (96) \& \ep{Block: IPA_Extensions} (Short: \ep{Blk=IPAExt}) (96: \& U+0250..02AF) \& \ep{Block: Jamo} \ep{Block=Hangul_Jamo} (256) \& \ep{Block: Jamo_Ext_A} \ep{Block=Hangul_Jamo_Extended_A} (32) \& \ep{Block: Jamo_Ext_B} \ep{Block=Hangul_Jamo_Extended_B} (80) \& \ep{Block: Javanese} (NOT \ep{Javanese} NOR \ep{Is_Javanese}) \& (96: U+A980..A9DF) \& \ep{Block: Kaithi} (NOT \ep{Kaithi} NOR \ep{Is_Kaithi}) (80: \& U+11080..110CF) \& \ep{Block: Kana_Ext_A} \ep{Block=Kana_Extended_A} (48) \& \ep{Block: Kana_Ext_B} \ep{Block=Kana_Extended_B} (16) \& \ep{Block: Kana_Extended_A} (Short: \ep{Blk=KanaExtA}) (48: \& U+1B100..1B12F) \& \ep{Block: Kana_Extended_B} (Short: \ep{Blk=KanaExtB}) (16: \& U+1AFF0..1AFFF) \& \ep{Block: Kana_Sup} \ep{Block=Kana_Supplement} (256) \& \ep{Block: Kana_Supplement} (Short: \ep{Blk=KanaSup}) (256: \& U+1B000..1B0FF) \& \ep{Block: Kanbun} (16: U+3190..319F) \& \ep{Block: Kangxi} \ep{Block=Kangxi_Radicals} (224) \& \ep{Block: Kangxi_Radicals} (Short: \ep{Blk=Kangxi}) (224: \& U+2F00..2FDF) \& \ep{Block: Kannada} (NOT \ep{Kannada} NOR \ep{Is_Kannada}) (128: \& U+0C80..0CFF) \& \ep{Block: Katakana} (NOT \ep{Katakana} NOR \ep{Is_Katakana}) \& (96: U+30A0..30FF) \& \ep{Block: Katakana_Ext} \ep{Block=Katakana_Phonetic_Extensions} (16) \& \ep{Block: Katakana_Phonetic_Extensions} (Short: \ep{Blk= \& KatakanaExt}) (16: U+31F0..31FF) \& \ep{Block: Kayah_Li} (48: U+A900..A92F) \& \ep{Block: Kharoshthi} (NOT \ep{Kharoshthi} NOR \ep{Is_Kharoshthi}) \& (96: U+10A00..10A5F) \& \ep{Block: Khitan_Small_Script} (NOT \ep{Khitan_Small_Script} NOR \& \ep{Is_Khitan_Small_Script}) (512: \& U+18B00..18CFF) \& \ep{Block: Khmer} (NOT \ep{Khmer} NOR \ep{Is_Khmer}) (128: \& U+1780..17FF) \& \ep{Block: Khmer_Symbols} (32: U+19E0..19FF) \& \ep{Block: Khojki} (NOT \ep{Khojki} NOR \ep{Is_Khojki}) (80: \& U+11200..1124F) \& \ep{Block: Khudawadi} (NOT \ep{Khudawadi} NOR \ep{Is_Khudawadi}) \& (80: U+112B0..112FF) \& \ep{Block: Lao} (NOT \ep{Lao} NOR \ep{Is_Lao}) (128: \& U+0E80..0EFF) \& \ep{Block: Latin_1} \ep{Block=Latin_1_Supplement} (128) \& \ep{Block: Latin_1_Sup} \ep{Block=Latin_1_Supplement} (128) \& \ep{Block: Latin_1_Supplement} (Short: \ep{Blk=Latin1}) (128: [\ex80\- \& \exff]) \& \ep{Block: Latin_Ext_A} \ep{Block=Latin_Extended_A} (128) \& \ep{Block: Latin_Ext_Additional} \ep{Block= \& Latin_Extended_Additional} (256) \& \ep{Block: Latin_Ext_B} \ep{Block=Latin_Extended_B} (208) \& \ep{Block: Latin_Ext_C} \ep{Block=Latin_Extended_C} (32) \& \ep{Block: Latin_Ext_D} \ep{Block=Latin_Extended_D} (224) \& \ep{Block: Latin_Ext_E} \ep{Block=Latin_Extended_E} (64) \& \ep{Block: Latin_Ext_F} \ep{Block=Latin_Extended_F} (64) \& \ep{Block: Latin_Ext_G} \ep{Block=Latin_Extended_G} (256) \& \ep{Block: Latin_Extended_A} (Short: \ep{Blk=LatinExtA}) (128: \& U+0100..017F) \& \ep{Block: Latin_Extended_Additional} (Short: \ep{Blk= \& LatinExtAdditional}) (256: U+1E00..1EFF) \& \ep{Block: Latin_Extended_B} (Short: \ep{Blk=LatinExtB}) (208: \& U+0180..024F) \& \ep{Block: Latin_Extended_C} (Short: \ep{Blk=LatinExtC}) (32: \& U+2C60..2C7F) \& \ep{Block: Latin_Extended_D} (Short: \ep{Blk=LatinExtD}) (224: \& U+A720..A7FF) \& \ep{Block: Latin_Extended_E} (Short: \ep{Blk=LatinExtE}) (64: \& U+AB30..AB6F) \& \ep{Block: Latin_Extended_F} (Short: \ep{Blk=LatinExtF}) (64: \& U+10780..107BF) \& \ep{Block: Latin_Extended_G} (Short: \ep{Blk=LatinExtG}) (256: \& U+1DF00..1DFFF) \& \ep{Block: Lepcha} (NOT \ep{Lepcha} NOR \ep{Is_Lepcha}) (80: \& U+1C00..1C4F) \& \ep{Block: Letterlike_Symbols} (80: U+2100..214F) \& \ep{Block: Limbu} (NOT \ep{Limbu} NOR \ep{Is_Limbu}) (80: \& U+1900..194F) \& \ep{Block: Linear_A} (NOT \ep{Linear_A} NOR \ep{Is_Linear_A}) \& (384: U+10600..1077F) \& \ep{Block: Linear_B_Ideograms} (128: U+10080..100FF) \& \ep{Block: Linear_B_Syllabary} (128: U+10000..1007F) \& \ep{Block: Lisu} (NOT \ep{Lisu} NOR \ep{Is_Lisu}) (48: \& U+A4D0..A4FF) \& \ep{Block: Lisu_Sup} \ep{Block=Lisu_Supplement} (16) \& \ep{Block: Lisu_Supplement} (Short: \ep{Blk=LisuSup}) (16: \& U+11FB0..11FBF) \& \ep{Block: Low_Surrogates} (1024: U+DC00..DFFF) \& \ep{Block: Lycian} (NOT \ep{Lycian} NOR \ep{Is_Lycian}) (32: \& U+10280..1029F) \& \ep{Block: Lydian} (NOT \ep{Lydian} NOR \ep{Is_Lydian}) (32: \& U+10920..1093F) \& \ep{Block: Mahajani} (NOT \ep{Mahajani} NOR \ep{Is_Mahajani}) \& (48: U+11150..1117F) \& \ep{Block: Mahjong} \ep{Block=Mahjong_Tiles} (48) \& \ep{Block: Mahjong_Tiles} (Short: \ep{Blk=Mahjong}) (48: \& U+1F000..1F02F) \& \ep{Block: Makasar} (NOT \ep{Makasar} NOR \ep{Is_Makasar}) (32: \& U+11EE0..11EFF) \& \ep{Block: Malayalam} (NOT \ep{Malayalam} NOR \ep{Is_Malayalam}) \& (128: U+0D00..0D7F) \& \ep{Block: Mandaic} (NOT \ep{Mandaic} NOR \ep{Is_Mandaic}) (32: \& U+0840..085F) \& \ep{Block: Manichaean} (NOT \ep{Manichaean} NOR \ep{Is_Manichaean}) \& (64: U+10AC0..10AFF) \& \ep{Block: Marchen} (NOT \ep{Marchen} NOR \ep{Is_Marchen}) (80: \& U+11C70..11CBF) \& \ep{Block: Masaram_Gondi} (NOT \ep{Masaram_Gondi} NOR \& \ep{Is_Masaram_Gondi}) (96: \& U+11D00..11D5F) \& \ep{Block: Math_Alphanum} \ep{Block= \& Mathematical_Alphanumeric_Symbols} (1024) \& \ep{Block: Math_Operators} \ep{Block=Mathematical_Operators} (256) \& \ep{Block: Mathematical_Alphanumeric_Symbols} (Short: \ep{Blk= \& MathAlphanum}) (1024: U+1D400..1D7FF) \& \ep{Block: Mathematical_Operators} (Short: \ep{Blk=MathOperators}) \& (256: U+2200..22FF) \& \ep{Block: Mayan_Numerals} (32: U+1D2E0..1D2FF) \& \ep{Block: Medefaidrin} (NOT \ep{Medefaidrin} NOR \& \ep{Is_Medefaidrin}) (96: U+16E40..16E9F) \& \ep{Block: Meetei_Mayek} (NOT \ep{Meetei_Mayek} NOR \& \ep{Is_Meetei_Mayek}) (64: U+ABC0..ABFF) \& \ep{Block: Meetei_Mayek_Ext} \ep{Block=Meetei_Mayek_Extensions} (32) \& \ep{Block: Meetei_Mayek_Extensions} (Short: \ep{Blk=MeeteiMayekExt}) \& (32: U+AAE0..AAFF) \& \ep{Block: Mende_Kikakui} (NOT \ep{Mende_Kikakui} NOR \& \ep{Is_Mende_Kikakui}) (224: \& U+1E800..1E8DF) \& \ep{Block: Meroitic_Cursive} (NOT \ep{Meroitic_Cursive} NOR \& \ep{Is_Meroitic_Cursive}) (96: \& U+109A0..109FF) \& \ep{Block: Meroitic_Hieroglyphs} (32: U+10980..1099F) \& \ep{Block: Miao} (NOT \ep{Miao} NOR \ep{Is_Miao}) (160: \& U+16F00..16F9F) \& \ep{Block: Misc_Arrows} \ep{Block=Miscellaneous_Symbols_And_Arrows} \& (256) \& \ep{Block: Misc_Math_Symbols_A} \ep{Block= \& Miscellaneous_Mathematical_Symbols_A} \& (48) \& \ep{Block: Misc_Math_Symbols_B} \ep{Block= \& Miscellaneous_Mathematical_Symbols_B} \& (128) \& \ep{Block: Misc_Pictographs} \ep{Block= \& Miscellaneous_Symbols_And_Pictographs} \& (768) \& \ep{Block: Misc_Symbols} \ep{Block=Miscellaneous_Symbols} (256) \& \ep{Block: Misc_Technical} \ep{Block=Miscellaneous_Technical} (256) \& \ep{Block: Miscellaneous_Mathematical_Symbols_A} (Short: \ep{Blk= \& MiscMathSymbolsA}) (48: U+27C0..27EF) \& \ep{Block: Miscellaneous_Mathematical_Symbols_B} (Short: \ep{Blk= \& MiscMathSymbolsB}) (128: U+2980..29FF) \& \ep{Block: Miscellaneous_Symbols} (Short: \ep{Blk=MiscSymbols}) \& (256: U+2600..26FF) \& \ep{Block: Miscellaneous_Symbols_And_Arrows} (Short: \ep{Blk= \& MiscArrows}) (256: U+2B00..2BFF) \& \ep{Block: Miscellaneous_Symbols_And_Pictographs} (Short: \ep{Blk= \& MiscPictographs}) (768: U+1F300..1F5FF) \& \ep{Block: Miscellaneous_Technical} (Short: \ep{Blk=MiscTechnical}) \& (256: U+2300..23FF) \& \ep{Block: Modi} (NOT \ep{Modi} NOR \ep{Is_Modi}) (96: \& U+11600..1165F) \& \ep{Block: Modifier_Letters} \ep{Block=Spacing_Modifier_Letters} (80) \& \ep{Block: Modifier_Tone_Letters} (32: U+A700..A71F) \& \ep{Block: Mongolian} (NOT \ep{Mongolian} NOR \ep{Is_Mongolian}) \& (176: U+1800..18AF) \& \ep{Block: Mongolian_Sup} \ep{Block=Mongolian_Supplement} (32) \& \ep{Block: Mongolian_Supplement} (Short: \ep{Blk=MongolianSup}) (32: \& U+11660..1167F) \& \ep{Block: Mro} (NOT \ep{Mro} NOR \ep{Is_Mro}) (48: \& U+16A40..16A6F) \& \ep{Block: Multani} (NOT \ep{Multani} NOR \ep{Is_Multani}) (48: \& U+11280..112AF) \& \ep{Block: Music} \ep{Block=Musical_Symbols} (256) \& \ep{Block: Musical_Symbols} (Short: \ep{Blk=Music}) (256: \& U+1D100..1D1FF) \& \ep{Block: Myanmar} (NOT \ep{Myanmar} NOR \ep{Is_Myanmar}) (160: \& U+1000..109F) \& \ep{Block: Myanmar_Ext_A} \ep{Block=Myanmar_Extended_A} (32) \& \ep{Block: Myanmar_Ext_B} \ep{Block=Myanmar_Extended_B} (32) \& \ep{Block: Myanmar_Extended_A} (Short: \ep{Blk=MyanmarExtA}) (32: \& U+AA60..AA7F) \& \ep{Block: Myanmar_Extended_B} (Short: \ep{Blk=MyanmarExtB}) (32: \& U+A9E0..A9FF) \& \ep{Block: Nabataean} (NOT \ep{Nabataean} NOR \ep{Is_Nabataean}) \& (48: U+10880..108AF) \& \ep{Block: Nandinagari} (NOT \ep{Nandinagari} NOR \& \ep{Is_Nandinagari}) (96: U+119A0..119FF) \& \ep{Block: NB} \ep{Block=No_Block} (825_600 plus all \& above\-Unicode code points) \& \ep{Block: New_Tai_Lue} (NOT \ep{New_Tai_Lue} NOR \& \ep{Is_New_Tai_Lue}) (96: U+1980..19DF) \& \ep{Block: Newa} (NOT \ep{Newa} NOR \ep{Is_Newa}) (128: \& U+11400..1147F) \& \ep{Block: NKo} (NOT \ep{Nko} NOR \ep{Is_NKo}) (64: \& U+07C0..07FF) \& \ep{Block: No_Block} (Short: \ep{Blk=NB}) (825_600 plus all \& above\-Unicode code points: U+2FE0..2FEF, \& U+10200..1027F, U+103E0..103FF, \& U+105C0..105FF, U+107C0..107FF, \& U+108B0..108DF ...) \& \ep{Block: Number_Forms} (64: U+2150..218F) \& \ep{Block: Nushu} (NOT \ep{Nushu} NOR \ep{Is_Nushu}) (400: \& U+1B170..1B2FF) \& \ep{Block: Nyiakeng_Puachue_Hmong} (NOT \ep{Nyiakeng_Puachue_Hmong} \& NOR \ep{Is_Nyiakeng_Puachue_Hmong}) (80: \& U+1E100..1E14F) \& \ep{Block: OCR} \ep{Block=Optical_Character_Recognition} \& (32) \& \ep{Block: Ogham} (NOT \ep{Ogham} NOR \ep{Is_Ogham}) (32: \& U+1680..169F) \& \ep{Block: Ol_Chiki} (48: U+1C50..1C7F) \& \ep{Block: Old_Hungarian} (NOT \ep{Old_Hungarian} NOR \& \ep{Is_Old_Hungarian}) (128: \& U+10C80..10CFF) \& \ep{Block: Old_Italic} (NOT \ep{Old_Italic} NOR \ep{Is_Old_Italic}) \& (48: U+10300..1032F) \& \ep{Block: Old_North_Arabian} (32: U+10A80..10A9F) \& \ep{Block: Old_Permic} (NOT \ep{Old_Permic} NOR \ep{Is_Old_Permic}) \& (48: U+10350..1037F) \& \ep{Block: Old_Persian} (NOT \ep{Old_Persian} NOR \& \ep{Is_Old_Persian}) (64: U+103A0..103DF) \& \ep{Block: Old_Sogdian} (NOT \ep{Old_Sogdian} NOR \& \ep{Is_Old_Sogdian}) (48: U+10F00..10F2F) \& \ep{Block: Old_South_Arabian} (32: U+10A60..10A7F) \& \ep{Block: Old_Turkic} (NOT \ep{Old_Turkic} NOR \ep{Is_Old_Turkic}) \& (80: U+10C00..10C4F) \& \ep{Block: Old_Uyghur} (NOT \ep{Old_Uyghur} NOR \ep{Is_Old_Uyghur}) \& (64: U+10F70..10FAF) \& \ep{Block: Optical_Character_Recognition} (Short: \ep{Blk=OCR}) (32: \& U+2440..245F) \& \ep{Block: Oriya} (NOT \ep{Oriya} NOR \ep{Is_Oriya}) (128: \& U+0B00..0B7F) \& \ep{Block: Ornamental_Dingbats} (48: U+1F650..1F67F) \& \ep{Block: Osage} (NOT \ep{Osage} NOR \ep{Is_Osage}) (80: \& U+104B0..104FF) \& \ep{Block: Osmanya} (NOT \ep{Osmanya} NOR \ep{Is_Osmanya}) (48: \& U+10480..104AF) \& \ep{Block: Ottoman_Siyaq_Numbers} (80: U+1ED00..1ED4F) \& \ep{Block: Pahawh_Hmong} (NOT \ep{Pahawh_Hmong} NOR \& \ep{Is_Pahawh_Hmong}) (144: \& U+16B00..16B8F) \& \ep{Block: Palmyrene} (32: U+10860..1087F) \& \ep{Block: Pau_Cin_Hau} (NOT \ep{Pau_Cin_Hau} NOR \& \ep{Is_Pau_Cin_Hau}) (64: U+11AC0..11AFF) \& \ep{Block: Phags_Pa} (NOT \ep{Phags_Pa} NOR \ep{Is_Phags_Pa}) \& (64: U+A840..A87F) \& \ep{Block: Phaistos} \ep{Block=Phaistos_Disc} (48) \& \ep{Block: Phaistos_Disc} (Short: \ep{Blk=Phaistos}) (48: \& U+101D0..101FF) \& \ep{Block: Phoenician} (NOT \ep{Phoenician} NOR \ep{Is_Phoenician}) \& (32: U+10900..1091F) \& \ep{Block: Phonetic_Ext} \ep{Block=Phonetic_Extensions} (128) \& \ep{Block: Phonetic_Ext_Sup} \ep{Block= \& Phonetic_Extensions_Supplement} (64) \& \ep{Block: Phonetic_Extensions} (Short: \ep{Blk=PhoneticExt}) (128: \& U+1D00..1D7F) \& \ep{Block: Phonetic_Extensions_Supplement} (Short: \ep{Blk= \& PhoneticExtSup}) (64: U+1D80..1DBF) \& \ep{Block: Playing_Cards} (96: U+1F0A0..1F0FF) \& \ep{Block: Private_Use} \ep{Block=Private_Use_Area} (NOT \& \ep{Private_Use} NOR \ep{Is_Private_Use}) \& (6400) \& \ep{Block: Private_Use_Area} (Short: \ep{Blk=PUA}; NOT \& \ep{Private_Use} NOR \ep{Is_Private_Use}) \& (6400: U+E000..F8FF) \& \ep{Block: Psalter_Pahlavi} (NOT \ep{Psalter_Pahlavi} NOR \& \ep{Is_Psalter_Pahlavi}) (48: \& U+10B80..10BAF) \& \ep{Block: PUA} \ep{Block=Private_Use_Area} (NOT \& \ep{Private_Use} NOR \ep{Is_Private_Use}) \& (6400) \& \ep{Block: Punctuation} \ep{Block=General_Punctuation} (NOT \& \ep{Punct} NOR \ep{Is_Punctuation}) (112) \& \ep{Block: Rejang} (NOT \ep{Rejang} NOR \ep{Is_Rejang}) (48: \& U+A930..A95F) \& \ep{Block: Rumi} \ep{Block=Rumi_Numeral_Symbols} (32) \& \ep{Block: Rumi_Numeral_Symbols} (Short: \ep{Blk=Rumi}) (32: \& U+10E60..10E7F) \& \ep{Block: Runic} (NOT \ep{Runic} NOR \ep{Is_Runic}) (96: \& U+16A0..16FF) \& \ep{Block: Samaritan} (NOT \ep{Samaritan} NOR \ep{Is_Samaritan}) \& (64: U+0800..083F) \& \ep{Block: Saurashtra} (NOT \ep{Saurashtra} NOR \ep{Is_Saurashtra}) \& (96: U+A880..A8DF) \& \ep{Block: Sharada} (NOT \ep{Sharada} NOR \ep{Is_Sharada}) (96: \& U+11180..111DF) \& \ep{Block: Shavian} (48: U+10450..1047F) \& \ep{Block: Shorthand_Format_Controls} (16: U+1BCA0..1BCAF) \& \ep{Block: Siddham} (NOT \ep{Siddham} NOR \ep{Is_Siddham}) (128: \& U+11580..115FF) \& \ep{Block: Sinhala} (NOT \ep{Sinhala} NOR \ep{Is_Sinhala}) (128: \& U+0D80..0DFF) \& \ep{Block: Sinhala_Archaic_Numbers} (32: U+111E0..111FF) \& \ep{Block: Small_Form_Variants} (Short: \ep{Blk=SmallForms}) (32: \& U+FE50..FE6F) \& \ep{Block: Small_Forms} \ep{Block=Small_Form_Variants} (32) \& \ep{Block: Small_Kana_Ext} \ep{Block=Small_Kana_Extension} (64) \& \ep{Block: Small_Kana_Extension} (Short: \ep{Blk=SmallKanaExt}) (64: \& U+1B130..1B16F) \& \ep{Block: Sogdian} (NOT \ep{Sogdian} NOR \ep{Is_Sogdian}) (64: \& U+10F30..10F6F) \& \ep{Block: Sora_Sompeng} (NOT \ep{Sora_Sompeng} NOR \& \ep{Is_Sora_Sompeng}) (48: U+110D0..110FF) \& \ep{Block: Soyombo} (NOT \ep{Soyombo} NOR \ep{Is_Soyombo}) (96: \& U+11A50..11AAF) \& \ep{Block: Spacing_Modifier_Letters} (Short: \ep{Blk= \& ModifierLetters}) (80: U+02B0..02FF) \& \ep{Block: Specials} (16: U+FFF0..FFFF) \& \ep{Block: Sundanese} (NOT \ep{Sundanese} NOR \ep{Is_Sundanese}) \& (64: U+1B80..1BBF) \& \ep{Block: Sundanese_Sup} \ep{Block=Sundanese_Supplement} (16) \& \ep{Block: Sundanese_Supplement} (Short: \ep{Blk=SundaneseSup}) (16: \& U+1CC0..1CCF) \& \ep{Block: Sup_Arrows_A} \ep{Block=Supplemental_Arrows_A} (16) \& \ep{Block: Sup_Arrows_B} \ep{Block=Supplemental_Arrows_B} (128) \& \ep{Block: Sup_Arrows_C} \ep{Block=Supplemental_Arrows_C} (256) \& \ep{Block: Sup_Math_Operators} \ep{Block= \& Supplemental_Mathematical_Operators} \& (256) \& \ep{Block: Sup_PUA_A} \ep{Block=Supplementary_Private_Use_Area_A} \& (65_536) \& \ep{Block: Sup_PUA_B} \ep{Block=Supplementary_Private_Use_Area_B} \& (65_536) \& \ep{Block: Sup_Punctuation} \ep{Block=Supplemental_Punctuation} (128) \& \ep{Block: Sup_Symbols_And_Pictographs} \ep{Block= \& Supplemental_Symbols_And_Pictographs} \& (256) \& \ep{Block: Super_And_Sub} \ep{Block=Superscripts_And_Subscripts} (48) \& \ep{Block: Superscripts_And_Subscripts} (Short: \ep{Blk= \& SuperAndSub}) (48: U+2070..209F) \& \ep{Block: Supplemental_Arrows_A} (Short: \ep{Blk=SupArrowsA}) (16: \& U+27F0..27FF) \& \ep{Block: Supplemental_Arrows_B} (Short: \ep{Blk=SupArrowsB}) (128: \& U+2900..297F) \& \ep{Block: Supplemental_Arrows_C} (Short: \ep{Blk=SupArrowsC}) (256: \& U+1F800..1F8FF) \& \ep{Block: Supplemental_Mathematical_Operators} (Short: \ep{Blk= \& SupMathOperators}) (256: U+2A00..2AFF) \& \ep{Block: Supplemental_Punctuation} (Short: \ep{Blk= \& SupPunctuation}) (128: U+2E00..2E7F) \& \ep{Block: Supplemental_Symbols_And_Pictographs} (Short: \ep{Blk= \& SupSymbolsAndPictographs}) (256: \& U+1F900..1F9FF) \& \ep{Block: Supplementary_Private_Use_Area_A} (Short: \ep{Blk= \& SupPUAA}) (65_536: U+F0000..FFFFF) \& \ep{Block: Supplementary_Private_Use_Area_B} (Short: \ep{Blk= \& SupPUAB}) (65_536: U+100000..10FFFF) \& \ep{Block: Sutton_SignWriting} (688: U+1D800..1DAAF) \& \ep{Block: Syloti_Nagri} (NOT \ep{Syloti_Nagri} NOR \& \ep{Is_Syloti_Nagri}) (48: U+A800..A82F) \& \ep{Block: Symbols_And_Pictographs_Ext_A} \ep{Block= \& Symbols_And_Pictographs_Extended_A} (144) \& \ep{Block: Symbols_And_Pictographs_Extended_A} (Short: \ep{Blk= \& SymbolsAndPictographsExtA}) (144: \& U+1FA70..1FAFF) \& \ep{Block: Symbols_For_Legacy_Computing} (256: U+1FB00..1FBFF) \& \ep{Block: Syriac} (NOT \ep{Syriac} NOR \ep{Is_Syriac}) (80: \& U+0700..074F) \& \ep{Block: Syriac_Sup} \ep{Block=Syriac_Supplement} (16) \& \ep{Block: Syriac_Supplement} (Short: \ep{Blk=SyriacSup}) (16: \& U+0860..086F) \& \ep{Block: Tagalog} (NOT \ep{Tagalog} NOR \ep{Is_Tagalog}) (32: \& U+1700..171F) \& \ep{Block: Tagbanwa} (NOT \ep{Tagbanwa} NOR \ep{Is_Tagbanwa}) \& (32: U+1760..177F) \& \ep{Block: Tags} (128: U+E0000..E007F) \& \ep{Block: Tai_Le} (NOT \ep{Tai_Le} NOR \ep{Is_Tai_Le}) (48: \& U+1950..197F) \& \ep{Block: Tai_Tham} (NOT \ep{Tai_Tham} NOR \ep{Is_Tai_Tham}) \& (144: U+1A20..1AAF) \& \ep{Block: Tai_Viet} (NOT \ep{Tai_Viet} NOR \ep{Is_Tai_Viet}) \& (96: U+AA80..AADF) \& \ep{Block: Tai_Xuan_Jing} \ep{Block=Tai_Xuan_Jing_Symbols} (96) \& \ep{Block: Tai_Xuan_Jing_Symbols} (Short: \ep{Blk=TaiXuanJing}) (96: \& U+1D300..1D35F) \& \ep{Block: Takri} (NOT \ep{Takri} NOR \ep{Is_Takri}) (80: \& U+11680..116CF) \& \ep{Block: Tamil} (NOT \ep{Tamil} NOR \ep{Is_Tamil}) (128: \& U+0B80..0BFF) \& \ep{Block: Tamil_Sup} \ep{Block=Tamil_Supplement} (64) \& \ep{Block: Tamil_Supplement} (Short: \ep{Blk=TamilSup}) (64: \& U+11FC0..11FFF) \& \ep{Block: Tangsa} (NOT \ep{Tangsa} NOR \ep{Is_Tangsa}) (96: \& U+16A70..16ACF) \& \ep{Block: Tangut} (NOT \ep{Tangut} NOR \ep{Is_Tangut}) (6144: \& U+17000..187FF) \& \ep{Block: Tangut_Components} (768: U+18800..18AFF) \& \ep{Block: Tangut_Sup} \ep{Block=Tangut_Supplement} (128) \& \ep{Block: Tangut_Supplement} (Short: \ep{Blk=TangutSup}) (128: \& U+18D00..18D7F) \& \ep{Block: Telugu} (NOT \ep{Telugu} NOR \ep{Is_Telugu}) (128: \& U+0C00..0C7F) \& \ep{Block: Thaana} (NOT \ep{Thaana} NOR \ep{Is_Thaana}) (64: \& U+0780..07BF) \& \ep{Block: Thai} (NOT \ep{Thai} NOR \ep{Is_Thai}) (128: \& U+0E00..0E7F) \& \ep{Block: Tibetan} (NOT \ep{Tibetan} NOR \ep{Is_Tibetan}) (256: \& U+0F00..0FFF) \& \ep{Block: Tifinagh} (NOT \ep{Tifinagh} NOR \ep{Is_Tifinagh}) \& (80: U+2D30..2D7F) \& \ep{Block: Tirhuta} (NOT \ep{Tirhuta} NOR \ep{Is_Tirhuta}) (96: \& U+11480..114DF) \& \ep{Block: Toto} (NOT \ep{Toto} NOR \ep{Is_Toto}) (48: \& U+1E290..1E2BF) \& \ep{Block: Transport_And_Map} \ep{Block=Transport_And_Map_Symbols} \& (128) \& \ep{Block: Transport_And_Map_Symbols} (Short: \ep{Blk= \& TransportAndMap}) (128: U+1F680..1F6FF) \& \ep{Block: UCAS} \ep{Block= \& Unified_Canadian_Aboriginal_Syllabics} \& (640) \& \ep{Block: UCAS_Ext} \ep{Block= \& Unified_Canadian_Aboriginal_Syllabics_\- \& Extended} (80) \& \ep{Block: UCAS_Ext_A} \ep{Block= \& Unified_Canadian_Aboriginal_Syllabics_\- \& Extended_A} (16) \& \ep{Block: Ugaritic} (NOT \ep{Ugaritic} NOR \ep{Is_Ugaritic}) \& (32: U+10380..1039F) \& \ep{Block: Unified_Canadian_Aboriginal_Syllabics} (Short: \ep{Blk= \& UCAS}) (640: U+1400..167F) \& \ep{Block: Unified_Canadian_Aboriginal_Syllabics_Extended} (Short: \& \ep{Blk=UCASExt}) (80: U+18B0..18FF) \& \ep{Block: Unified_Canadian_Aboriginal_Syllabics_Extended_A} \& (Short: \ep{Blk=UCASExtA}) (16: \& U+11AB0..11ABF) \& \ep{Block: Vai} (NOT \ep{Vai} NOR \ep{Is_Vai}) (320: \& U+A500..A63F) \& \ep{Block: Variation_Selectors} (Short: \ep{Blk=VS}; NOT \& \ep{Variation_Selector} NOR \ep{Is_VS}) \& (16: U+FE00..FE0F) \& \ep{Block: Variation_Selectors_Supplement} (Short: \ep{Blk=VSSup}) \& (240: U+E0100..E01EF) \& \ep{Block: Vedic_Ext} \ep{Block=Vedic_Extensions} (48) \& \ep{Block: Vedic_Extensions} (Short: \ep{Blk=VedicExt}) (48: \& U+1CD0..1CFF) \& \ep{Block: Vertical_Forms} (16: U+FE10..FE1F) \& \ep{Block: Vithkuqi} (NOT \ep{Vithkuqi} NOR \ep{Is_Vithkuqi}) \& (80: U+10570..105BF) \& \ep{Block: VS} \ep{Block=Variation_Selectors} (NOT \& \ep{Variation_Selector} NOR \ep{Is_VS}) \& (16) \& \ep{Block: VS_Sup} \ep{Block=Variation_Selectors_Supplement} \& (240) \& \ep{Block: Wancho} (NOT \ep{Wancho} NOR \ep{Is_Wancho}) (64: \& U+1E2C0..1E2FF) \& \ep{Block: Warang_Citi} (NOT \ep{Warang_Citi} NOR \& \ep{Is_Warang_Citi}) (96: U+118A0..118FF) \& \ep{Block: Yezidi} (NOT \ep{Yezidi} NOR \ep{Is_Yezidi}) (64: \& U+10E80..10EBF) \& \ep{Block: Yi_Radicals} (64: U+A490..A4CF) \& \ep{Block: Yi_Syllables} (1168: U+A000..A48F) \& \ep{Block: Yijing} \ep{Block=Yijing_Hexagram_Symbols} (64) \& \ep{Block: Yijing_Hexagram_Symbols} (Short: \ep{Blk=Yijing}) (64: \& U+4DC0..4DFF) \& \ep{Block: Zanabazar_Square} (NOT \ep{Zanabazar_Square} NOR \& \ep{Is_Zanabazar_Square}) (80: \& U+11A00..11A4F) \& \ep{Block: Znamenny_Music} \ep{Block=Znamenny_Musical_Notation} (208) \& \ep{Block: Znamenny_Musical_Notation} (Short: \ep{Blk= \& ZnamennyMusic}) (208: U+1CF00..1CFCF) \& X \ep{Block_Elements} \ep{Block=Block_Elements} (32) \& \ep{Bopo} \ep{Bopomofo} (= \ep{Script_Extensions= \& Bopomofo}) (NOT \ep{Block=Bopomofo}) (117) \& \ep{Bopomofo} \ep{Script_Extensions=Bopomofo} (Short: \& \ep{Bopo}; NOT \ep{Block=Bopomofo}) (117) \& X \ep{Bopomofo_Ext} \ep{Bopomofo_Extended} (= \ep{Block= \& Bopomofo_Extended}) (32) \& X \ep{Bopomofo_Extended} \ep{Block=Bopomofo_Extended} (Short: \& \ep{InBopomofoExt}) (32) \& X \ep{Box_Drawing} \ep{Block=Box_Drawing} (128) \& \ep{Bpt: *} \ep{Bidi_Paired_Bracket_Type: *} \& \ep{Brah} \ep{Brahmi} (= \ep{Script_Extensions= \& Brahmi}) (NOT \ep{Block=Brahmi}) (115) \& \ep{Brahmi} \ep{Script_Extensions=Brahmi} (Short: \& \ep{Brah}; NOT \ep{Block=Brahmi}) (115) \& \ep{Brai} \ep{Braille} (= \ep{Script_Extensions= \& Braille}) (256) \& \ep{Braille} \ep{Script_Extensions=Braille} (Short: \& \ep{Brai}) (256) \& X \ep{Braille_Patterns} \ep{Block=Braille_Patterns} (Short: \& \ep{InBraille}) (256) \& \ep{Bugi} \ep{Buginese} (= \ep{Script_Extensions= \& Buginese}) (NOT \ep{Block=Buginese}) (31) \& \ep{Buginese} \ep{Script_Extensions=Buginese} (Short: \& \ep{Bugi}; NOT \ep{Block=Buginese}) (31) \& \ep{Buhd} \ep{Buhid} (= \ep{Script_Extensions=Buhid}) \& (NOT \ep{Block=Buhid}) (22) \& \ep{Buhid} \ep{Script_Extensions=Buhid} (Short: \& \ep{Buhd}; NOT \ep{Block=Buhid}) (22) \& X \ep{Byzantine_Music} \ep{Byzantine_Musical_Symbols} (= \ep{Block= \& Byzantine_Musical_Symbols}) (256) \& X \ep{Byzantine_Musical_Symbols} \ep{Block=Byzantine_Musical_Symbols} \& (Short: \ep{InByzantineMusic}) (256) \& \ep{C} \epC \ep{Other} (= \ep{General_Category=Other}) \& (969_578 plus all above\-Unicode code \& points) \& \ep{Cakm} \ep{Chakma} (= \ep{Script_Extensions= \& Chakma}) (NOT \ep{Block=Chakma}) (91) \& \ep{Canadian_Aboriginal} \ep{Script_Extensions=Canadian_Aboriginal} \& (Short: \ep{Cans}) (726) \& X \ep{Canadian_Syllabics} \ep{Unified_Canadian_Aboriginal_Syllabics} \& (= \ep{Block= \& Unified_Canadian_Aboriginal_Syllabics}) \& (640) \& T \ep{Canonical_Combining_Class: 0} \ep{Canonical_Combining_Class= \& Not_Reordered} (1_113_200 plus all \& above\-Unicode code points) \& T \ep{Canonical_Combining_Class: 1} \ep{Canonical_Combining_Class= \& Overlay} (32) \& T \ep{Canonical_Combining_Class: 6} \ep{Canonical_Combining_Class= \& Han_Reading} (2) \& T \ep{Canonical_Combining_Class: 7} \ep{Canonical_Combining_Class= \& Nukta} (27) \& T \ep{Canonical_Combining_Class: 8} \ep{Canonical_Combining_Class= \& Kana_Voicing} (2) \& T \ep{Canonical_Combining_Class: 9} \ep{Canonical_Combining_Class= \& Virama} (63) \& T \ep{Canonical_Combining_Class: 10} \ep{Canonical_Combining_Class= \& CCC10} (1) \& \ep{Canonical_Combining_Class: CCC10} (Short: \ep{Ccc=CCC10}) (1: \& U+05B0) \& T \ep{Canonical_Combining_Class: 11} \ep{Canonical_Combining_Class= \& CCC11} (1) \& \ep{Canonical_Combining_Class: CCC11} (Short: \ep{Ccc=CCC11}) (1: \& U+05B1) \& T \ep{Canonical_Combining_Class: 12} \ep{Canonical_Combining_Class= \& CCC12} (1) \& \ep{Canonical_Combining_Class: CCC12} (Short: \ep{Ccc=CCC12}) (1: \& U+05B2) \& T \ep{Canonical_Combining_Class: 13} \ep{Canonical_Combining_Class= \& CCC13} (1) \& \ep{Canonical_Combining_Class: CCC13} (Short: \ep{Ccc=CCC13}) (1: \& U+05B3) \& T \ep{Canonical_Combining_Class: 14} \ep{Canonical_Combining_Class= \& CCC14} (1) \& \ep{Canonical_Combining_Class: CCC14} (Short: \ep{Ccc=CCC14}) (1: \& U+05B4) \& T \ep{Canonical_Combining_Class: 15} \ep{Canonical_Combining_Class= \& CCC15} (1) \& \ep{Canonical_Combining_Class: CCC15} (Short: \ep{Ccc=CCC15}) (1: \& U+05B5) \& T \ep{Canonical_Combining_Class: 16} \ep{Canonical_Combining_Class= \& CCC16} (1) \& \ep{Canonical_Combining_Class: CCC16} (Short: \ep{Ccc=CCC16}) (1: \& U+05B6) \& T \ep{Canonical_Combining_Class: 17} \ep{Canonical_Combining_Class= \& CCC17} (1) \& \ep{Canonical_Combining_Class: CCC17} (Short: \ep{Ccc=CCC17}) (1: \& U+05B7) \& T \ep{Canonical_Combining_Class: 18} \ep{Canonical_Combining_Class= \& CCC18} (2) \& \ep{Canonical_Combining_Class: CCC18} (Short: \ep{Ccc=CCC18}) (2: \& U+05B8, U+05C7) \& T \ep{Canonical_Combining_Class: 19} \ep{Canonical_Combining_Class= \& CCC19} (2) \& \ep{Canonical_Combining_Class: CCC19} (Short: \ep{Ccc=CCC19}) (2: \& U+05B9..05BA) \& T \ep{Canonical_Combining_Class: 20} \ep{Canonical_Combining_Class= \& CCC20} (1) \& \ep{Canonical_Combining_Class: CCC20} (Short: \ep{Ccc=CCC20}) (1: \& U+05BB) \& T \ep{Canonical_Combining_Class: 21} \ep{Canonical_Combining_Class= \& CCC21} (1) \& \ep{Canonical_Combining_Class: CCC21} (Short: \ep{Ccc=CCC21}) (1: \& U+05BC) \& T \ep{Canonical_Combining_Class: 22} \ep{Canonical_Combining_Class= \& CCC22} (1) \& \ep{Canonical_Combining_Class: CCC22} (Short: \ep{Ccc=CCC22}) (1: \& U+05BD) \& T \ep{Canonical_Combining_Class: 23} \ep{Canonical_Combining_Class= \& CCC23} (1) \& \ep{Canonical_Combining_Class: CCC23} (Short: \ep{Ccc=CCC23}) (1: \& U+05BF) \& T \ep{Canonical_Combining_Class: 24} \ep{Canonical_Combining_Class= \& CCC24} (1) \& \ep{Canonical_Combining_Class: CCC24} (Short: \ep{Ccc=CCC24}) (1: \& U+05C1) \& T \ep{Canonical_Combining_Class: 25} \ep{Canonical_Combining_Class= \& CCC25} (1) \& \ep{Canonical_Combining_Class: CCC25} (Short: \ep{Ccc=CCC25}) (1: \& U+05C2) \& T \ep{Canonical_Combining_Class: 26} \ep{Canonical_Combining_Class= \& CCC26} (1) \& \ep{Canonical_Combining_Class: CCC26} (Short: \ep{Ccc=CCC26}) (1: \& U+FB1E) \& T \ep{Canonical_Combining_Class: 27} \ep{Canonical_Combining_Class= \& CCC27} (2) \& \ep{Canonical_Combining_Class: CCC27} (Short: \ep{Ccc=CCC27}) (2: \& U+064B, U+08F0) \& T \ep{Canonical_Combining_Class: 28} \ep{Canonical_Combining_Class= \& CCC28} (2) \& \ep{Canonical_Combining_Class: CCC28} (Short: \ep{Ccc=CCC28}) (2: \& U+064C, U+08F1) \& T \ep{Canonical_Combining_Class: 29} \ep{Canonical_Combining_Class= \& CCC29} (2) \& \ep{Canonical_Combining_Class: CCC29} (Short: \ep{Ccc=CCC29}) (2: \& U+064D, U+08F2) \& T \ep{Canonical_Combining_Class: 30} \ep{Canonical_Combining_Class= \& CCC30} (2) \& \ep{Canonical_Combining_Class: CCC30} (Short: \ep{Ccc=CCC30}) (2: \& U+0618, U+064E) \& T \ep{Canonical_Combining_Class: 31} \ep{Canonical_Combining_Class= \& CCC31} (2) \& \ep{Canonical_Combining_Class: CCC31} (Short: \ep{Ccc=CCC31}) (2: \& U+0619, U+064F) \& T \ep{Canonical_Combining_Class: 32} \ep{Canonical_Combining_Class= \& CCC32} (2) \& \ep{Canonical_Combining_Class: CCC32} (Short: \ep{Ccc=CCC32}) (2: \& U+061A, U+0650) \& T \ep{Canonical_Combining_Class: 33} \ep{Canonical_Combining_Class= \& CCC33} (1) \& \ep{Canonical_Combining_Class: CCC33} (Short: \ep{Ccc=CCC33}) (1: \& U+0651) \& T \ep{Canonical_Combining_Class: 34} \ep{Canonical_Combining_Class= \& CCC34} (1) \& \ep{Canonical_Combining_Class: CCC34} (Short: \ep{Ccc=CCC34}) (1: \& U+0652) \& T \ep{Canonical_Combining_Class: 35} \ep{Canonical_Combining_Class= \& CCC35} (1) \& \ep{Canonical_Combining_Class: CCC35} (Short: \ep{Ccc=CCC35}) (1: \& U+0670) \& T \ep{Canonical_Combining_Class: 36} \ep{Canonical_Combining_Class= \& CCC36} (1) \& \ep{Canonical_Combining_Class: CCC36} (Short: \ep{Ccc=CCC36}) (1: \& U+0711) \& T \ep{Canonical_Combining_Class: 84} \ep{Canonical_Combining_Class= \& CCC84} (1) \& \ep{Canonical_Combining_Class: CCC84} (Short: \ep{Ccc=CCC84}) (1: \& U+0C55) \& T \ep{Canonical_Combining_Class: 91} \ep{Canonical_Combining_Class= \& CCC91} (1) \& \ep{Canonical_Combining_Class: CCC91} (Short: \ep{Ccc=CCC91}) (1: \& U+0C56) \& T \ep{Canonical_Combining_Class: 103} \ep{Canonical_Combining_Class= \& CCC103} (2) \& \ep{Canonical_Combining_Class: CCC103} (Short: \ep{Ccc=CCC103}) (2: \& U+0E38..0E39) \& T \ep{Canonical_Combining_Class: 107} \ep{Canonical_Combining_Class= \& CCC107} (4) \& \ep{Canonical_Combining_Class: CCC107} (Short: \ep{Ccc=CCC107}) (4: \& U+0E48..0E4B) \& T \ep{Canonical_Combining_Class: 118} \ep{Canonical_Combining_Class= \& CCC118} (2) \& \ep{Canonical_Combining_Class: CCC118} (Short: \ep{Ccc=CCC118}) (2: \& U+0EB8..0EB9) \& T \ep{Canonical_Combining_Class: 122} \ep{Canonical_Combining_Class= \& CCC122} (4) \& \ep{Canonical_Combining_Class: CCC122} (Short: \ep{Ccc=CCC122}) (4: \& U+0EC8..0ECB) \& T \ep{Canonical_Combining_Class: 129} \ep{Canonical_Combining_Class= \& CCC129} (1) \& \ep{Canonical_Combining_Class: CCC129} (Short: \ep{Ccc=CCC129}) (1: \& U+0F71) \& T \ep{Canonical_Combining_Class: 130} \ep{Canonical_Combining_Class= \& CCC130} (6) \& \ep{Canonical_Combining_Class: CCC130} (Short: \ep{Ccc=CCC130}) (6: \& U+0F72, U+0F7A..0F7D, U+0F80) \& T \ep{Canonical_Combining_Class: 132} \ep{Canonical_Combining_Class= \& CCC132} (1) \& \ep{Canonical_Combining_Class: CCC132} (Short: \ep{Ccc=CCC132}) (1: \& U+0F74) \& T \ep{Canonical_Combining_Class: 133} \ep{Canonical_Combining_Class= \& CCC133} (0) \& \ep{Canonical_Combining_Class: CCC133} (Short: \ep{Ccc=CCC133}) (0) \& T \ep{Canonical_Combining_Class: 200} \ep{Canonical_Combining_Class= \& Attached_Below_Left} (0) \& T \ep{Canonical_Combining_Class: 202} \ep{Canonical_Combining_Class= \& Attached_Below} (5) \& T \ep{Canonical_Combining_Class: 214} \ep{Canonical_Combining_Class= \& Attached_Above} (1) \& T \ep{Canonical_Combining_Class: 216} \ep{Canonical_Combining_Class= \& Attached_Above_Right} (9) \& T \ep{Canonical_Combining_Class: 218} \ep{Canonical_Combining_Class= \& Below_Left} (2) \& T \ep{Canonical_Combining_Class: 220} \ep{Canonical_Combining_Class= \& Below} (177) \& T \ep{Canonical_Combining_Class: 222} \ep{Canonical_Combining_Class= \& Below_Right} (4) \& T \ep{Canonical_Combining_Class: 224} \ep{Canonical_Combining_Class= \& Left} (2) \& T \ep{Canonical_Combining_Class: 226} \ep{Canonical_Combining_Class= \& Right} (1) \& T \ep{Canonical_Combining_Class: 228} \ep{Canonical_Combining_Class= \& Above_Left} (5) \& T \ep{Canonical_Combining_Class: 230} \ep{Canonical_Combining_Class= \& Above} (508) \& T \ep{Canonical_Combining_Class: 232} \ep{Canonical_Combining_Class= \& Above_Right} (5) \& T \ep{Canonical_Combining_Class: 233} \ep{Canonical_Combining_Class= \& Double_Below} (4) \& T \ep{Canonical_Combining_Class: 234} \ep{Canonical_Combining_Class= \& Double_Above} (5) \& T \ep{Canonical_Combining_Class: 240} \ep{Canonical_Combining_Class= \& Iota_Subscript} (1) \& \ep{Canonical_Combining_Class: A} \ep{Canonical_Combining_Class= \& Above} (508) \& \ep{Canonical_Combining_Class: Above} (Short: \ep{Ccc=A}) (508: \& U+0300..0314, U+033D..0344, U+0346, \& U+034A..034C, U+0350..0352, U+0357 ...) \& \ep{Canonical_Combining_Class: Above_Left} (Short: \ep{Ccc=AL}) (5: \& U+05AE, U+18A9, U+1DF7..1DF8, U+302B) \& \ep{Canonical_Combining_Class: Above_Right} (Short: \ep{Ccc=AR}) (5: \& U+0315, U+031A, U+0358, U+1DF6, U+302C) \& \ep{Canonical_Combining_Class: AL} \ep{Canonical_Combining_Class= \& Above_Left} (5) \& \ep{Canonical_Combining_Class: AR} \ep{Canonical_Combining_Class= \& Above_Right} (5) \& \ep{Canonical_Combining_Class: ATA} \ep{Canonical_Combining_Class= \& Attached_Above} (1) \& \ep{Canonical_Combining_Class: ATAR} \ep{Canonical_Combining_Class= \& Attached_Above_Right} (9) \& \ep{Canonical_Combining_Class: ATB} \ep{Canonical_Combining_Class= \& Attached_Below} (5) \& \ep{Canonical_Combining_Class: ATBL} \ep{Canonical_Combining_Class= \& Attached_Below_Left} (0) \& \ep{Canonical_Combining_Class: Attached_Above} (Short: \ep{Ccc=ATA}) \& (1: U+1DCE) \& \ep{Canonical_Combining_Class: Attached_Above_Right} (Short: \& \ep{Ccc=ATAR}) (9: U+031B, U+0F39, \& U+1D165..1D166, U+1D16E..1D172) \& \ep{Canonical_Combining_Class: Attached_Below} (Short: \ep{Ccc=ATB}) \& (5: U+0321..0322, U+0327..0328, U+1DD0) \& \ep{Canonical_Combining_Class: Attached_Below_Left} (Short: \ep{Ccc= \& ATBL}) (0) \& \ep{Canonical_Combining_Class: B} \ep{Canonical_Combining_Class= \& Below} (177) \& \ep{Canonical_Combining_Class: Below} (Short: \ep{Ccc=B}) (177: \& U+0316..0319, U+031C..0320, \& U+0323..0326, U+0329..0333, \& U+0339..033C, U+0347..0349 ...) \& \ep{Canonical_Combining_Class: Below_Left} (Short: \ep{Ccc=BL}) (2: \& U+1DFA, U+302A) \& \ep{Canonical_Combining_Class: Below_Right} (Short: \ep{Ccc=BR}) (4: \& U+059A, U+05AD, U+1939, U+302D) \& \ep{Canonical_Combining_Class: BL} \ep{Canonical_Combining_Class= \& Below_Left} (2) \& \ep{Canonical_Combining_Class: BR} \ep{Canonical_Combining_Class= \& Below_Right} (4) \& \ep{Canonical_Combining_Class: DA} \ep{Canonical_Combining_Class= \& Double_Above} (5) \& \ep{Canonical_Combining_Class: DB} \ep{Canonical_Combining_Class= \& Double_Below} (4) \& \ep{Canonical_Combining_Class: Double_Above} (Short: \ep{Ccc=DA}) \& (5: U+035D..035E, U+0360..0361, U+1DCD) \& \ep{Canonical_Combining_Class: Double_Below} (Short: \ep{Ccc=DB}) \& (4: U+035C, U+035F, U+0362, U+1DFC) \& \ep{Canonical_Combining_Class: Han_Reading} (Short: \ep{Ccc=HANR}) \& (2: U+16FF0..16FF1) \& \ep{Canonical_Combining_Class: HANR} \ep{Canonical_Combining_Class= \& Han_Reading} (2) \& \ep{Canonical_Combining_Class: Iota_Subscript} (Short: \ep{Ccc=IS}) \& (1: U+0345) \& \ep{Canonical_Combining_Class: IS} \ep{Canonical_Combining_Class= \& Iota_Subscript} (1) \& \ep{Canonical_Combining_Class: Kana_Voicing} (Short: \ep{Ccc=KV}) \& (2: U+3099..309A) \& \ep{Canonical_Combining_Class: KV} \ep{Canonical_Combining_Class= \& Kana_Voicing} (2) \& \ep{Canonical_Combining_Class: L} \ep{Canonical_Combining_Class= \& Left} (2) \& \ep{Canonical_Combining_Class: Left} (Short: \ep{Ccc=L}) (2: \& U+302E..302F) \& \ep{Canonical_Combining_Class: NK} \ep{Canonical_Combining_Class= \& Nukta} (27) \& \ep{Canonical_Combining_Class: Not_Reordered} (Short: \ep{Ccc=NR}) \& (1_113_200 plus all above\-Unicode code \& points: U+0000..02FF, U+034F, \& U+0370..0482, U+0488..0590, U+05BE, \& U+05C0 ...) \& \ep{Canonical_Combining_Class: NR} \ep{Canonical_Combining_Class= \& Not_Reordered} (1_113_200 plus all \& above\-Unicode code points) \& \ep{Canonical_Combining_Class: Nukta} (Short: \ep{Ccc=NK}) (27: \& U+093C, U+09BC, U+0A3C, U+0ABC, U+0B3C, \& U+0C3C ...) \& \ep{Canonical_Combining_Class: OV} \ep{Canonical_Combining_Class= \& Overlay} (32) \& \ep{Canonical_Combining_Class: Overlay} (Short: \ep{Ccc=OV}) (32: \& U+0334..0338, U+1CD4, U+1CE2..1CE8, \& U+20D2..20D3, U+20D8..20DA, U+20E5..20E6 \& ...) \& \ep{Canonical_Combining_Class: R} \ep{Canonical_Combining_Class= \& Right} (1) \& \ep{Canonical_Combining_Class: Right} (Short: \ep{Ccc=R}) (1: \& U+1D16D) \& \ep{Canonical_Combining_Class: Virama} (Short: \ep{Ccc=VR}) (63: \& U+094D, U+09CD, U+0A4D, U+0ACD, U+0B4D, \& U+0BCD ...) \& \ep{Canonical_Combining_Class: VR} \ep{Canonical_Combining_Class= \& Virama} (63) \& \ep{Cans} \ep{Canadian_Aboriginal} (= \& \ep{Script_Extensions= \& Canadian_Aboriginal}) (726) \& \ep{Cari} \ep{Carian} (= \ep{Script_Extensions= \& Carian}) (NOT \ep{Block=Carian}) (49) \& \ep{Carian} \ep{Script_Extensions=Carian} (Short: \& \ep{Cari}; NOT \ep{Block=Carian}) (49) \& \ep{Case_Ignorable} \ep{Case_Ignorable=Y} (Short: \ep{CI}) (2602) \& \ep{Case_Ignorable: N*} (Short: \ep{CI=N}, \eP{CI}) (1_111_510 plus \& all above\-Unicode code points: [\ex00\- \& \ex20!\e"#\e$\e%&\e(\e)*+,\e\-\e/0\-9;<=>?\e@A\-Z \& \e[\e\e\e]_a\-z\e{\e|\e}~\ex7f\-\exa7\exa9\-\exac\exae \& \exb0\-\exb3\exb5\-\exb6\exb9\-\exff], \& U+0100..02AF, U+0370..0373, \& U+0376..0379, U+037B..0383, U+0386 ...) \& \ep{Case_Ignorable: Y*} (Short: \ep{CI=Y}, \ep{CI}) (2602: [\e\*(Aq.:\e^\` \& \exa8\exad\exaf\exb4\exb7\-\exb8], \& U+02B0..036F, U+0374..0375, U+037A, \& U+0384..0385, U+0387 ...) \& \ep{Cased} \ep{Cased=Y} (4453) \& \ep{Cased: N*} (Single: \eP{Cased}) (1_109_659 plus all \& above\-Unicode code points: [\ex00\-\ex20! \& \e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/0\-9:;<=>?\e@\e[\e\e\e] \& \e^_\`\e{\e|\e}~\ex7f\-\exa9\exab\-\exb4\exb6\-\exb9 \& \exbb\-\exbf\exd7\exf7], U+01BB, \& U+01C0..01C3, U+0294, U+02B9..02BF, \& U+02C2..02DF ...) \& \ep{Cased: Y*} (Single: \ep{Cased}) (4453: [A\-Za\-z\exaa \& \exb5\exba\exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+0100..01BA, U+01BC..01BF, \& U+01C4..0293, U+0295..02B8, U+02C0..02C1 \& ...) \& \ep{Cased_Letter} \ep{General_Category=Cased_Letter} (Short: \& \ep{LC}) (4089) \& \ep{Category: *} \ep{General_Category: *} \& \ep{Caucasian_Albanian} \ep{Script_Extensions=Caucasian_Albanian} \& (Short: \ep{Aghb}; NOT \ep{Block= \& Caucasian_Albanian}) (53) \& \ep{Cc} \ep{XPosixCntrl} (= \ep{General_Category= \& Control}) (65) \& \ep{Ccc: *} \ep{Canonical_Combining_Class: *} \& \ep{CE} \ep{Composition_Exclusion} (= \& \ep{Composition_Exclusion=Y}) (81) \& \ep{CE: *} \ep{Composition_Exclusion: *} \& \ep{Cf} \ep{Format} (= \ep{General_Category=Format}) \& (163) \& \ep{Chakma} \ep{Script_Extensions=Chakma} (Short: \& \ep{Cakm}; NOT \ep{Block=Chakma}) (91) \& \ep{Cham} \ep{Script_Extensions=Cham} (NOT \ep{Block= \& Cham}) (83) \& \ep{Changes_When_Casefolded} \ep{Changes_When_Casefolded=Y} (Short: \& \ep{CWCF}) (1506) \& \ep{Changes_When_Casefolded: N*} (Short: \ep{CWCF=N}, \eP{CWCF}) \& (1_112_606 plus all above\-Unicode code \& points: [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-. \& \e/0\-9:;<=>?\e@\e[\e\e\e]\e^_\`a\-z\e{\e|\e}~\ex7f\- \& \exb4\exb6\-\exbf\exd7\exe0\-\exff], U+0101, \& U+0103, U+0105, U+0107, U+0109 ...) \& \ep{Changes_When_Casefolded: Y*} (Short: \ep{CWCF=Y}, \ep{CWCF}) \& (1506: [A\-Z\exb5\exc0\-\exd6\exd8\-\exdf], \& U+0100, U+0102, U+0104, U+0106, U+0108 \& ...) \& \ep{Changes_When_Casemapped} \ep{Changes_When_Casemapped=Y} (Short: \& \ep{CWCM}) (2927) \& \ep{Changes_When_Casemapped: N*} (Short: \ep{CWCM=N}, \eP{CWCM}) \& (1_111_185 plus all above\-Unicode code \& points: [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-. \& \e/0\-9:;<=>?\e@\e[\e\e\e]\e^_\`\e{\e|\e}~\ex7f\-\exb4 \& \exb6\-\exbf\exd7\exf7], U+0138, U+018D, \& U+019B, U+01AA..01AB, U+01BA..01BB ...) \& \ep{Changes_When_Casemapped: Y*} (Short: \ep{CWCM=Y}, \ep{CWCM}) \& (2927: [A\-Za\-z\exb5\exc0\-\exd6\exd8\-\exf6 \& \exf8\-\exff], U+0100..0137, U+0139..018C, \& U+018E..019A, U+019C..01A9, U+01AC..01B9 \& ...) \& \ep{Changes_When_Lowercased} \ep{Changes_When_Lowercased=Y} (Short: \& \ep{CWL}) (1433) \& \ep{Changes_When_Lowercased: N*} (Short: \ep{CWL=N}, \eP{CWL}) \& (1_112_679 plus all above\-Unicode code \& points: [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-. \& \e/0\-9:;<=>?\e@\e[\e\e\e]\e^_\`a\-z\e{\e|\e}~\ex7f\- \& \exbf\exd7\exdf\-\exff], U+0101, U+0103, \& U+0105, U+0107, U+0109 ...) \& \ep{Changes_When_Lowercased: Y*} (Short: \ep{CWL=Y}, \ep{CWL}) (1433: \& [A\-Z\exc0\-\exd6\exd8\-\exde], U+0100, U+0102, \& U+0104, U+0106, U+0108 ...) \& \ep{Changes_When_NFKC_Casefolded} \ep{Changes_When_NFKC_Casefolded= \& Y} (Short: \ep{CWKCF}) (10_429) \& \ep{Changes_When_NFKC_Casefolded: N*} (Short: \ep{CWKCF=N}, \& \eP{CWKCF}) (1_103_683 plus all above\- \& Unicode code points: [\ex00\-\ex20!\e"#\e$ \& \e%&\e\*(Aq\e(\e)*+,\e\-.\e/0\-9:;<=>?\e@\e[\e\e\e]\e^_\`a\- \& z\e{\e|\e}~\ex7f\-\ex9f\exa1\-\exa7\exa9\exab\-\exac \& \exae\exb0\-\exb1\exb6\-\exb7\exbb\exbf\exd7\exe0\- \& \exff], U+0101, U+0103, U+0105, U+0107, \& U+0109 ...) \& \ep{Changes_When_NFKC_Casefolded: Y*} (Short: \ep{CWKCF=Y}, \& \ep{CWKCF}) (10_429: [A\-Z\exa0\exa8\exaa \& \exad\exaf\exb2\-\exb5\exb8\-\exba\exbc\-\exbe\exc0\- \& \exd6\exd8\-\exdf], U+0100, U+0102, U+0104, \& U+0106, U+0108 ...) \& \ep{Changes_When_Titlecased} \ep{Changes_When_Titlecased=Y} (Short: \& \ep{CWT}) (1452) \& \ep{Changes_When_Titlecased: N*} (Short: \ep{CWT=N}, \eP{CWT}) \& (1_112_660 plus all above\-Unicode code \& points: [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-. \& \e/0\-9:;<=>?\e@A\-Z\e[\e\e\e]\e^_\`\e{\e|\e}~\ex7f\- \& \exb4\exb6\-\exde\exf7], U+0100, U+0102, \& U+0104, U+0106, U+0108 ...) \& \ep{Changes_When_Titlecased: Y*} (Short: \ep{CWT=Y}, \ep{CWT}) (1452: \& [a\-z\exb5\exdf\-\exf6\exf8\-\exff], U+0101, \& U+0103, U+0105, U+0107, U+0109 ...) \& \ep{Changes_When_Uppercased} \ep{Changes_When_Uppercased=Y} (Short: \& \ep{CWU}) (1525) \& \ep{Changes_When_Uppercased: N*} (Short: \ep{CWU=N}, \eP{CWU}) \& (1_112_587 plus all above\-Unicode code \& points: [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-. \& \e/0\-9:;<=>?\e@A\-Z\e[\e\e\e]\e^_\`\e{\e|\e}~\ex7f\- \& \exb4\exb6\-\exde\exf7], U+0100, U+0102, \& U+0104, U+0106, U+0108 ...) \& \ep{Changes_When_Uppercased: Y*} (Short: \ep{CWU=Y}, \ep{CWU}) (1525: \& [a\-z\exb5\exdf\-\exf6\exf8\-\exff], U+0101, \& U+0103, U+0105, U+0107, U+0109 ...) \& \ep{Cher} \ep{Cherokee} (= \ep{Script_Extensions= \& Cherokee}) (NOT \ep{Block=Cherokee}) (172) \& \ep{Cherokee} \ep{Script_Extensions=Cherokee} (Short: \& \ep{Cher}; NOT \ep{Block=Cherokee}) (172) \& X \ep{Cherokee_Sup} \ep{Cherokee_Supplement} (= \ep{Block= \& Cherokee_Supplement}) (80) \& X \ep{Cherokee_Supplement} \ep{Block=Cherokee_Supplement} (Short: \& \ep{InCherokeeSup}) (80) \& X \ep{Chess_Symbols} \ep{Block=Chess_Symbols} (112) \& \ep{Chorasmian} \ep{Script_Extensions=Chorasmian} (Short: \& \ep{Chrs}; NOT \ep{Block=Chorasmian}) (28) \& \ep{Chrs} \ep{Chorasmian} (= \ep{Script_Extensions= \& Chorasmian}) (NOT \ep{Block=Chorasmian}) \& (28) \& \ep{CI} \ep{Case_Ignorable} (= \ep{Case_Ignorable= \& Y}) (2602) \& \ep{CI: *} \ep{Case_Ignorable: *} \& X \ep{CJK} \ep{CJK_Unified_Ideographs} (= \ep{Block= \& CJK_Unified_Ideographs}) (20_992) \& X \ep{CJK_Compat} \ep{CJK_Compatibility} (= \ep{Block= \& CJK_Compatibility}) (256) \& X \ep{CJK_Compat_Forms} \ep{CJK_Compatibility_Forms} (= \ep{Block= \& CJK_Compatibility_Forms}) (32) \& X \ep{CJK_Compat_Ideographs} \ep{CJK_Compatibility_Ideographs} (= \& \ep{Block=CJK_Compatibility_Ideographs}) \& (512) \& X \ep{CJK_Compat_Ideographs_Sup} \& \ep{CJK_Compatibility_Ideographs_\- \& Supplement} (= \ep{Block= \& CJK_Compatibility_Ideographs_\- \& Supplement}) (544) \& X \ep{CJK_Compatibility} \ep{Block=CJK_Compatibility} (Short: \& \ep{InCJKCompat}) (256) \& X \ep{CJK_Compatibility_Forms} \ep{Block=CJK_Compatibility_Forms} \& (Short: \ep{InCJKCompatForms}) (32) \& X \ep{CJK_Compatibility_Ideographs} \ep{Block= \& CJK_Compatibility_Ideographs} (Short: \& \ep{InCJKCompatIdeographs}) (512) \& X \ep{CJK_Compatibility_Ideographs_Supplement} \ep{Block= \& CJK_Compatibility_Ideographs_Supplement} \& (Short: \ep{InCJKCompatIdeographsSup}) \& (544) \& X \ep{CJK_Ext_A} \ep{CJK_Unified_Ideographs_Extension_A} (= \& \ep{Block= \& CJK_Unified_Ideographs_Extension_A}) \& (6592) \& X \ep{CJK_Ext_B} \ep{CJK_Unified_Ideographs_Extension_B} (= \& \ep{Block= \& CJK_Unified_Ideographs_Extension_B}) \& (42_720) \& X \ep{CJK_Ext_C} \ep{CJK_Unified_Ideographs_Extension_C} (= \& \ep{Block= \& CJK_Unified_Ideographs_Extension_C}) \& (4160) \& X \ep{CJK_Ext_D} \ep{CJK_Unified_Ideographs_Extension_D} (= \& \ep{Block= \& CJK_Unified_Ideographs_Extension_D}) \& (224) \& X \ep{CJK_Ext_E} \ep{CJK_Unified_Ideographs_Extension_E} (= \& \ep{Block= \& CJK_Unified_Ideographs_Extension_E}) \& (5776) \& X \ep{CJK_Ext_F} \ep{CJK_Unified_Ideographs_Extension_F} (= \& \ep{Block= \& CJK_Unified_Ideographs_Extension_F}) \& (7488) \& X \ep{CJK_Ext_G} \ep{CJK_Unified_Ideographs_Extension_G} (= \& \ep{Block= \& CJK_Unified_Ideographs_Extension_G}) \& (4944) \& X \ep{CJK_Radicals_Sup} \ep{CJK_Radicals_Supplement} (= \ep{Block= \& CJK_Radicals_Supplement}) (128) \& X \ep{CJK_Radicals_Supplement} \ep{Block=CJK_Radicals_Supplement} \& (Short: \ep{InCJKRadicalsSup}) (128) \& X \ep{CJK_Strokes} \ep{Block=CJK_Strokes} (48) \& X \ep{CJK_Symbols} \ep{CJK_Symbols_And_Punctuation} (= \& \ep{Block=CJK_Symbols_And_Punctuation}) \& (64) \& X \ep{CJK_Symbols_And_Punctuation} \ep{Block= \& CJK_Symbols_And_Punctuation} (Short: \& \ep{InCJKSymbols}) (64) \& X \ep{CJK_Unified_Ideographs} \ep{Block=CJK_Unified_Ideographs} \& (Short: \ep{InCJK}) (20_992) \& X \ep{CJK_Unified_Ideographs_Extension_A} \ep{Block= \& CJK_Unified_Ideographs_Extension_A} \& (Short: \ep{InCJKExtA}) (6592) \& X \ep{CJK_Unified_Ideographs_Extension_B} \ep{Block= \& CJK_Unified_Ideographs_Extension_B} \& (Short: \ep{InCJKExtB}) (42_720) \& X \ep{CJK_Unified_Ideographs_Extension_C} \ep{Block= \& CJK_Unified_Ideographs_Extension_C} \& (Short: \ep{InCJKExtC}) (4160) \& X \ep{CJK_Unified_Ideographs_Extension_D} \ep{Block= \& CJK_Unified_Ideographs_Extension_D} \& (Short: \ep{InCJKExtD}) (224) \& X \ep{CJK_Unified_Ideographs_Extension_E} \ep{Block= \& CJK_Unified_Ideographs_Extension_E} \& (Short: \ep{InCJKExtE}) (5776) \& X \ep{CJK_Unified_Ideographs_Extension_F} \ep{Block= \& CJK_Unified_Ideographs_Extension_F} \& (Short: \ep{InCJKExtF}) (7488) \& X \ep{CJK_Unified_Ideographs_Extension_G} \ep{Block= \& CJK_Unified_Ideographs_Extension_G} \& (Short: \ep{InCJKExtG}) (4944) \& \ep{Close_Punctuation} \ep{General_Category=Close_Punctuation} \& (Short: \ep{Pe}) (77) \& \ep{Cn} \ep{Unassigned} (= \ep{General_Category= \& Unassigned}) (829_834 plus all above\- \& Unicode code points) \& \ep{Cntrl} \ep{XPosixCntrl} (= \ep{General_Category= \& Control}) (65) \& \ep{Co} \ep{Private_Use} (= \ep{General_Category= \& Private_Use}) (NOT \ep{Private_Use_Area}) \& (137_468) \& X \ep{Combining_Diacritical_Marks} \ep{Block= \& Combining_Diacritical_Marks} (Short: \& \ep{InDiacriticals}) (112) \& X \ep{Combining_Diacritical_Marks_Extended} \ep{Block= \& Combining_Diacritical_Marks_Extended} \& (Short: \ep{InDiacriticalsExt}) (80) \& X \ep{Combining_Diacritical_Marks_For_Symbols} \ep{Block= \& Combining_Diacritical_Marks_For_Symbols} \& (Short: \ep{InDiacriticalsForSymbols}) \& (48) \& X \ep{Combining_Diacritical_Marks_Supplement} \ep{Block= \& Combining_Diacritical_Marks_Supplement} \& (Short: \ep{InDiacriticalsSup}) (64) \& X \ep{Combining_Half_Marks} \ep{Block=Combining_Half_Marks} (Short: \& \ep{InHalfMarks}) (16) \& \ep{Combining_Mark} \ep{Mark} (= \ep{General_Category=Mark}) \& (2408) \& X \ep{Combining_Marks_For_Symbols} \& \ep{Combining_Diacritical_Marks_For_\- \& Symbols} (= \ep{Block= \& Combining_Diacritical_Marks_For_\- \& Symbols}) (48) \& \ep{Common} \ep{Script_Extensions=Common} (Short: \& \ep{Zyyy}) (7824) \& X \ep{Common_Indic_Number_Forms} \ep{Block=Common_Indic_Number_Forms} \& (Short: \ep{InIndicNumberForms}) (16) \& \ep{Comp_Ex} \ep{Full_Composition_Exclusion} (= \& \ep{Full_Composition_Exclusion=Y}) (1120) \& \ep{Comp_Ex: *} \ep{Full_Composition_Exclusion: *} \& X \ep{Compat_Jamo} \ep{Hangul_Compatibility_Jamo} (= \ep{Block= \& Hangul_Compatibility_Jamo}) (96) \& \ep{Composition_Exclusion} \ep{Composition_Exclusion=Y} (Short: \& \ep{CE}) (81) \& \ep{Composition_Exclusion: N*} (Short: \ep{CE=N}, \eP{CE}) (1_114_031 \& plus all above\-Unicode code points: \& U+0000..0957, U+0960..09DB, U+09DE, \& U+09E0..0A32, U+0A34..0A35, U+0A37..0A58 \& ...) \& \ep{Composition_Exclusion: Y*} (Short: \ep{CE=Y}, \ep{CE}) (81: \& U+0958..095F, U+09DC..09DD, U+09DF, \& U+0A33, U+0A36, U+0A59..0A5B ...) \& \ep{Connector_Punctuation} \ep{General_Category= \& Connector_Punctuation} (Short: \ep{Pc}) \& (10) \& \ep{Control} \ep{XPosixCntrl} (= \ep{General_Category= \& Control}) (65) \& X \ep{Control_Pictures} \ep{Block=Control_Pictures} (64) \& \ep{Copt} \ep{Coptic} (= \ep{Script_Extensions= \& Coptic}) (NOT \ep{Block=Coptic}) (165) \& \ep{Coptic} \ep{Script_Extensions=Coptic} (Short: \& \ep{Copt}; NOT \ep{Block=Coptic}) (165) \& X \ep{Coptic_Epact_Numbers} \ep{Block=Coptic_Epact_Numbers} (32) \& X \ep{Counting_Rod} \ep{Counting_Rod_Numerals} (= \ep{Block= \& Counting_Rod_Numerals}) (32) \& X \ep{Counting_Rod_Numerals} \ep{Block=Counting_Rod_Numerals} (Short: \& \ep{InCountingRod}) (32) \& \ep{Cpmn} \ep{Cypro_Minoan} (= \ep{Script_Extensions= \& Cypro_Minoan}) (NOT \ep{Block= \& Cypro_Minoan}) (101) \& \ep{Cprt} \ep{Cypriot} (= \ep{Script_Extensions= \& Cypriot}) (112) \& \ep{Cs} \ep{Surrogate} (= \ep{General_Category= \& Surrogate}) (2048) \& \ep{Cuneiform} \ep{Script_Extensions=Cuneiform} (Short: \& \ep{Xsux}; NOT \ep{Block=Cuneiform}) (1234) \& X \ep{Cuneiform_Numbers} \ep{Cuneiform_Numbers_And_Punctuation} (= \& \ep{Block= \& Cuneiform_Numbers_And_Punctuation}) (128) \& X \ep{Cuneiform_Numbers_And_Punctuation} \ep{Block= \& Cuneiform_Numbers_And_Punctuation} \& (Short: \ep{InCuneiformNumbers}) (128) \& \ep{Currency_Symbol} \ep{General_Category=Currency_Symbol} \& (Short: \ep{Sc}) (63) \& X \ep{Currency_Symbols} \ep{Block=Currency_Symbols} (48) \& \ep{CWCF} \ep{Changes_When_Casefolded} (= \& \ep{Changes_When_Casefolded=Y}) (1506) \& \ep{CWCF: *} \ep{Changes_When_Casefolded: *} \& \ep{CWCM} \ep{Changes_When_Casemapped} (= \& \ep{Changes_When_Casemapped=Y}) (2927) \& \ep{CWCM: *} \ep{Changes_When_Casemapped: *} \& \ep{CWKCF} \ep{Changes_When_NFKC_Casefolded} (= \& \ep{Changes_When_NFKC_Casefolded=Y}) \& (10_429) \& \ep{CWKCF: *} \ep{Changes_When_NFKC_Casefolded: *} \& \ep{CWL} \ep{Changes_When_Lowercased} (= \& \ep{Changes_When_Lowercased=Y}) (1433) \& \ep{CWL: *} \ep{Changes_When_Lowercased: *} \& \ep{CWT} \ep{Changes_When_Titlecased} (= \& \ep{Changes_When_Titlecased=Y}) (1452) \& \ep{CWT: *} \ep{Changes_When_Titlecased: *} \& \ep{CWU} \ep{Changes_When_Uppercased} (= \& \ep{Changes_When_Uppercased=Y}) (1525) \& \ep{CWU: *} \ep{Changes_When_Uppercased: *} \& \ep{Cypriot} \ep{Script_Extensions=Cypriot} (Short: \& \ep{Cprt}) (112) \& X \ep{Cypriot_Syllabary} \ep{Block=Cypriot_Syllabary} (64) \& \ep{Cypro_Minoan} \ep{Script_Extensions=Cypro_Minoan} (Short: \& \ep{Cpmn}; NOT \ep{Block=Cypro_Minoan}) \& (101) \& \ep{Cyrillic} \ep{Script_Extensions=Cyrillic} (Short: \& \ep{Cyrl}; NOT \ep{Block=Cyrillic}) (447) \& X \ep{Cyrillic_Ext_A} \ep{Cyrillic_Extended_A} (= \ep{Block= \& Cyrillic_Extended_A}) (32) \& X \ep{Cyrillic_Ext_B} \ep{Cyrillic_Extended_B} (= \ep{Block= \& Cyrillic_Extended_B}) (96) \& X \ep{Cyrillic_Ext_C} \ep{Cyrillic_Extended_C} (= \ep{Block= \& Cyrillic_Extended_C}) (16) \& X \ep{Cyrillic_Extended_A} \ep{Block=Cyrillic_Extended_A} (Short: \& \ep{InCyrillicExtA}) (32) \& X \ep{Cyrillic_Extended_B} \ep{Block=Cyrillic_Extended_B} (Short: \& \ep{InCyrillicExtB}) (96) \& X \ep{Cyrillic_Extended_C} \ep{Block=Cyrillic_Extended_C} (Short: \& \ep{InCyrillicExtC}) (16) \& X \ep{Cyrillic_Sup} \ep{Cyrillic_Supplement} (= \ep{Block= \& Cyrillic_Supplement}) (48) \& X \ep{Cyrillic_Supplement} \ep{Block=Cyrillic_Supplement} (Short: \& \ep{InCyrillicSup}) (48) \& X \ep{Cyrillic_Supplementary} \ep{Cyrillic_Supplement} (= \ep{Block= \& Cyrillic_Supplement}) (48) \& \ep{Cyrl} \ep{Cyrillic} (= \ep{Script_Extensions= \& Cyrillic}) (NOT \ep{Block=Cyrillic}) (447) \& \ep{Dash} \ep{Dash=Y} (30) \& \ep{Dash: N*} (Single: \eP{Dash}) (1_114_082 plus all \& above\-Unicode code points: [\ex00\-\ex20! \& \e"#\e$\e%&\e\*(Aq\e(\e)*+,.\e/0\-9:;<=>?\e@A\-Z \& \e[\e\e\e]\e^_\`a\-z\e{\e|\e}~\ex7f\-\exff], \& U+0100..0589, U+058B..05BD, \& U+05BF..13FF, U+1401..1805, U+1807..200F \& ...) \& \ep{Dash: Y*} (Single: \ep{Dash}) (30: [\e\-], U+058A, \& U+05BE, U+1400, U+1806, U+2010..2015 ...) \& \ep{Dash_Punctuation} \ep{General_Category=Dash_Punctuation} \& (Short: \ep{Pd}) (26) \& \ep{Decimal_Number} \ep{XPosixDigit} (= \ep{General_Category= \& Decimal_Number}) (660) \& \ep{Decomposition_Type: Can} \ep{Decomposition_Type=Canonical} \& (13_233) \& \ep{Decomposition_Type: Canonical} (Short: \ep{Dt=Can}) (13_233: \& [\exc0\-\exc5\exc7\-\excf\exd1\-\exd6\exd9\-\exdd \& \exe0\-\exe5\exe7\-\exef\exf1\-\exf6\exf9\-\exfd \& \exff], U+0100..010F, U+0112..0125, \& U+0128..0130, U+0134..0137, U+0139..013E \& ...) \& \ep{Decomposition_Type: Circle} (Short: \ep{Dt=Enc}) (240: \& U+2460..2473, U+24B6..24EA, \& U+3244..3247, U+3251..327E, \& U+3280..32BF, U+32D0..32FE ...) \& \ep{Decomposition_Type: Com} \ep{Decomposition_Type=Compat} (720) \& \ep{Decomposition_Type: Compat} (Short: \ep{Dt=Com}) (720: [\exa8 \& \exaf\exb4\-\exb5\exb8], U+0132..0133, \& U+013F..0140, U+0149, U+017F, \& U+01C4..01CC ...) \& \ep{Decomposition_Type: Enc} \ep{Decomposition_Type=Circle} (240) \& \ep{Decomposition_Type: Fin} \ep{Decomposition_Type=Final} (240) \& \ep{Decomposition_Type: Final} (Short: \ep{Dt=Fin}) (240: U+FB51, \& U+FB53, U+FB57, U+FB5B, U+FB5F, U+FB63 \& ...) \& \ep{Decomposition_Type: Font} (Short: \ep{Dt=Font}) (1194: U+2102, \& U+210A..2113, U+2115, U+2119..211D, \& U+2124, U+2128 ...) \& \ep{Decomposition_Type: Fra} \ep{Decomposition_Type=Fraction} (20) \& \ep{Decomposition_Type: Fraction} (Short: \ep{Dt=Fra}) (20: [\exbc\- \& \exbe], U+2150..215F, U+2189) \& \ep{Decomposition_Type: Init} \ep{Decomposition_Type=Initial} (171) \& \ep{Decomposition_Type: Initial} (Short: \ep{Dt=Init}) (171: U+FB54, \& U+FB58, U+FB5C, U+FB60, U+FB64, U+FB68 \& ...) \& \ep{Decomposition_Type: Iso} \ep{Decomposition_Type=Isolated} (238) \& \ep{Decomposition_Type: Isolated} (Short: \ep{Dt=Iso}) (238: U+FB50, \& U+FB52, U+FB56, U+FB5A, U+FB5E, U+FB62 \& ...) \& \ep{Decomposition_Type: Med} \ep{Decomposition_Type=Medial} (82) \& \ep{Decomposition_Type: Medial} (Short: \ep{Dt=Med}) (82: U+FB55, \& U+FB59, U+FB5D, U+FB61, U+FB65, U+FB69 \& ...) \& \ep{Decomposition_Type: Nar} \ep{Decomposition_Type=Narrow} (122) \& \ep{Decomposition_Type: Narrow} (Short: \ep{Dt=Nar}) (122: \& U+FF61..FFBE, U+FFC2..FFC7, \& U+FFCA..FFCF, U+FFD2..FFD7, \& U+FFDA..FFDC, U+FFE8..FFEE) \& \ep{Decomposition_Type: Nb} \ep{Decomposition_Type=Nobreak} (5) \& \ep{Decomposition_Type: Nobreak} (Short: \ep{Dt=Nb}) (5: [\exa0], \& U+0F0C, U+2007, U+2011, U+202F) \& \ep{Decomposition_Type: Non_Canon} \ep{Decomposition_Type= \& Non_Canonical} (Perl extension) (3734) \& \ep{Decomposition_Type: Non_Canonical} Union of all non\-canonical \& decompositions (Short: \ep{Dt=NonCanon}) \& (Perl extension) (3734: [\exa0\exa8\exaa \& \exaf\exb2\-\exb5\exb8\-\exba\exbc\-\exbe], \& U+0132..0133, U+013F..0140, U+0149, \& U+017F, U+01C4..01CC ...) \& \ep{Decomposition_Type: None} (Short: \ep{Dt=None}) (1_097_145 plus \& all above\-Unicode code points: [\ex00\- \& \ex9f\exa1\-\exa7\exa9\exab\-\exae\exb0\-\exb1\exb6\- \& \exb7\exbb\exbf\exc6\exd0\exd7\-\exd8\exde\-\exdf \& \exe6\exf0\exf7\-\exf8\exfe], U+0110..0111, \& U+0126..0127, U+0131, U+0138, \& U+0141..0142 ...) \& \ep{Decomposition_Type: Small} (Short: \ep{Dt=Sml}) (26: \& U+FE50..FE52, U+FE54..FE66, U+FE68..FE6B) \& \ep{Decomposition_Type: Sml} \ep{Decomposition_Type=Small} (26) \& \ep{Decomposition_Type: Sqr} \ep{Decomposition_Type=Square} (286) \& \ep{Decomposition_Type: Square} (Short: \ep{Dt=Sqr}) (286: U+3250, \& U+32CC..32CF, U+32FF..3357, \& U+3371..33DF, U+33FF, U+1F130..1F14F ...) \& \ep{Decomposition_Type: Sub} (Short: \ep{Dt=Sub}) (38: U+1D62..1D6A, \& U+2080..208E, U+2090..209C, U+2C7C) \& \ep{Decomposition_Type: Sup} \ep{Decomposition_Type=Super} (213) \& \ep{Decomposition_Type: Super} (Short: \ep{Dt=Sup}) (213: [\exaa\exb2\- \& \exb3\exb9\-\exba], U+02B0..02B8, \& U+02E0..02E4, U+10FC, U+1D2C..1D2E, \& U+1D30..1D3A ...) \& \ep{Decomposition_Type: Vert} \ep{Decomposition_Type=Vertical} (35) \& \ep{Decomposition_Type: Vertical} (Short: \ep{Dt=Vert}) (35: U+309F, \& U+30FF, U+FE10..FE19, U+FE30..FE44, \& U+FE47..FE48) \& \ep{Decomposition_Type: Wide} (Short: \ep{Dt=Wide}) (104: U+3000, \& U+FF01..FF60, U+FFE0..FFE6) \& \ep{Default_Ignorable_Code_Point} \ep{Default_Ignorable_Code_Point= \& Y} (Short: \ep{DI}) (4174) \& \ep{Default_Ignorable_Code_Point: N*} (Short: \ep{DI=N}, \eP{DI}) \& (1_109_938 plus all above\-Unicode code \& points: [\ex00\-\exac\exae\-\exff], \& U+0100..034E, U+0350..061B, \& U+061D..115E, U+1161..17B3, U+17B6..180A \& ...) \& \ep{Default_Ignorable_Code_Point: Y*} (Short: \ep{DI=Y}, \ep{DI}) \& (4174: [\exad], U+034F, U+061C, \& U+115F..1160, U+17B4..17B5, U+180B..180F \& ...) \& \ep{Dep} \ep{Deprecated} (= \ep{Deprecated=Y}) (15) \& \ep{Dep: *} \ep{Deprecated: *} \& \ep{Deprecated} \ep{Deprecated=Y} (Short: \ep{Dep}) (15) \& \ep{Deprecated: N*} (Short: \ep{Dep=N}, \eP{Dep}) (1_114_097 \& plus all above\-Unicode code points: \& U+0000..0148, U+014A..0672, \& U+0674..0F76, U+0F78, U+0F7A..17A2, \& U+17A5..2069 ...) \& \ep{Deprecated: Y*} (Short: \ep{Dep=Y}, \ep{Dep}) (15: U+0149, \& U+0673, U+0F77, U+0F79, U+17A3..17A4, \& U+206A..206F ...) \& \ep{Deseret} \ep{Script_Extensions=Deseret} (Short: \& \ep{Dsrt}) (80) \& \ep{Deva} \ep{Devanagari} (= \ep{Script_Extensions= \& Devanagari}) (NOT \ep{Block=Devanagari}) \& (210) \& \ep{Devanagari} \ep{Script_Extensions=Devanagari} (Short: \& \ep{Deva}; NOT \ep{Block=Devanagari}) (210) \& X \ep{Devanagari_Ext} \ep{Devanagari_Extended} (= \ep{Block= \& Devanagari_Extended}) (32) \& X \ep{Devanagari_Extended} \ep{Block=Devanagari_Extended} (Short: \& \ep{InDevanagariExt}) (32) \& \ep{DI} \ep{Default_Ignorable_Code_Point} (= \& \ep{Default_Ignorable_Code_Point=Y}) \& (4174) \& \ep{DI: *} \ep{Default_Ignorable_Code_Point: *} \& \ep{Dia} \ep{Diacritic} (= \ep{Diacritic=Y}) (1064) \& \ep{Dia: *} \ep{Diacritic: *} \& \ep{Diacritic} \ep{Diacritic=Y} (Short: \ep{Dia}) (1064) \& \ep{Diacritic: N*} (Short: \ep{Dia=N}, \eP{Dia}) (1_113_048 \& plus all above\-Unicode code points: \& [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/0\-9:;<= \& >?\e@A\-Z\e[\e\e\e]_a\-z\e{\e|\e}~\ex7f\-\exa7\exa9\- \& \exae\exb0\-\exb3\exb5\-\exb6\exb9\-\exff], \& U+0100..02AF, U+034F, U+0358..035C, \& U+0363..0373, U+0376..0379 ...) \& \ep{Diacritic: Y*} (Short: \ep{Dia=Y}, \ep{Dia}) (1064: [\e^\` \& \exa8\exaf\exb4\exb7\-\exb8], U+02B0..034E, \& U+0350..0357, U+035D..0362, \& U+0374..0375, U+037A ...) \& X \ep{Diacriticals} \ep{Combining_Diacritical_Marks} (= \& \ep{Block=Combining_Diacritical_Marks}) \& (112) \& X \ep{Diacriticals_Ext} \ep{Combining_Diacritical_Marks_Extended} \& (= \ep{Block= \& Combining_Diacritical_Marks_Extended}) \& (80) \& X \ep{Diacriticals_For_Symbols} \& \ep{Combining_Diacritical_Marks_For_\- \& Symbols} (= \ep{Block= \& Combining_Diacritical_Marks_For_\- \& Symbols}) (48) \& X \ep{Diacriticals_Sup} \ep{Combining_Diacritical_Marks_Supplement} \& (= \ep{Block= \& Combining_Diacritical_Marks_Supplement}) \& (64) \& \ep{Diak} \ep{Dives_Akuru} (= \ep{Script_Extensions= \& Dives_Akuru}) (NOT \ep{Block= \& Dives_Akuru}) (72) \& \ep{Digit} \ep{XPosixDigit} (= \ep{General_Category= \& Decimal_Number}) (660) \& X \ep{Dingbats} \ep{Block=Dingbats} (192) \& \ep{Dives_Akuru} \ep{Script_Extensions=Dives_Akuru} (Short: \& \ep{Diak}; NOT \ep{Block=Dives_Akuru}) (72) \& \ep{Dogr} \ep{Dogra} (= \ep{Script_Extensions=Dogra}) \& (NOT \ep{Block=Dogra}) (82) \& \ep{Dogra} \ep{Script_Extensions=Dogra} (Short: \& \ep{Dogr}; NOT \ep{Block=Dogra}) (82) \& X \ep{Domino} \ep{Domino_Tiles} (= \ep{Block= \& Domino_Tiles}) (112) \& X \ep{Domino_Tiles} \ep{Block=Domino_Tiles} (Short: \& \ep{InDomino}) (112) \& \ep{Dsrt} \ep{Deseret} (= \ep{Script_Extensions= \& Deseret}) (80) \& \ep{Dt: *} \ep{Decomposition_Type: *} \& \ep{Dupl} \ep{Duployan} (= \ep{Script_Extensions= \& Duployan}) (NOT \ep{Block=Duployan}) (147) \& \ep{Duployan} \ep{Script_Extensions=Duployan} (Short: \& \ep{Dupl}; NOT \ep{Block=Duployan}) (147) \& \ep{Ea: *} \ep{East_Asian_Width: *} \& X \ep{Early_Dynastic_Cuneiform} \ep{Block=Early_Dynastic_Cuneiform} \& (208) \& \ep{East_Asian_Width: A} \ep{East_Asian_Width=Ambiguous} (138_739) \& \ep{East_Asian_Width: Ambiguous} (Short: \ep{Ea=A}) (138_739: [\exa1 \& \exa4\exa7\-\exa8\exaa\exad\-\exae\exb0\-\exb4\exb6\- \& \exba\exbc\-\exbf\exc6\exd0\exd7\-\exd8\exde\-\exe1 \& \exe6\exe8\-\exea\exec\-\exed\exf0\exf2\-\exf3\exf7\- \& \exfa\exfc\exfe], U+0101, U+0111, U+0113, \& U+011B, U+0126..0127 ...) \& \ep{East_Asian_Width: F} \ep{East_Asian_Width=Fullwidth} (104) \& \ep{East_Asian_Width: Fullwidth} (Short: \ep{Ea=F}) (104: U+3000, \& U+FF01..FF60, U+FFE0..FFE6) \& \ep{East_Asian_Width: H} \ep{East_Asian_Width=Halfwidth} (123) \& \ep{East_Asian_Width: Halfwidth} (Short: \ep{Ea=H}) (123: U+20A9, \& U+FF61..FFBE, U+FFC2..FFC7, \& U+FFCA..FFCF, U+FFD2..FFD7, U+FFDA..FFDC \& ...) \& \ep{East_Asian_Width: N} \ep{East_Asian_Width=Neutral} (792_645 plus \& all above\-Unicode code points) \& \ep{East_Asian_Width: Na} \ep{East_Asian_Width=Narrow} (111) \& \ep{East_Asian_Width: Narrow} (Short: \ep{Ea=Na}) (111: [\ex20\-\ex7e \& \exa2\-\exa3\exa5\-\exa6\exac\exaf], \& U+27E6..27ED, U+2985..2986) \& \ep{East_Asian_Width: Neutral} (Short: \ep{Ea=N}) (792_645 plus all \& above\-Unicode code points: [\ex00\-\ex1f \& \ex7f\-\exa0\exa9\exab\exb5\exbb\exc0\-\exc5\exc7\- \& \excf\exd1\-\exd6\exd9\-\exdd\exe2\-\exe5\exe7\exeb \& \exee\-\exef\exf1\exf4\-\exf6\exfb\exfd\exff], \& U+00FF..0100, U+0102..0110, U+0112, \& U+0114..011A, U+011C..0125 ...) \& \ep{East_Asian_Width: W} \ep{East_Asian_Width=Wide} (182_390) \& \ep{East_Asian_Width: Wide} (Short: \ep{Ea=W}) (182_390: \& U+1100..115F, U+231A..231B, \& U+2329..232A, U+23E9..23EC, U+23F0, \& U+23F3 ...) \& \ep{EBase} \ep{Emoji_Modifier_Base} (= \& \ep{Emoji_Modifier_Base=Y}) (132) \& \ep{EBase: *} \ep{Emoji_Modifier_Base: *} \& \ep{EComp} \ep{Emoji_Component} (= \ep{Emoji_Component= \& Y}) (146) \& \ep{EComp: *} \ep{Emoji_Component: *} \& \ep{Egyp} \ep{Egyptian_Hieroglyphs} (= \& \ep{Script_Extensions= \& Egyptian_Hieroglyphs}) (NOT \ep{Block= \& Egyptian_Hieroglyphs}) (1080) \& X \ep{Egyptian_Hieroglyph_Format_Controls} \ep{Block= \& Egyptian_Hieroglyph_Format_Controls} (16) \& \ep{Egyptian_Hieroglyphs} \ep{Script_Extensions= \& Egyptian_Hieroglyphs} (Short: \ep{Egyp}; \& NOT \ep{Block=Egyptian_Hieroglyphs}) \& (1080) \& \ep{Elba} \ep{Elbasan} (= \ep{Script_Extensions= \& Elbasan}) (NOT \ep{Block=Elbasan}) (40) \& \ep{Elbasan} \ep{Script_Extensions=Elbasan} (Short: \& \ep{Elba}; NOT \ep{Block=Elbasan}) (40) \& \ep{Elym} \ep{Elymaic} (= \ep{Script_Extensions= \& Elymaic}) (NOT \ep{Block=Elymaic}) (23) \& \ep{Elymaic} \ep{Script_Extensions=Elymaic} (Short: \& \ep{Elym}; NOT \ep{Block=Elymaic}) (23) \& \ep{EMod} \ep{Emoji_Modifier} (= \ep{Emoji_Modifier= \& Y}) (5) \& \ep{EMod: *} \ep{Emoji_Modifier: *} \& \ep{Emoji} \ep{Emoji=Y} (1404) \& \ep{Emoji: N*} (Single: \eP{Emoji}) (1_112_708 plus all \& above\-Unicode code points: [\ex00\-\ex20! \& \e"\e$\e%&\e\*(Aq\e(\e)+,\e\-.\e/:;<=>?\e@A\-Z\e[\e\e\e] \& \e^_\`a\-z\e{\e|\e}~\ex7f\-\exa8\exaa\-\exad\exaf\- \& \exff], U+0100..203B, U+203D..2048, \& U+204A..2121, U+2123..2138, U+213A..2193 \& ...) \& \ep{Emoji: Y*} (Single: \ep{Emoji}) (1404: [#*0\-9\exa9 \& \exae], U+203C, U+2049, U+2122, U+2139, \& U+2194..2199 ...) \& \ep{Emoji_Component} \ep{Emoji_Component=Y} (Short: \ep{EComp}) \& (146) \& \ep{Emoji_Component: N*} (Short: \ep{EComp=N}, \eP{EComp}) (1_113_966 \& plus all above\-Unicode code points: \& [\ex00\-\ex20!\e"\e$\e%&\e\*(Aq\e(\e)+,\e\-.\e/:;<=>? \& \e@A\-Z\e[\e\e\e]\e^_\`a\-z\e{\e|\e}~\ex7f\-\exff], \& U+0100..200C, U+200E..20E2, \& U+20E4..FE0E, U+FE10..1F1E5, \& U+1F200..1F3FA ...) \& \ep{Emoji_Component: Y*} (Short: \ep{EComp=Y}, \ep{EComp}) (146: \& [#*0\-9], U+200D, U+20E3, U+FE0F, \& U+1F1E6..1F1FF, U+1F3FB..1F3FF ...) \& \ep{Emoji_Modifier} \ep{Emoji_Modifier=Y} (Short: \ep{EMod}) (5) \& \ep{Emoji_Modifier: N*} (Short: \ep{EMod=N}, \eP{EMod}) (1_114_107 \& plus all above\-Unicode code points: \& U+0000..1F3FA, U+1F400..infinity) \& \ep{Emoji_Modifier: Y*} (Short: \ep{EMod=Y}, \ep{EMod}) (5: \& U+1F3FB..1F3FF) \& \ep{Emoji_Modifier_Base} \ep{Emoji_Modifier_Base=Y} (Short: \& \ep{EBase}) (132) \& \ep{Emoji_Modifier_Base: N*} (Short: \ep{EBase=N}, \eP{EBase}) \& (1_113_980 plus all above\-Unicode code \& points: U+0000..261C, U+261E..26F8, \& U+26FA..2709, U+270E..1F384, \& U+1F386..1F3C1, U+1F3C5..1F3C6 ...) \& \ep{Emoji_Modifier_Base: Y*} (Short: \ep{EBase=Y}, \ep{EBase}) (132: \& U+261D, U+26F9, U+270A..270D, U+1F385, \& U+1F3C2..1F3C4, U+1F3C7 ...) \& \ep{Emoji_Presentation} \ep{Emoji_Presentation=Y} (Short: \& \ep{EPres}) (1185) \& \ep{Emoji_Presentation: N*} (Short: \ep{EPres=N}, \eP{EPres}) \& (1_112_927 plus all above\-Unicode code \& points: U+0000..2319, U+231C..23E8, \& U+23ED..23EF, U+23F1..23F2, \& U+23F4..25FC, U+25FF..2613 ...) \& \ep{Emoji_Presentation: Y*} (Short: \ep{EPres=Y}, \ep{EPres}) (1185: \& U+231A..231B, U+23E9..23EC, U+23F0, \& U+23F3, U+25FD..25FE, U+2614..2615 ...) \& X \ep{Emoticons} \ep{Block=Emoticons} (80) \& X \ep{Enclosed_Alphanum} \ep{Enclosed_Alphanumerics} (= \ep{Block= \& Enclosed_Alphanumerics}) (160) \& X \ep{Enclosed_Alphanum_Sup} \ep{Enclosed_Alphanumeric_Supplement} (= \& \ep{Block= \& Enclosed_Alphanumeric_Supplement}) (256) \& X \ep{Enclosed_Alphanumeric_Supplement} \ep{Block= \& Enclosed_Alphanumeric_Supplement} \& (Short: \ep{InEnclosedAlphanumSup}) (256) \& X \ep{Enclosed_Alphanumerics} \ep{Block=Enclosed_Alphanumerics} \& (Short: \ep{InEnclosedAlphanum}) (160) \& X \ep{Enclosed_CJK} \ep{Enclosed_CJK_Letters_And_Months} (= \& \ep{Block= \& Enclosed_CJK_Letters_And_Months}) (256) \& X \ep{Enclosed_CJK_Letters_And_Months} \ep{Block= \& Enclosed_CJK_Letters_And_Months} (Short: \& \ep{InEnclosedCJK}) (256) \& X \ep{Enclosed_Ideographic_Sup} \ep{Enclosed_Ideographic_Supplement} \& (= \ep{Block= \& Enclosed_Ideographic_Supplement}) (256) \& X \ep{Enclosed_Ideographic_Supplement} \ep{Block= \& Enclosed_Ideographic_Supplement} (Short: \& \ep{InEnclosedIdeographicSup}) (256) \& \ep{Enclosing_Mark} \ep{General_Category=Enclosing_Mark} \& (Short: \ep{Me}) (13) \& \ep{EPres} \ep{Emoji_Presentation} (= \& \ep{Emoji_Presentation=Y}) (1185) \& \ep{EPres: *} \ep{Emoji_Presentation: *} \& \ep{Ethi} \ep{Ethiopic} (= \ep{Script_Extensions= \& Ethiopic}) (NOT \ep{Block=Ethiopic}) (523) \& \ep{Ethiopic} \ep{Script_Extensions=Ethiopic} (Short: \& \ep{Ethi}; NOT \ep{Block=Ethiopic}) (523) \& X \ep{Ethiopic_Ext} \ep{Ethiopic_Extended} (= \ep{Block= \& Ethiopic_Extended}) (96) \& X \ep{Ethiopic_Ext_A} \ep{Ethiopic_Extended_A} (= \ep{Block= \& Ethiopic_Extended_A}) (48) \& X \ep{Ethiopic_Ext_B} \ep{Ethiopic_Extended_B} (= \ep{Block= \& Ethiopic_Extended_B}) (32) \& X \ep{Ethiopic_Extended} \ep{Block=Ethiopic_Extended} (Short: \& \ep{InEthiopicExt}) (96) \& X \ep{Ethiopic_Extended_A} \ep{Block=Ethiopic_Extended_A} (Short: \& \ep{InEthiopicExtA}) (48) \& X \ep{Ethiopic_Extended_B} \ep{Block=Ethiopic_Extended_B} (Short: \& \ep{InEthiopicExtB}) (32) \& X \ep{Ethiopic_Sup} \ep{Ethiopic_Supplement} (= \ep{Block= \& Ethiopic_Supplement}) (32) \& X \ep{Ethiopic_Supplement} \ep{Block=Ethiopic_Supplement} (Short: \& \ep{InEthiopicSup}) (32) \& \ep{Ext} \ep{Extender} (= \ep{Extender=Y}) (50) \& \ep{Ext: *} \ep{Extender: *} \& \ep{Extended_Pictographic} \ep{Extended_Pictographic=Y} (Short: \& \ep{ExtPict}) (3537) \& \ep{Extended_Pictographic: N*} (Short: \ep{ExtPict=N}, \eP{ExtPict}) \& (1_110_575 plus all above\-Unicode code \& points: [\ex00\-\exa8\exaa\-\exad\exaf\-\exff], \& U+0100..203B, U+203D..2048, \& U+204A..2121, U+2123..2138, U+213A..2193 \& ...) \& \ep{Extended_Pictographic: Y*} (Short: \ep{ExtPict=Y}, \ep{ExtPict}) \& (3537: [\exa9\exae], U+203C, U+2049, \& U+2122, U+2139, U+2194..2199 ...) \& \ep{Extender} \ep{Extender=Y} (Short: \ep{Ext}) (50) \& \ep{Extender: N*} (Short: \ep{Ext=N}, \eP{Ext}) (1_114_062 \& plus all above\-Unicode code points: \& [\ex00\-\exb6\exb8\-\exff], U+0100..02CF, \& U+02D2..063F, U+0641..07F9, \& U+07FB..0B54, U+0B56..0E45 ...) \& \ep{Extender: Y*} (Short: \ep{Ext=Y}, \ep{Ext}) (50: [\exb7], \& U+02D0..02D1, U+0640, U+07FA, U+0B55, \& U+0E46 ...) \& \ep{ExtPict} \ep{Extended_Pictographic} (= \& \ep{Extended_Pictographic=Y}) (3537) \& \ep{ExtPict: *} \ep{Extended_Pictographic: *} \& \ep{Final_Punctuation} \ep{General_Category=Final_Punctuation} \& (Short: \ep{Pf}) (10) \& \ep{Format} \ep{General_Category=Format} (Short: \& \ep{Cf}) (163) \& \ep{Full_Composition_Exclusion} \ep{Full_Composition_Exclusion=Y} \& (Short: \ep{CompEx}) (1120) \& \ep{Full_Composition_Exclusion: N*} (Short: \ep{CompEx=N}, \& \eP{CompEx}) (1_112_992 plus all above\- \& Unicode code points: U+0000..033F, \& U+0342, U+0345..0373, U+0375..037D, \& U+037F..0386, U+0388..0957 ...) \& \ep{Full_Composition_Exclusion: Y*} (Short: \ep{CompEx=Y}, \& \ep{CompEx}) (1120: U+0340..0341, \& U+0343..0344, U+0374, U+037E, U+0387, \& U+0958..095F ...) \& \ep{Gc: *} \ep{General_Category: *} \& \ep{GCB: *} \ep{Grapheme_Cluster_Break: *} \& \ep{General_Category: C} \ep{General_Category=Other} (969_578 plus \& all above\-Unicode code points) \& \ep{General_Category: Cased_Letter} [\ep{Ll}\ep{Lu}\ep{Lt}] (Short: \& \ep{Gc=LC}, \ep{LC}) (4089: [A\-Za\-z\exb5 \& \exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+0100..01BA, U+01BC..01BF, \& U+01C4..0293, U+0295..02AF, U+0370..0373 \& ...) \& \ep{General_Category: Cc} \ep{General_Category=Control} (65) \& \ep{General_Category: Cf} \ep{General_Category=Format} (163) \& \ep{General_Category: Close_Punctuation} (Short: \ep{Gc=Pe}, \ep{Pe}) \& (77: [\e)\e]\e}], U+0F3B, U+0F3D, U+169C, \& U+2046, U+207E ...) \& \ep{General_Category: Cn} \ep{General_Category=Unassigned} (829_834 \& plus all above\-Unicode code points) \& \ep{General_Category: Cntrl} \ep{General_Category=Control} (65) \& \ep{General_Category: Co} \ep{General_Category=Private_Use} (137_468) \& \ep{General_Category: Combining_Mark} \ep{General_Category=Mark} \& (2408) \& \ep{General_Category: Connector_Punctuation} (Short: \ep{Gc=Pc}, \& \ep{Pc}) (10: [_], U+203F..2040, U+2054, \& U+FE33..FE34, U+FE4D..FE4F, U+FF3F) \& \ep{General_Category: Control} (Short: \ep{Gc=Cc}, \ep{Cc}) (65: \& [\ex00\-\ex1f\ex7f\-\ex9f]) \& \ep{General_Category: Cs} \ep{General_Category=Surrogate} (2048) \& \ep{General_Category: Currency_Symbol} (Short: \ep{Gc=Sc}, \ep{Sc}) \& (63: [\e$\exa2\-\exa5], U+058F, U+060B, \& U+07FE..07FF, U+09F2..09F3, U+09FB ...) \& \ep{General_Category: Dash_Punctuation} (Short: \ep{Gc=Pd}, \ep{Pd}) \& (26: [\e\-], U+058A, U+05BE, U+1400, \& U+1806, U+2010..2015 ...) \& \ep{General_Category: Decimal_Number} (Short: \ep{Gc=Nd}, \ep{Nd}) \& (660: [0\-9], U+0660..0669, U+06F0..06F9, \& U+07C0..07C9, U+0966..096F, U+09E6..09EF \& ...) \& \ep{General_Category: Digit} \ep{General_Category=Decimal_Number} \& (660) \& \ep{General_Category: Enclosing_Mark} (Short: \ep{Gc=Me}, \ep{Me}) \& (13: U+0488..0489, U+1ABE, U+20DD..20E0, \& U+20E2..20E4, U+A670..A672) \& \ep{General_Category: Final_Punctuation} (Short: \ep{Gc=Pf}, \ep{Pf}) \& (10: [\exbb], U+2019, U+201D, U+203A, \& U+2E03, U+2E05 ...) \& \ep{General_Category: Format} (Short: \ep{Gc=Cf}, \ep{Cf}) (163: \& [\exad], U+0600..0605, U+061C, U+06DD, \& U+070F, U+0890..0891 ...) \& \ep{General_Category: Initial_Punctuation} (Short: \ep{Gc=Pi}, \& \ep{Pi}) (12: [\exab], U+2018, \& U+201B..201C, U+201F, U+2039, U+2E02 ...) \& \ep{General_Category: L} \ep{General_Category=Letter} (131_756) \& X \ep{General_Category: L&} \ep{General_Category=Cased_Letter} (4089) \& X \ep{General_Category: L_} \ep{General_Category=Cased_Letter} Note \& the trailing \*(Aq_\*(Aq matters in spite of \& loose matching rules. (4089) \& \ep{General_Category: LC} \ep{General_Category=Cased_Letter} (4089) \& \ep{General_Category: Letter} (Short: \ep{Gc=L}, \ep{L}) (131_756: \& [A\-Za\-z\exaa\exb5\exba\exc0\-\exd6\exd8\-\exf6 \& \exf8\-\exff], U+0100..02C1, U+02C6..02D1, \& U+02E0..02E4, U+02EC, U+02EE ...) \& \ep{General_Category: Letter_Number} (Short: \ep{Gc=Nl}, \ep{Nl}) \& (236: U+16EE..16F0, U+2160..2182, \& U+2185..2188, U+3007, U+3021..3029, \& U+3038..303A ...) \& \ep{General_Category: Line_Separator} (Short: \ep{Gc=Zl}, \ep{Zl}) \& (1: U+2028) \& \ep{General_Category: Ll} \ep{General_Category=Lowercase_Letter} \& (/i= General_Category=Cased_Letter) \& (2227) \& \ep{General_Category: Lm} \ep{General_Category=Modifier_Letter} (334) \& \ep{General_Category: Lo} \ep{General_Category=Other_Letter} \& (127_333) \& \ep{General_Category: Lowercase_Letter} (Short: \ep{Gc=Ll}, \ep{Ll}; \& /i= General_Category=Cased_Letter) \& (2227: [a\-z\exb5\exdf\-\exf6\exf8\-\exff], \& U+0101, U+0103, U+0105, U+0107, U+0109 \& ...) \& \ep{General_Category: Lt} \ep{General_Category=Titlecase_Letter} \& (/i= General_Category=Cased_Letter) (31) \& \ep{General_Category: Lu} \ep{General_Category=Uppercase_Letter} \& (/i= General_Category=Cased_Letter) \& (1831) \& \ep{General_Category: M} \ep{General_Category=Mark} (2408) \& \ep{General_Category: Mark} (Short: \ep{Gc=M}, \ep{M}) (2408: \& U+0300..036F, U+0483..0489, \& U+0591..05BD, U+05BF, U+05C1..05C2, \& U+05C4..05C5 ...) \& \ep{General_Category: Math_Symbol} (Short: \ep{Gc=Sm}, \ep{Sm}) (948: \& [+<=>\e|~\exac\exb1\exd7\exf7], U+03F6, \& U+0606..0608, U+2044, U+2052, \& U+207A..207C ...) \& \ep{General_Category: Mc} \ep{General_Category=Spacing_Mark} (445) \& \ep{General_Category: Me} \ep{General_Category=Enclosing_Mark} (13) \& \ep{General_Category: Mn} \ep{General_Category=Nonspacing_Mark} \& (1950) \& \ep{General_Category: Modifier_Letter} (Short: \ep{Gc=Lm}, \ep{Lm}) \& (334: U+02B0..02C1, U+02C6..02D1, \& U+02E0..02E4, U+02EC, U+02EE, U+0374 ...) \& \ep{General_Category: Modifier_Symbol} (Short: \ep{Gc=Sk}, \ep{Sk}) \& (125: [\e^\`\exa8\exaf\exb4\exb8], \& U+02C2..02C5, U+02D2..02DF, \& U+02E5..02EB, U+02ED, U+02EF..02FF ...) \& \ep{General_Category: N} \ep{General_Category=Number} (1791) \& \ep{General_Category: Nd} \ep{General_Category=Decimal_Number} (660) \& \ep{General_Category: Nl} \ep{General_Category=Letter_Number} (236) \& \ep{General_Category: No} \ep{General_Category=Other_Number} (895) \& \ep{General_Category: Nonspacing_Mark} (Short: \ep{Gc=Mn}, \ep{Mn}) \& (1950: U+0300..036F, U+0483..0487, \& U+0591..05BD, U+05BF, U+05C1..05C2, \& U+05C4..05C5 ...) \& \ep{General_Category: Number} (Short: \ep{Gc=N}, \ep{N}) (1791: [0\-9 \& \exb2\-\exb3\exb9\exbc\-\exbe], U+0660..0669, \& U+06F0..06F9, U+07C0..07C9, \& U+0966..096F, U+09E6..09EF ...) \& \ep{General_Category: Open_Punctuation} (Short: \ep{Gc=Ps}, \ep{Ps}) \& (79: [\e(\e[\e{], U+0F3A, U+0F3C, U+169B, \& U+201A, U+201E ...) \& \ep{General_Category: Other} (Short: \ep{Gc=C}, \ep{C}) (969_578 plus \& all above\-Unicode code points: [\ex00\- \& \ex1f\ex7f\-\ex9f\exad], U+0378..0379, \& U+0380..0383, U+038B, U+038D, U+03A2 ...) \& \ep{General_Category: Other_Letter} (Short: \ep{Gc=Lo}, \ep{Lo}) \& (127_333: [\exaa\exba], U+01BB, \& U+01C0..01C3, U+0294, U+05D0..05EA, \& U+05EF..05F2 ...) \& \ep{General_Category: Other_Number} (Short: \ep{Gc=No}, \ep{No}) \& (895: [\exb2\-\exb3\exb9\exbc\-\exbe], \& U+09F4..09F9, U+0B72..0B77, \& U+0BF0..0BF2, U+0C78..0C7E, U+0D58..0D5E \& ...) \& \ep{General_Category: Other_Punctuation} (Short: \ep{Gc=Po}, \ep{Po}) \& (605: [!\e"#\e%&\e\*(Aq*,.\e/:;?\e@\e\e\exa1\exa7 \& \exb6\-\exb7\exbf], U+037E, U+0387, \& U+055A..055F, U+0589, U+05C0 ...) \& \ep{General_Category: Other_Symbol} (Short: \ep{Gc=So}, \ep{So}) \& (6605: [\exa6\exa9\exae\exb0], U+0482, \& U+058D..058E, U+060E..060F, U+06DE, \& U+06E9 ...) \& \ep{General_Category: P} \ep{General_Category=Punctuation} (819) \& \ep{General_Category: Paragraph_Separator} (Short: \ep{Gc=Zp}, \& \ep{Zp}) (1: U+2029) \& \ep{General_Category: Pc} \ep{General_Category= \& Connector_Punctuation} (10) \& \ep{General_Category: Pd} \ep{General_Category=Dash_Punctuation} (26) \& \ep{General_Category: Pe} \ep{General_Category=Close_Punctuation} \& (77) \& \ep{General_Category: Pf} \ep{General_Category=Final_Punctuation} \& (10) \& \ep{General_Category: Pi} \ep{General_Category=Initial_Punctuation} \& (12) \& \ep{General_Category: Po} \ep{General_Category=Other_Punctuation} \& (605) \& \ep{General_Category: Private_Use} (Short: \ep{Gc=Co}, \ep{Co}) \& (137_468: U+E000..F8FF, U+F0000..FFFFD, \& U+100000..10FFFD) \& \ep{General_Category: Ps} \ep{General_Category=Open_Punctuation} (79) \& \ep{General_Category: Punct} \ep{General_Category=Punctuation} (819) \& \ep{General_Category: Punctuation} (Short: \ep{Gc=P}, \ep{P}) (819: \& [!\e"#\e%&\e\*(Aq\e(\e)*,\e\-.\e/:;?\e@\e[\e\e\e]_\e{\e} \& \exa1\exa7\exab\exb6\-\exb7\exbb\exbf], U+037E, \& U+0387, U+055A..055F, U+0589..058A, \& U+05BE ...) \& \ep{General_Category: S} \ep{General_Category=Symbol} (7741) \& \ep{General_Category: Sc} \ep{General_Category=Currency_Symbol} (63) \& \ep{General_Category: Separator} (Short: \ep{Gc=Z}, \ep{Z}) (19: \& [\ex20\exa0], U+1680, U+2000..200A, \& U+2028..2029, U+202F, U+205F ...) \& \ep{General_Category: Sk} \ep{General_Category=Modifier_Symbol} (125) \& \ep{General_Category: Sm} \ep{General_Category=Math_Symbol} (948) \& \ep{General_Category: So} \ep{General_Category=Other_Symbol} (6605) \& \ep{General_Category: Space_Separator} (Short: \ep{Gc=Zs}, \ep{Zs}) \& (17: [\ex20\exa0], U+1680, U+2000..200A, \& U+202F, U+205F, U+3000) \& \ep{General_Category: Spacing_Mark} (Short: \ep{Gc=Mc}, \ep{Mc}) \& (445: U+0903, U+093B, U+093E..0940, \& U+0949..094C, U+094E..094F, U+0982..0983 \& ...) \& \ep{General_Category: Surrogate} (Short: \ep{Gc=Cs}, \ep{Cs}) (2048: \& U+D800..DFFF) \& \ep{General_Category: Symbol} (Short: \ep{Gc=S}, \ep{S}) (7741: \& [\e$+<=>\e^\`\e|~\exa2\-\exa6\exa8\-\exa9\exac\exae\- \& \exb1\exb4\exb8\exd7\exf7], U+02C2..02C5, \& U+02D2..02DF, U+02E5..02EB, U+02ED, \& U+02EF..02FF ...) \& \ep{General_Category: Titlecase_Letter} (Short: \ep{Gc=Lt}, \ep{Lt}; \& /i= General_Category=Cased_Letter) (31: \& U+01C5, U+01C8, U+01CB, U+01F2, \& U+1F88..1F8F, U+1F98..1F9F ...) \& \ep{General_Category: Unassigned} (Short: \ep{Gc=Cn}, \ep{Cn}) \& (829_834 plus all above\-Unicode code \& points: U+0378..0379, U+0380..0383, \& U+038B, U+038D, U+03A2, U+0530 ...) \& \ep{General_Category: Uppercase_Letter} (Short: \ep{Gc=Lu}, \ep{Lu}; \& /i= General_Category=Cased_Letter) \& (1831: [A\-Z\exc0\-\exd6\exd8\-\exde], U+0100, \& U+0102, U+0104, U+0106, U+0108 ...) \& \ep{General_Category: Z} \ep{General_Category=Separator} (19) \& \ep{General_Category: Zl} \ep{General_Category=Line_Separator} (1) \& \ep{General_Category: Zp} \ep{General_Category=Paragraph_Separator} \& (1) \& \ep{General_Category: Zs} \ep{General_Category=Space_Separator} (17) \& X \ep{General_Punctuation} \ep{Block=General_Punctuation} (Short: \& \ep{InPunctuation}) (112) \& X \ep{Geometric_Shapes} \ep{Block=Geometric_Shapes} (96) \& X \ep{Geometric_Shapes_Ext} \ep{Geometric_Shapes_Extended} (= \& \ep{Block=Geometric_Shapes_Extended}) \& (128) \& X \ep{Geometric_Shapes_Extended} \ep{Block=Geometric_Shapes_Extended} \& (Short: \ep{InGeometricShapesExt}) (128) \& \ep{Geor} \ep{Georgian} (= \ep{Script_Extensions= \& Georgian}) (NOT \ep{Block=Georgian}) (174) \& \ep{Georgian} \ep{Script_Extensions=Georgian} (Short: \& \ep{Geor}; NOT \ep{Block=Georgian}) (174) \& X \ep{Georgian_Ext} \ep{Georgian_Extended} (= \ep{Block= \& Georgian_Extended}) (48) \& X \ep{Georgian_Extended} \ep{Block=Georgian_Extended} (Short: \& \ep{InGeorgianExt}) (48) \& X \ep{Georgian_Sup} \ep{Georgian_Supplement} (= \ep{Block= \& Georgian_Supplement}) (48) \& X \ep{Georgian_Supplement} \ep{Block=Georgian_Supplement} (Short: \& \ep{InGeorgianSup}) (48) \& \ep{Glag} \ep{Glagolitic} (= \ep{Script_Extensions= \& Glagolitic}) (NOT \ep{Block=Glagolitic}) \& (138) \& \ep{Glagolitic} \ep{Script_Extensions=Glagolitic} (Short: \& \ep{Glag}; NOT \ep{Block=Glagolitic}) (138) \& X \ep{Glagolitic_Sup} \ep{Glagolitic_Supplement} (= \ep{Block= \& Glagolitic_Supplement}) (48) \& X \ep{Glagolitic_Supplement} \ep{Block=Glagolitic_Supplement} (Short: \& \ep{InGlagoliticSup}) (48) \& \ep{Gong} \ep{Gunjala_Gondi} (= \ep{Script_Extensions= \& Gunjala_Gondi}) (NOT \ep{Block= \& Gunjala_Gondi}) (65) \& \ep{Gonm} \ep{Masaram_Gondi} (= \ep{Script_Extensions= \& Masaram_Gondi}) (NOT \ep{Block= \& Masaram_Gondi}) (77) \& \ep{Goth} \ep{Gothic} (= \ep{Script_Extensions= \& Gothic}) (NOT \ep{Block=Gothic}) (27) \& \ep{Gothic} \ep{Script_Extensions=Gothic} (Short: \& \ep{Goth}; NOT \ep{Block=Gothic}) (27) \& \ep{Gr_Base} \ep{Grapheme_Base} (= \ep{Grapheme_Base=Y}) \& (142_539) \& \ep{Gr_Base: *} \ep{Grapheme_Base: *} \& \ep{Gr_Ext} \ep{Grapheme_Extend} (= \ep{Grapheme_Extend= \& Y}) (2090) \& \ep{Gr_Ext: *} \ep{Grapheme_Extend: *} \& \ep{Gran} \ep{Grantha} (= \ep{Script_Extensions= \& Grantha}) (NOT \ep{Block=Grantha}) (116) \& \ep{Grantha} \ep{Script_Extensions=Grantha} (Short: \& \ep{Gran}; NOT \ep{Block=Grantha}) (116) \& \ep{Graph} \ep{XPosixGraph} (282_146) \& \ep{Grapheme_Base} \ep{Grapheme_Base=Y} (Short: \ep{GrBase}) \& (142_539) \& \ep{Grapheme_Base: N*} (Short: \ep{GrBase=N}, \eP{GrBase}) (971_573 \& plus all above\-Unicode code points: \& [\ex00\-\ex1f\ex7f\-\ex9f\exad], U+0300..036F, \& U+0378..0379, U+0380..0383, U+038B, \& U+038D ...) \& \ep{Grapheme_Base: Y*} (Short: \ep{GrBase=Y}, \ep{GrBase}) \& (142_539: [\ex20\-\ex7e\exa0\-\exac\exae\-\exff], \& U+0100..02FF, U+0370..0377, \& U+037A..037F, U+0384..038A, U+038C ...) \& \ep{Grapheme_Cluster_Break: CN} \ep{Grapheme_Cluster_Break=Control} \& (3886) \& \ep{Grapheme_Cluster_Break: Control} (Short: \ep{GCB=CN}) (3886: [^ \& \en\er\ex20\-\ex7e\exa0\-\exac\exae\-\exff], \& U+061C, U+180E, U+200B, U+200E..200F, \& U+2028..202E ...) \& \ep{Grapheme_Cluster_Break: CR} (Short: \ep{GCB=CR}) (1: [\er]) \& \ep{Grapheme_Cluster_Break: E_Base} (Short: \ep{GCB=EB}) (0) \& \ep{Grapheme_Cluster_Break: E_Base_GAZ} (Short: \ep{GCB=EBG}) (0) \& \ep{Grapheme_Cluster_Break: E_Modifier} (Short: \ep{GCB=EM}) (0) \& \ep{Grapheme_Cluster_Break: EB} \ep{Grapheme_Cluster_Break=E_Base} \& (0) \& \ep{Grapheme_Cluster_Break: EBG} \ep{Grapheme_Cluster_Break= \& E_Base_GAZ} (0) \& \ep{Grapheme_Cluster_Break: EM} \ep{Grapheme_Cluster_Break= \& E_Modifier} (0) \& \ep{Grapheme_Cluster_Break: EX} \ep{Grapheme_Cluster_Break=Extend} \& (2095) \& \ep{Grapheme_Cluster_Break: Extend} (Short: \ep{GCB=EX}) (2095: \& U+0300..036F, U+0483..0489, \& U+0591..05BD, U+05BF, U+05C1..05C2, \& U+05C4..05C5 ...) \& \ep{Grapheme_Cluster_Break: GAZ} \ep{Grapheme_Cluster_Break= \& Glue_After_Zwj} (0) \& \ep{Grapheme_Cluster_Break: Glue_After_Zwj} (Short: \ep{GCB=GAZ}) (0) \& \ep{Grapheme_Cluster_Break: L} (Short: \ep{GCB=L}) (125: \& U+1100..115F, U+A960..A97C) \& \ep{Grapheme_Cluster_Break: LF} (Short: \ep{GCB=LF}) (1: [\en]) \& \ep{Grapheme_Cluster_Break: LV} (Short: \ep{GCB=LV}) (399: U+AC00, \& U+AC1C, U+AC38, U+AC54, U+AC70, U+AC8C \& ...) \& \ep{Grapheme_Cluster_Break: LVT} (Short: \ep{GCB=LVT}) (10_773: \& U+AC01..AC1B, U+AC1D..AC37, \& U+AC39..AC53, U+AC55..AC6F, \& U+AC71..AC8B, U+AC8D..ACA7 ...) \& \ep{Grapheme_Cluster_Break: Other} (Short: \ep{GCB=XX}) (1_096_159 \& plus all above\-Unicode code points: \& [\ex20\-\ex7e\exa0\-\exac\exae\-\exff], \& U+0100..02FF, U+0370..0482, \& U+048A..0590, U+05BE, U+05C0 ...) \& \ep{Grapheme_Cluster_Break: PP} \ep{Grapheme_Cluster_Break=Prepend} \& (26) \& \ep{Grapheme_Cluster_Break: Prepend} (Short: \ep{GCB=PP}) (26: \& U+0600..0605, U+06DD, U+070F, \& U+0890..0891, U+08E2, U+0D4E ...) \& \ep{Grapheme_Cluster_Break: Regional_Indicator} (Short: \ep{GCB=RI}) \& (26: U+1F1E6..1F1FF) \& \ep{Grapheme_Cluster_Break: RI} \ep{Grapheme_Cluster_Break= \& Regional_Indicator} (26) \& \ep{Grapheme_Cluster_Break: SM} \ep{Grapheme_Cluster_Break= \& SpacingMark} (388) \& \ep{Grapheme_Cluster_Break: SpacingMark} (Short: \ep{GCB=SM}) (388: \& U+0903, U+093B, U+093E..0940, \& U+0949..094C, U+094E..094F, U+0982..0983 \& ...) \& \ep{Grapheme_Cluster_Break: T} (Short: \ep{GCB=T}) (137: \& U+11A8..11FF, U+D7CB..D7FB) \& \ep{Grapheme_Cluster_Break: V} (Short: \ep{GCB=V}) (95: \& U+1160..11A7, U+D7B0..D7C6) \& \ep{Grapheme_Cluster_Break: XX} \ep{Grapheme_Cluster_Break=Other} \& (1_096_159 plus all above\-Unicode code \& points) \& \ep{Grapheme_Cluster_Break: ZWJ} (Short: \ep{GCB=ZWJ}) (1: U+200D) \& \ep{Grapheme_Extend} \ep{Grapheme_Extend=Y} (Short: \ep{GrExt}) \& (2090) \& \ep{Grapheme_Extend: N*} (Short: \ep{GrExt=N}, \eP{GrExt}) (1_112_022 \& plus all above\-Unicode code points: \& U+0000..02FF, U+0370..0482, \& U+048A..0590, U+05BE, U+05C0, U+05C3 ...) \& \ep{Grapheme_Extend: Y*} (Short: \ep{GrExt=Y}, \ep{GrExt}) (2090: \& U+0300..036F, U+0483..0489, \& U+0591..05BD, U+05BF, U+05C1..05C2, \& U+05C4..05C5 ...) \& \ep{Greek} \ep{Script_Extensions=Greek} (Short: \& \ep{Grek}; NOT \ep{Greek_And_Coptic}) (522) \& X \ep{Greek_And_Coptic} \ep{Block=Greek_And_Coptic} (Short: \& \ep{InGreek}) (144) \& X \ep{Greek_Ext} \ep{Greek_Extended} (= \ep{Block= \& Greek_Extended}) (256) \& X \ep{Greek_Extended} \ep{Block=Greek_Extended} (Short: \& \ep{InGreekExt}) (256) \& \ep{Grek} \ep{Greek} (= \ep{Script_Extensions=Greek}) \& (NOT \ep{Greek_And_Coptic}) (522) \& \ep{Gujarati} \ep{Script_Extensions=Gujarati} (Short: \& \ep{Gujr}; NOT \ep{Block=Gujarati}) (105) \& \ep{Gujr} \ep{Gujarati} (= \ep{Script_Extensions= \& Gujarati}) (NOT \ep{Block=Gujarati}) (105) \& \ep{Gunjala_Gondi} \ep{Script_Extensions=Gunjala_Gondi} \& (Short: \ep{Gong}; NOT \ep{Block= \& Gunjala_Gondi}) (65) \& \ep{Gurmukhi} \ep{Script_Extensions=Gurmukhi} (Short: \& \ep{Guru}; NOT \ep{Block=Gurmukhi}) (94) \& \ep{Guru} \ep{Gurmukhi} (= \ep{Script_Extensions= \& Gurmukhi}) (NOT \ep{Block=Gurmukhi}) (94) \& X \ep{Half_And_Full_Forms} \ep{Halfwidth_And_Fullwidth_Forms} (= \& \ep{Block=Halfwidth_And_Fullwidth_Forms}) \& (240) \& X \ep{Half_Marks} \ep{Combining_Half_Marks} (= \ep{Block= \& Combining_Half_Marks}) (16) \& X \ep{Halfwidth_And_Fullwidth_Forms} \ep{Block= \& Halfwidth_And_Fullwidth_Forms} (Short: \& \ep{InHalfAndFullForms}) (240) \& \ep{Han} \ep{Script_Extensions=Han} (94_503) \& \ep{Hang} \ep{Hangul} (= \ep{Script_Extensions= \& Hangul}) (NOT \ep{Hangul_Syllables}) \& (11_775) \& \ep{Hangul} \ep{Script_Extensions=Hangul} (Short: \& \ep{Hang}; NOT \ep{Hangul_Syllables}) \& (11_775) \& X \ep{Hangul_Compatibility_Jamo} \ep{Block=Hangul_Compatibility_Jamo} \& (Short: \ep{InCompatJamo}) (96) \& X \ep{Hangul_Jamo} \ep{Block=Hangul_Jamo} (Short: \ep{InJamo}) \& (256) \& X \ep{Hangul_Jamo_Extended_A} \ep{Block=Hangul_Jamo_Extended_A} \& (Short: \ep{InJamoExtA}) (32) \& X \ep{Hangul_Jamo_Extended_B} \ep{Block=Hangul_Jamo_Extended_B} \& (Short: \ep{InJamoExtB}) (80) \& \ep{Hangul_Syllable_Type: L} \ep{Hangul_Syllable_Type=Leading_Jamo} \& (125) \& \ep{Hangul_Syllable_Type: Leading_Jamo} (Short: \ep{Hst=L}) (125: \& U+1100..115F, U+A960..A97C) \& \ep{Hangul_Syllable_Type: LV} \ep{Hangul_Syllable_Type=LV_Syllable} \& (399) \& \ep{Hangul_Syllable_Type: LV_Syllable} (Short: \ep{Hst=LV}) (399: \& U+AC00, U+AC1C, U+AC38, U+AC54, U+AC70, \& U+AC8C ...) \& \ep{Hangul_Syllable_Type: LVT} \ep{Hangul_Syllable_Type= \& LVT_Syllable} (10_773) \& \ep{Hangul_Syllable_Type: LVT_Syllable} (Short: \ep{Hst=LVT}) \& (10_773: U+AC01..AC1B, U+AC1D..AC37, \& U+AC39..AC53, U+AC55..AC6F, \& U+AC71..AC8B, U+AC8D..ACA7 ...) \& \ep{Hangul_Syllable_Type: NA} \ep{Hangul_Syllable_Type= \& Not_Applicable} (1_102_583 plus all \& above\-Unicode code points) \& \ep{Hangul_Syllable_Type: Not_Applicable} (Short: \ep{Hst=NA}) \& (1_102_583 plus all above\-Unicode code \& points: U+0000..10FF, U+1200..A95F, \& U+A97D..ABFF, U+D7A4..D7AF, \& U+D7C7..D7CA, U+D7FC..infinity) \& \ep{Hangul_Syllable_Type: T} \ep{Hangul_Syllable_Type=Trailing_Jamo} \& (137) \& \ep{Hangul_Syllable_Type: Trailing_Jamo} (Short: \ep{Hst=T}) (137: \& U+11A8..11FF, U+D7CB..D7FB) \& \ep{Hangul_Syllable_Type: V} \ep{Hangul_Syllable_Type=Vowel_Jamo} \& (95) \& \ep{Hangul_Syllable_Type: Vowel_Jamo} (Short: \ep{Hst=V}) (95: \& U+1160..11A7, U+D7B0..D7C6) \& X \ep{Hangul_Syllables} \ep{Block=Hangul_Syllables} (Short: \& \ep{InHangul}) (11_184) \& \ep{Hani} \ep{Han} (= \ep{Script_Extensions=Han}) \& (94_503) \& \ep{Hanifi_Rohingya} \ep{Script_Extensions=Hanifi_Rohingya} \& (Short: \ep{Rohg}; NOT \ep{Block= \& Hanifi_Rohingya}) (55) \& \ep{Hano} \ep{Hanunoo} (= \ep{Script_Extensions= \& Hanunoo}) (NOT \ep{Block=Hanunoo}) (23) \& \ep{Hanunoo} \ep{Script_Extensions=Hanunoo} (Short: \& \ep{Hano}; NOT \ep{Block=Hanunoo}) (23) \& \ep{Hatr} \ep{Hatran} (= \ep{Script_Extensions= \& Hatran}) (NOT \ep{Block=Hatran}) (26) \& \ep{Hatran} \ep{Script_Extensions=Hatran} (Short: \& \ep{Hatr}; NOT \ep{Block=Hatran}) (26) \& \ep{Hebr} \ep{Hebrew} (= \ep{Script_Extensions= \& Hebrew}) (NOT \ep{Block=Hebrew}) (134) \& \ep{Hebrew} \ep{Script_Extensions=Hebrew} (Short: \& \ep{Hebr}; NOT \ep{Block=Hebrew}) (134) \& \ep{Hex} \ep{XPosixXDigit} (= \ep{Hex_Digit=Y}) (44) \& \ep{Hex: *} \ep{Hex_Digit: *} \& \ep{Hex_Digit} \ep{XPosixXDigit} (= \ep{Hex_Digit=Y}) (44) \& \ep{Hex_Digit: N*} (Short: \ep{Hex=N}, \eP{Hex}) (1_114_068 \& plus all above\-Unicode code points: \& [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/:;<=>? \& \e@G\-Z\e[\e\e\e]\e^_\`g\-z\e{\e|\e}~\ex7f\-\exff], \& U+0100..FF0F, U+FF1A..FF20, \& U+FF27..FF40, U+FF47..infinity) \& \ep{Hex_Digit: Y*} (Short: \ep{Hex=Y}, \ep{Hex}) (44: [0\-9A\-Fa\- \& f], U+FF10..FF19, U+FF21..FF26, \& U+FF41..FF46) \& X \ep{High_Private_Use_Surrogates} \ep{Block= \& High_Private_Use_Surrogates} (Short: \& \ep{InHighPUSurrogates}) (128) \& X \ep{High_PU_Surrogates} \ep{High_Private_Use_Surrogates} (= \& \ep{Block=High_Private_Use_Surrogates}) \& (128) \& X \ep{High_Surrogates} \ep{Block=High_Surrogates} (896) \& \ep{Hira} \ep{Hiragana} (= \ep{Script_Extensions= \& Hiragana}) (NOT \ep{Block=Hiragana}) (432) \& \ep{Hiragana} \ep{Script_Extensions=Hiragana} (Short: \& \ep{Hira}; NOT \ep{Block=Hiragana}) (432) \& \ep{Hluw} \ep{Anatolian_Hieroglyphs} (= \& \ep{Script_Extensions= \& Anatolian_Hieroglyphs}) (NOT \ep{Block= \& Anatolian_Hieroglyphs}) (583) \& \ep{Hmng} \ep{Pahawh_Hmong} (= \ep{Script_Extensions= \& Pahawh_Hmong}) (NOT \ep{Block= \& Pahawh_Hmong}) (127) \& \ep{Hmnp} \ep{Nyiakeng_Puachue_Hmong} (= \& \ep{Script_Extensions= \& Nyiakeng_Puachue_Hmong}) (NOT \ep{Block= \& Nyiakeng_Puachue_Hmong}) (71) \& \ep{HorizSpace} \ep{XPosixBlank} (18) \& \ep{Hst: *} \ep{Hangul_Syllable_Type: *} \& \ep{Hung} \ep{Old_Hungarian} (= \ep{Script_Extensions= \& Old_Hungarian}) (NOT \ep{Block= \& Old_Hungarian}) (108) \& D \ep{Hyphen} \ep{Hyphen=Y} (11) \& D \ep{Hyphen: N*} Supplanted by Line_Break property values; \& see www.unicode.org/reports/tr14 \& (Single: \eP{Hyphen}) (1_114_101 plus all \& above\-Unicode code points: [\ex00\-\ex20! \& \e"#\e$\e%&\e\*(Aq\e(\e)*+,.\e/0\-9:;<=>?\e@A\-Z \& \e[\e\e\e]\e^_\`a\-z\e{\e|\e}~\ex7f\-\exac\exae\-\exff], \& U+0100..0589, U+058B..1805, \& U+1807..200F, U+2012..2E16, U+2E18..30FA \& ...) \& D \ep{Hyphen: Y*} Supplanted by Line_Break property values; \& see www.unicode.org/reports/tr14 \& (Single: \ep{Hyphen}) (11: [\e\-\exad], \& U+058A, U+1806, U+2010..2011, U+2E17, \& U+30FB ...) \& \ep{ID_Continue} \ep{ID_Continue=Y} (Short: \ep{IDC}; NOT \& \ep{Ideographic_Description_Characters}) \& (135_072) \& \ep{ID_Continue: N*} (Short: \ep{IDC=N}, \eP{IDC}) (979_040 plus \& all above\-Unicode code points: [\ex00\- \& \ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/:;<=>?\e@ \& \e[\e\e\e]\e^\`\e{\e|\e}~\ex7f\-\exa9\exab\-\exb4\exb6 \& \exb8\-\exb9\exbb\-\exbf\exd7\exf7], \& U+02C2..02C5, U+02D2..02DF, \& U+02E5..02EB, U+02ED, U+02EF..02FF ...) \& \ep{ID_Continue: Y*} (Short: \ep{IDC=Y}, \ep{IDC}) (135_072: \& [0\-9A\-Z_a\-z\exaa\exb5\exb7\exba\exc0\-\exd6 \& \exd8\-\exf6\exf8\-\exff], U+0100..02C1, \& U+02C6..02D1, U+02E0..02E4, U+02EC, \& U+02EE ...) \& \ep{ID_Start} \ep{ID_Start=Y} (Short: \ep{IDS}) (131_997) \& \ep{ID_Start: N*} (Short: \ep{IDS=N}, \eP{IDS}) (982_115 plus \& all above\-Unicode code points: [\ex00\- \& \ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/0\-9:;<=>?\e@ \& \e[\e\e\e]\e^_\`\e{\e|\e}~\ex7f\-\exa9\exab\-\exb4\exb6\- \& \exb9\exbb\-\exbf\exd7\exf7], U+02C2..02C5, \& U+02D2..02DF, U+02E5..02EB, U+02ED, \& U+02EF..036F ...) \& \ep{ID_Start: Y*} (Short: \ep{IDS=Y}, \ep{IDS}) (131_997: [A\- \& Za\-z\exaa\exb5\exba\exc0\-\exd6\exd8\-\exf6\exf8\- \& \exff], U+0100..02C1, U+02C6..02D1, \& U+02E0..02E4, U+02EC, U+02EE ...) \& \ep{IDC} \ep{ID_Continue} (= \ep{ID_Continue=Y}) (NOT \& \ep{Ideographic_Description_Characters}) \& (135_072) \& \ep{IDC: *} \ep{ID_Continue: *} \& \ep{Identifier_Status: Allowed} (107_957: [\e\*(Aq\e\-.0\-9:A\-Z_a\-z\exb7 \& \exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+0100..0131, U+0134..013E, \& U+0141..0148, U+014A..017E, U+018F ...) \& \ep{Identifier_Status: Restricted} (1_006_155 plus all above\- \& Unicode code points: [\ex00\-\ex20!\e"#\e$ \& \e%&\e(\e)*+,\e/;<=>?\e@\e[\e\e\e]\e^\`\e{\e|\e}~\ex7f\- \& \exb6\exb8\-\exbf\exd7\exf7], U+0132..0133, \& U+013F..0140, U+0149, U+017F..018E, \& U+0190..019F ...) \& \ep{Identifier_Type: Default_Ignorable} (396: [\exad], U+034F, \& U+061C, U+115F..1160, U+17B4..17B5, \& U+180B..180F ...) \& \ep{Identifier_Type: Deprecated} (15: U+0149, U+0673, U+0F77, \& U+0F79, U+17A3..17A4, U+206A..206F ...) \& \ep{Identifier_Type: Exclusion} (17_080: U+03E2..03EF, \& U+0800..082D, U+0830..083E, \& U+1680..169C, U+16A0..16EA, U+16EE..16F8 \& ...) \& \ep{Identifier_Type: Inclusion} (19: [\e\*(Aq\e\-.:\exb7], U+0375, U+058A, \& U+05F3..05F4, U+06FD..06FE, U+0F0B ...) \& \ep{Identifier_Type: Limited_Use} (5268: U+0700..070D, \& U+070F..074A, U+074D..074F, \& U+07C0..07FA, U+07FD..07FF, U+0840..085B \& ...) \& \ep{Identifier_Type: Not_Character} (969_409 plus all above\-Unicode \& code points: [^\et\en\ecK\ef\er\ex20\-\ex7e\ex85 \& \exa0\-\exff], U+0378..0379, U+0380..0383, \& U+038B, U+038D, U+03A2 ...) \& \ep{Identifier_Type: Not_NFKC} (4859: [\exa0\exa8\exaa\exaf\exb2\-\exb5 \& \exb8\-\exba\exbc\-\exbe], U+0132..0133, \& U+013F..0140, U+017F, U+01C4..01CC, \& U+01F1..01F3 ...) \& \ep{Identifier_Type: Not_XID} (8198: [\et\en\ecK\ef\er\ex20!\e"#\e$\e%& \& \e(\e)*+,\e/;<=>?\e@\e[\e\e\e]\e^\`\e{\e|\e}~\ex85 \& \exa1\-\exa7\exa9\exab\-\exac\exae\exb0\-\exb1\exb6 \& \exbb\exbf\exd7\exf7], U+02C2..02C5, \& U+02D2..02D7, U+02DE..02DF, \& U+02E5..02EB, U+02ED ...) \& \ep{Identifier_Type: Obsolete} (1627: U+018D, U+01AA..01AB, \& U+01B9..01BB, U+01BE..01BF, \& U+01F6..01F7, U+021C..021D ...) \& \ep{Identifier_Type: Recommended} (107_938: [0\-9A\-Z_a\-z\exc0\-\exd6 \& \exd8\-\exf6\exf8\-\exff], U+0100..0131, \& U+0134..013E, U+0141..0148, \& U+014A..017E, U+018F ...) \& \ep{Identifier_Type: Technical} (1660: U+0180, U+018D, \& U+01AA..01AB, U+01BA..01BB, U+01BE, \& U+01C0..01C3 ...) \& \ep{Identifier_Type: Uncommon_Use} (393: U+0181..018C, U+018E, \& U+0190..019F, U+01A2..01A9, \& U+01AC..01AE, U+01B1..01B8 ...) \& \ep{Ideo} \ep{Ideographic} (= \ep{Ideographic=Y}) \& (101_661) \& \ep{Ideo: *} \ep{Ideographic: *} \& \ep{Ideographic} \ep{Ideographic=Y} (Short: \ep{Ideo}) \& (101_661) \& \ep{Ideographic: N*} (Short: \ep{Ideo=N}, \eP{Ideo}) (1_012_451 \& plus all above\-Unicode code points: \& U+0000..3005, U+3008..3020, \& U+302A..3037, U+303B..33FF, \& U+4DC0..4DFF, U+A000..F8FF ...) \& \ep{Ideographic: Y*} (Short: \ep{Ideo=Y}, \ep{Ideo}) (101_661: \& U+3006..3007, U+3021..3029, \& U+3038..303A, U+3400..4DBF, \& U+4E00..9FFF, U+F900..FA6D ...) \& X \ep{Ideographic_Description_Characters} \ep{Block= \& Ideographic_Description_Characters} \& (Short: \ep{InIDC}) (16) \& X \ep{Ideographic_Symbols} \ep{Ideographic_Symbols_And_Punctuation} (= \& \ep{Block= \& Ideographic_Symbols_And_Punctuation}) \& (32) \& X \ep{Ideographic_Symbols_And_Punctuation} \ep{Block= \& Ideographic_Symbols_And_Punctuation} \& (Short: \ep{InIdeographicSymbols}) (32) \& \ep{IDS} \ep{ID_Start} (= \ep{ID_Start=Y}) (131_997) \& \ep{IDS: *} \ep{ID_Start: *} \& \ep{IDS_Binary_Operator} \ep{IDS_Binary_Operator=Y} (Short: \& \ep{IDSB}) (10) \& \ep{IDS_Binary_Operator: N*} (Short: \ep{IDSB=N}, \eP{IDSB}) \& (1_114_102 plus all above\-Unicode code \& points: U+0000..2FEF, U+2FF2..2FF3, \& U+2FFC..infinity) \& \ep{IDS_Binary_Operator: Y*} (Short: \ep{IDSB=Y}, \ep{IDSB}) (10: \& U+2FF0..2FF1, U+2FF4..2FFB) \& \ep{IDS_Trinary_Operator} \ep{IDS_Trinary_Operator=Y} (Short: \& \ep{IDST}) (2) \& \ep{IDS_Trinary_Operator: N*} (Short: \ep{IDST=N}, \eP{IDST}) \& (1_114_110 plus all above\-Unicode code \& points: U+0000..2FF1, U+2FF4..infinity) \& \ep{IDS_Trinary_Operator: Y*} (Short: \ep{IDST=Y}, \ep{IDST}) (2: \& U+2FF2..2FF3) \& \ep{IDSB} \ep{IDS_Binary_Operator} (= \& \ep{IDS_Binary_Operator=Y}) (10) \& \ep{IDSB: *} \ep{IDS_Binary_Operator: *} \& \ep{IDST} \ep{IDS_Trinary_Operator} (= \& \ep{IDS_Trinary_Operator=Y}) (2) \& \ep{IDST: *} \ep{IDS_Trinary_Operator: *} \& \ep{Imperial_Aramaic} \ep{Script_Extensions=Imperial_Aramaic} \& (Short: \ep{Armi}; NOT \ep{Block= \& Imperial_Aramaic}) (31) \& \ep{In: *} \ep{Present_In: *} (Perl extension) \& X \ep{In_*} \ep{Block: *} \& X \ep{Indic_Number_Forms} \ep{Common_Indic_Number_Forms} (= \ep{Block= \& Common_Indic_Number_Forms}) (16) \& \ep{Indic_Positional_Category: Bottom} (Short: \ep{InPC=Bottom}) \& (352: U+093C, U+0941..0944, U+094D, \& U+0952, U+0956..0957, U+0962..0963 ...) \& \ep{Indic_Positional_Category: Bottom_And_Left} (Short: \ep{InPC= \& BottomAndLeft}) (1: U+A9BF) \& \ep{Indic_Positional_Category: Bottom_And_Right} (Short: \ep{InPC= \& BottomAndRight}) (4: U+1B3B, U+A9BE, \& U+A9C0, U+11942) \& \ep{Indic_Positional_Category: Left} (Short: \ep{InPC=Left}) (64: \& U+093F, U+094E, U+09BF, U+09C7..09C8, \& U+0A3F, U+0ABF ...) \& \ep{Indic_Positional_Category: Left_And_Right} (Short: \ep{InPC= \& LeftAndRight}) (22: U+09CB..09CC, \& U+0B4B, U+0BCA..0BCC, U+0D4A..0D4C, \& U+0DDC, U+0DDE ...) \& \ep{Indic_Positional_Category: NA} (Short: \ep{InPC=NA}) (1_112_896 \& plus all above\-Unicode code points: \& U+0000..08FF, U+0904..0939, U+093D, \& U+0950, U+0958..0961, U+0964..0980 ...) \& \ep{Indic_Positional_Category: Overstruck} (Short: \ep{InPC= \& Overstruck}) (10: U+1CD4, U+1CE2..1CE8, \& U+10A01, U+10A06) \& \ep{Indic_Positional_Category: Right} (Short: \ep{InPC=Right}) (290: \& U+0903, U+093B, U+093E, U+0940, \& U+0949..094C, U+094F ...) \& \ep{Indic_Positional_Category: Top} (Short: \ep{InPC=Top}) (418: \& U+0900..0902, U+093A, U+0945..0948, \& U+0951, U+0953..0955, U+0981 ...) \& \ep{Indic_Positional_Category: Top_And_Bottom} (Short: \ep{InPC= \& TopAndBottom}) (10: U+0C48, U+0F73, \& U+0F76..0F79, U+0F81, U+1B3C, \& U+1112E..1112F) \& \ep{Indic_Positional_Category: Top_And_Bottom_And_Left} (Short: \& \ep{InPC=TopAndBottomAndLeft}) (2: \& U+103C, U+1171E) \& \ep{Indic_Positional_Category: Top_And_Bottom_And_Right} (Short: \& \ep{InPC=TopAndBottomAndRight}) (1: \& U+1B3D) \& \ep{Indic_Positional_Category: Top_And_Left} (Short: \ep{InPC= \& TopAndLeft}) (6: U+0B48, U+0DDA, U+17BE, \& U+1C29, U+114BB, U+115B9) \& \ep{Indic_Positional_Category: Top_And_Left_And_Right} (Short: \& \ep{InPC=TopAndLeftAndRight}) (4: U+0B4C, \& U+0DDD, U+17BF, U+115BB) \& \ep{Indic_Positional_Category: Top_And_Right} (Short: \ep{InPC= \& TopAndRight}) (13: U+0AC9, U+0B57, \& U+0CC0, U+0CC7..0CC8, U+0CCA..0CCB, \& U+1925..1926 ...) \& \ep{Indic_Positional_Category: Visual_Order_Left} (Short: \ep{InPC= \& VisualOrderLeft}) (19: U+0E40..0E44, \& U+0EC0..0EC4, U+19B5..19B7, U+19BA, \& U+AAB5..AAB6, U+AAB9 ...) \& X \ep{Indic_Siyaq_Numbers} \ep{Block=Indic_Siyaq_Numbers} (80) \& \ep{Indic_Syllabic_Category: Avagraha} (Short: \ep{InSC=Avagraha}) \& (17: U+093D, U+09BD, U+0ABD, U+0B3D, \& U+0C3D, U+0CBD ...) \& \ep{Indic_Syllabic_Category: Bindu} (Short: \ep{InSC=Bindu}) (91: \& U+0900..0902, U+0981..0982, U+09FC, \& U+0A01..0A02, U+0A70, U+0A81..0A82 ...) \& \ep{Indic_Syllabic_Category: Brahmi_Joining_Number} (Short: \& \ep{InSC=BrahmiJoiningNumber}) (20: \& U+11052..11065) \& \ep{Indic_Syllabic_Category: Cantillation_Mark} (Short: \ep{InSC= \& CantillationMark}) (59: U+0951..0952, \& U+0A51, U+0AFA..0AFC, U+1CD0..1CD2, \& U+1CD4..1CE1, U+1CF4 ...) \& \ep{Indic_Syllabic_Category: Consonant} (Short: \ep{InSC=Consonant}) \& (2206: U+0915..0939, U+0958..095F, \& U+0978..097F, U+0995..09A8, \& U+09AA..09B0, U+09B2 ...) \& \ep{Indic_Syllabic_Category: Consonant_Dead} (Short: \ep{InSC= \& ConsonantDead}) (14: U+09CE, U+0C5D, \& U+0CDD, U+0D54..0D56, U+0D7A..0D7F, \& U+1CF2..1CF3) \& \ep{Indic_Syllabic_Category: Consonant_Final} (Short: \ep{InSC= \& ConsonantFinal}) (70: U+1930..1931, \& U+1933..1939, U+19C1..19C7, \& U+1A58..1A59, U+1B03, U+1B81 ...) \& \ep{Indic_Syllabic_Category: Consonant_Head_Letter} (Short: \& \ep{InSC=ConsonantHeadLetter}) (5: \& U+0F88..0F8C) \& \ep{Indic_Syllabic_Category: Consonant_Initial_Postfixed} (Short: \& \ep{InSC=ConsonantInitialPostfixed}) (1: \& U+1A5A) \& \ep{Indic_Syllabic_Category: Consonant_Killer} (Short: \ep{InSC= \& ConsonantKiller}) (2: U+0E4C, U+17CD) \& \ep{Indic_Syllabic_Category: Consonant_Medial} (Short: \ep{InSC= \& ConsonantMedial}) (31: U+0A75, \& U+0EBC..0EBD, U+103B..103E, \& U+105E..1060, U+1082, U+1A55..1A56 ...) \& \ep{Indic_Syllabic_Category: Consonant_Placeholder} (Short: \& \ep{InSC=ConsonantPlaceholder}) (22: [\e\- \& \exa0\exd7], U+0980, U+0A72..0A73, U+104B, \& U+104E, U+1900 ...) \& \ep{Indic_Syllabic_Category: Consonant_Preceding_Repha} (Short: \& \ep{InSC=ConsonantPrecedingRepha}) (3: \& U+0D4E, U+11941, U+11D46) \& \ep{Indic_Syllabic_Category: Consonant_Prefixed} (Short: \ep{InSC= \& ConsonantPrefixed}) (10: U+111C2..111C3, \& U+1193F, U+11A3A, U+11A84..11A89) \& \ep{Indic_Syllabic_Category: Consonant_Subjoined} (Short: \ep{InSC= \& ConsonantSubjoined}) (94: U+0F8D..0F97, \& U+0F99..0FBC, U+1929..192B, U+1A57, \& U+1A5B..1A5E, U+1BA1..1BA3 ...) \& \ep{Indic_Syllabic_Category: Consonant_Succeeding_Repha} (Short: \& \ep{InSC=ConsonantSucceedingRepha}) (1: \& U+17CC) \& \ep{Indic_Syllabic_Category: Consonant_With_Stacker} (Short: \& \ep{InSC=ConsonantWithStacker}) (8: \& U+0CF1..0CF2, U+1CF5..1CF6, \& U+11003..11004, U+11460..11461) \& \ep{Indic_Syllabic_Category: Gemination_Mark} (Short: \ep{InSC= \& GeminationMark}) (3: U+0A71, U+11237, \& U+11A98) \& \ep{Indic_Syllabic_Category: Invisible_Stacker} (Short: \ep{InSC= \& InvisibleStacker}) (12: U+1039, U+17D2, \& U+1A60, U+1BAB, U+AAF6, U+10A3F ...) \& \ep{Indic_Syllabic_Category: Joiner} (Short: \ep{InSC=Joiner}) (1: \& U+200D) \& \ep{Indic_Syllabic_Category: Modifying_Letter} (Short: \ep{InSC= \& ModifyingLetter}) (1: U+0B83) \& \ep{Indic_Syllabic_Category: Non_Joiner} (Short: \ep{InSC= \& NonJoiner}) (1: U+200C) \& \ep{Indic_Syllabic_Category: Nukta} (Short: \ep{InSC=Nukta}) (32: \& U+093C, U+09BC, U+0A3C, U+0ABC, \& U+0AFD..0AFF, U+0B3C ...) \& \ep{Indic_Syllabic_Category: Number} (Short: \ep{InSC=Number}) (491: \& [0\-9], U+0966..096F, U+09E6..09EF, \& U+0A66..0A6F, U+0AE6..0AEF, U+0B66..0B6F \& ...) \& \ep{Indic_Syllabic_Category: Number_Joiner} (Short: \ep{InSC= \& NumberJoiner}) (1: U+1107F) \& \ep{Indic_Syllabic_Category: Other} (Short: \ep{InSC=Other}) \& (1_109_551 plus all above\-Unicode code \& points: [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,. \& \e/:;<=>?\e@A\-Z\e[\e\e\e]\e^_\`a\-z\e{\e|\e}~\ex7f\- \& \ex9f\exa1\-\exb1\exb4\-\exd6\exd8\-\exff], \& U+0100..08FF, U+0950, U+0953..0954, \& U+0964..0965, U+0970..0971 ...) \& \ep{Indic_Syllabic_Category: Pure_Killer} (Short: \ep{InSC= \& PureKiller}) (25: U+0D3B..0D3C, U+0E3A, \& U+0E4E, U+0EBA, U+0F84, U+103A ...) \& \ep{Indic_Syllabic_Category: Register_Shifter} (Short: \ep{InSC= \& RegisterShifter}) (2: U+17C9..17CA) \& \ep{Indic_Syllabic_Category: Syllable_Modifier} (Short: \ep{InSC= \& SyllableModifier}) (25: [\exb2\-\exb3], \& U+09FE, U+0F35, U+0F37, U+0FC6, U+17CB \& ...) \& \ep{Indic_Syllabic_Category: Tone_Letter} (Short: \ep{InSC= \& ToneLetter}) (7: U+1970..1974, U+AAC0, \& U+AAC2) \& \ep{Indic_Syllabic_Category: Tone_Mark} (Short: \ep{InSC=ToneMark}) \& (42: U+0E48..0E4B, U+0EC8..0ECB, U+1037, \& U+1063..1064, U+1069..106D, U+1087..108D \& ...) \& \ep{Indic_Syllabic_Category: Virama} (Short: \ep{InSC=Virama}) (27: \& U+094D, U+09CD, U+0A4D, U+0ACD, U+0B4D, \& U+0BCD ...) \& \ep{Indic_Syllabic_Category: Visarga} (Short: \ep{InSC=Visarga}) \& (35: U+0903, U+0983, U+0A03, U+0A83, \& U+0B03, U+0C03 ...) \& \ep{Indic_Syllabic_Category: Vowel} (Short: \ep{InSC=Vowel}) (30: \& U+1963..196D, U+A85E..A861, U+A866, \& U+A922..A92A, U+11150..11154) \& \ep{Indic_Syllabic_Category: Vowel_Dependent} (Short: \ep{InSC= \& VowelDependent}) (686: U+093A..093B, \& U+093E..094C, U+094E..094F, \& U+0955..0957, U+0962..0963, U+09BE..09C4 \& ...) \& \ep{Indic_Syllabic_Category: Vowel_Independent} (Short: \ep{InSC= \& VowelIndependent}) (486: U+0904..0914, \& U+0960..0961, U+0972..0977, \& U+0985..098C, U+098F..0990, U+0993..0994 \& ...) \& \ep{Inherited} \ep{Script_Extensions=Inherited} (Short: \& \ep{Zinh}) (586) \& \ep{Initial_Punctuation} \ep{General_Category=Initial_Punctuation} \& (Short: \ep{Pi}) (12) \& \ep{InPC: *} \ep{Indic_Positional_Category: *} \& \ep{InSC: *} \ep{Indic_Syllabic_Category: *} \& \ep{Inscriptional_Pahlavi} \ep{Script_Extensions= \& Inscriptional_Pahlavi} (Short: \ep{Phli}; \& NOT \ep{Block=Inscriptional_Pahlavi}) (27) \& \ep{Inscriptional_Parthian} \ep{Script_Extensions= \& Inscriptional_Parthian} (Short: \& \ep{Prti}; NOT \ep{Block= \& Inscriptional_Parthian}) (30) \& X \ep{IPA_Ext} \ep{IPA_Extensions} (= \ep{Block= \& IPA_Extensions}) (96) \& X \ep{IPA_Extensions} \ep{Block=IPA_Extensions} (Short: \& \ep{InIPAExt}) (96) \& \ep{Is_*} \ep{*} (Any exceptions are individually \& noted beginning with the word NOT.) If \& an entry has flag(s) at its beginning, \& like "D", the "Is_" form has the same \& flag(s) \& \ep{Ital} \ep{Old_Italic} (= \ep{Script_Extensions= \& Old_Italic}) (NOT \ep{Block=Old_Italic}) \& (39) \& X \ep{Jamo} \ep{Hangul_Jamo} (= \ep{Block=Hangul_Jamo}) \& (256) \& X \ep{Jamo_Ext_A} \ep{Hangul_Jamo_Extended_A} (= \ep{Block= \& Hangul_Jamo_Extended_A}) (32) \& X \ep{Jamo_Ext_B} \ep{Hangul_Jamo_Extended_B} (= \ep{Block= \& Hangul_Jamo_Extended_B}) (80) \& \ep{Java} \ep{Javanese} (= \ep{Script_Extensions= \& Javanese}) (NOT \ep{Block=Javanese}) (91) \& \ep{Javanese} \ep{Script_Extensions=Javanese} (Short: \& \ep{Java}; NOT \ep{Block=Javanese}) (91) \& \ep{Jg: *} \ep{Joining_Group: *} \& \ep{Join_C} \ep{Join_Control} (= \ep{Join_Control=Y}) (2) \& \ep{Join_C: *} \ep{Join_Control: *} \& \ep{Join_Control} \ep{Join_Control=Y} (Short: \ep{JoinC}) (2) \& \ep{Join_Control: N*} (Short: \ep{JoinC=N}, \eP{JoinC}) (1_114_110 \& plus all above\-Unicode code points: \& U+0000..200B, U+200E..infinity) \& \ep{Join_Control: Y*} (Short: \ep{JoinC=Y}, \ep{JoinC}) (2: \& U+200C..200D) \& \ep{Joining_Group: African_Feh} (Short: \ep{Jg=AfricanFeh}) (1: \& U+08BB) \& \ep{Joining_Group: African_Noon} (Short: \ep{Jg=AfricanNoon}) (1: \& U+08BD) \& \ep{Joining_Group: African_Qaf} (Short: \ep{Jg=AfricanQaf}) (2: \& U+08BC, U+08C4) \& \ep{Joining_Group: Ain} (Short: \ep{Jg=Ain}) (9: U+0639..063A, \& U+06A0, U+06FC, U+075D..075F, U+08B3, \& U+08C3) \& \ep{Joining_Group: Alaph} (Short: \ep{Jg=Alaph}) (1: U+0710) \& \ep{Joining_Group: Alef} (Short: \ep{Jg=Alef}) (29: U+0622..0623, \& U+0625, U+0627, U+0671..0673, U+0675, \& U+0773..0774 ...) \& \ep{Joining_Group: Beh} (Short: \ep{Jg=Beh}) (27: U+0628, \& U+062A..062B, U+066E, U+0679..0680, \& U+0750..0756, U+08A0..08A1 ...) \& \ep{Joining_Group: Beth} (Short: \ep{Jg=Beth}) (2: U+0712, U+072D) \& \ep{Joining_Group: Burushaski_Yeh_Barree} (Short: \ep{Jg= \& BurushaskiYehBarree}) (2: U+077A..077B) \& \ep{Joining_Group: Dal} (Short: \ep{Jg=Dal}) (15: U+062F..0630, \& U+0688..0690, U+06EE, U+0759..075A, \& U+08AE) \& \ep{Joining_Group: Dalath_Rish} (Short: \ep{Jg=DalathRish}) (4: \& U+0715..0716, U+072A, U+072F) \& \ep{Joining_Group: E} (Short: \ep{Jg=E}) (1: U+0725) \& \ep{Joining_Group: Farsi_Yeh} (Short: \ep{Jg=FarsiYeh}) (7: \& U+063D..063F, U+06CC, U+06CE, \& U+0775..0776) \& \ep{Joining_Group: Fe} (Short: \ep{Jg=Fe}) (1: U+074F) \& \ep{Joining_Group: Feh} (Short: \ep{Jg=Feh}) (10: U+0641, \& U+06A1..06A6, U+0760..0761, U+08A4) \& \ep{Joining_Group: Final_Semkath} (Short: \ep{Jg=FinalSemkath}) (1: \& U+0724) \& \ep{Joining_Group: Gaf} (Short: \ep{Jg=Gaf}) (17: U+063B..063C, \& U+06A9, U+06AB, U+06AF..06B4, \& U+0762..0764, U+088D ...) \& \ep{Joining_Group: Gamal} (Short: \ep{Jg=Gamal}) (3: U+0713..0714, \& U+072E) \& \ep{Joining_Group: Hah} (Short: \ep{Jg=Hah}) (22: U+062C..062E, \& U+0681..0687, U+06BF, U+0757..0758, \& U+076E..076F, U+0772 ...) \& \ep{Joining_Group: Hamza_On_Heh_Goal} (Short: \ep{Jg= \& HamzaOnHehGoal}) (1: U+06C3) \& \ep{Joining_Group: Hanifi_Rohingya_Kinna_Ya} (Short: \ep{Jg= \& HanifiRohingyaKinnaYa}) (4: U+10D19, \& U+10D1E, U+10D20, U+10D23) \& \ep{Joining_Group: Hanifi_Rohingya_Pa} (Short: \ep{Jg= \& HanifiRohingyaPa}) (3: U+10D02, U+10D09, \& U+10D1C) \& \ep{Joining_Group: He} (Short: \ep{Jg=He}) (1: U+0717) \& \ep{Joining_Group: Heh} (Short: \ep{Jg=Heh}) (1: U+0647) \& \ep{Joining_Group: Heh_Goal} (Short: \ep{Jg=HehGoal}) (2: \& U+06C1..06C2) \& \ep{Joining_Group: Heth} (Short: \ep{Jg=Heth}) (1: U+071A) \& \ep{Joining_Group: Kaf} (Short: \ep{Jg=Kaf}) (6: U+0643, \& U+06AC..06AE, U+077F, U+08B4) \& \ep{Joining_Group: Kaph} (Short: \ep{Jg=Kaph}) (1: U+071F) \& \ep{Joining_Group: Khaph} (Short: \ep{Jg=Khaph}) (1: U+074E) \& \ep{Joining_Group: Knotted_Heh} (Short: \ep{Jg=KnottedHeh}) (2: \& U+06BE, U+06FF) \& \ep{Joining_Group: Lam} (Short: \ep{Jg=Lam}) (8: U+0644, \& U+06B5..06B8, U+076A, U+08A6, U+08C7) \& \ep{Joining_Group: Lamadh} (Short: \ep{Jg=Lamadh}) (1: U+0720) \& \ep{Joining_Group: Malayalam_Bha} (Short: \ep{Jg=MalayalamBha}) (1: \& U+0866) \& \ep{Joining_Group: Malayalam_Ja} (Short: \ep{Jg=MalayalamJa}) (1: \& U+0861) \& \ep{Joining_Group: Malayalam_Lla} (Short: \ep{Jg=MalayalamLla}) (1: \& U+0868) \& \ep{Joining_Group: Malayalam_Llla} (Short: \ep{Jg=MalayalamLlla}) \& (1: U+0869) \& \ep{Joining_Group: Malayalam_Nga} (Short: \ep{Jg=MalayalamNga}) (1: \& U+0860) \& \ep{Joining_Group: Malayalam_Nna} (Short: \ep{Jg=MalayalamNna}) (1: \& U+0864) \& \ep{Joining_Group: Malayalam_Nnna} (Short: \ep{Jg=MalayalamNnna}) \& (1: U+0865) \& \ep{Joining_Group: Malayalam_Nya} (Short: \ep{Jg=MalayalamNya}) (1: \& U+0862) \& \ep{Joining_Group: Malayalam_Ra} (Short: \ep{Jg=MalayalamRa}) (1: \& U+0867) \& \ep{Joining_Group: Malayalam_Ssa} (Short: \ep{Jg=MalayalamSsa}) (1: \& U+086A) \& \ep{Joining_Group: Malayalam_Tta} (Short: \ep{Jg=MalayalamTta}) (1: \& U+0863) \& \ep{Joining_Group: Manichaean_Aleph} (Short: \ep{Jg= \& ManichaeanAleph}) (1: U+10AC0) \& \ep{Joining_Group: Manichaean_Ayin} (Short: \ep{Jg=ManichaeanAyin}) \& (2: U+10AD9..10ADA) \& \ep{Joining_Group: Manichaean_Beth} (Short: \ep{Jg=ManichaeanBeth}) \& (2: U+10AC1..10AC2) \& \ep{Joining_Group: Manichaean_Daleth} (Short: \ep{Jg= \& ManichaeanDaleth}) (1: U+10AC5) \& \ep{Joining_Group: Manichaean_Dhamedh} (Short: \ep{Jg= \& ManichaeanDhamedh}) (1: U+10AD4) \& \ep{Joining_Group: Manichaean_Five} (Short: \ep{Jg=ManichaeanFive}) \& (1: U+10AEC) \& \ep{Joining_Group: Manichaean_Gimel} (Short: \ep{Jg= \& ManichaeanGimel}) (2: U+10AC3..10AC4) \& \ep{Joining_Group: Manichaean_Heth} (Short: \ep{Jg=ManichaeanHeth}) \& (1: U+10ACD) \& \ep{Joining_Group: Manichaean_Hundred} (Short: \ep{Jg= \& ManichaeanHundred}) (1: U+10AEF) \& \ep{Joining_Group: Manichaean_Kaph} (Short: \ep{Jg=ManichaeanKaph}) \& (3: U+10AD0..10AD2) \& \ep{Joining_Group: Manichaean_Lamedh} (Short: \ep{Jg= \& ManichaeanLamedh}) (1: U+10AD3) \& \ep{Joining_Group: Manichaean_Mem} (Short: \ep{Jg=ManichaeanMem}) \& (1: U+10AD6) \& \ep{Joining_Group: Manichaean_Nun} (Short: \ep{Jg=ManichaeanNun}) \& (1: U+10AD7) \& \ep{Joining_Group: Manichaean_One} (Short: \ep{Jg=ManichaeanOne}) \& (1: U+10AEB) \& \ep{Joining_Group: Manichaean_Pe} (Short: \ep{Jg=ManichaeanPe}) (2: \& U+10ADB..10ADC) \& \ep{Joining_Group: Manichaean_Qoph} (Short: \ep{Jg=ManichaeanQoph}) \& (3: U+10ADE..10AE0) \& \ep{Joining_Group: Manichaean_Resh} (Short: \ep{Jg=ManichaeanResh}) \& (1: U+10AE1) \& \ep{Joining_Group: Manichaean_Sadhe} (Short: \ep{Jg= \& ManichaeanSadhe}) (1: U+10ADD) \& \ep{Joining_Group: Manichaean_Samekh} (Short: \ep{Jg= \& ManichaeanSamekh}) (1: U+10AD8) \& \ep{Joining_Group: Manichaean_Taw} (Short: \ep{Jg=ManichaeanTaw}) \& (1: U+10AE4) \& \ep{Joining_Group: Manichaean_Ten} (Short: \ep{Jg=ManichaeanTen}) \& (1: U+10AED) \& \ep{Joining_Group: Manichaean_Teth} (Short: \ep{Jg=ManichaeanTeth}) \& (1: U+10ACE) \& \ep{Joining_Group: Manichaean_Thamedh} (Short: \ep{Jg= \& ManichaeanThamedh}) (1: U+10AD5) \& \ep{Joining_Group: Manichaean_Twenty} (Short: \ep{Jg= \& ManichaeanTwenty}) (1: U+10AEE) \& \ep{Joining_Group: Manichaean_Waw} (Short: \ep{Jg=ManichaeanWaw}) \& (1: U+10AC7) \& \ep{Joining_Group: Manichaean_Yodh} (Short: \ep{Jg=ManichaeanYodh}) \& (1: U+10ACF) \& \ep{Joining_Group: Manichaean_Zayin} (Short: \ep{Jg= \& ManichaeanZayin}) (2: U+10AC9..10ACA) \& \ep{Joining_Group: Meem} (Short: \ep{Jg=Meem}) (4: U+0645, \& U+0765..0766, U+08A7) \& \ep{Joining_Group: Mim} (Short: \ep{Jg=Mim}) (1: U+0721) \& \ep{Joining_Group: No_Joining_Group} (Short: \ep{Jg=NoJoiningGroup}) \& (1_113_762 plus all above\-Unicode code \& points: U+0000..061F, U+0621, U+0640, \& U+064B..066D, U+0670, U+0674 ...) \& \ep{Joining_Group: Noon} (Short: \ep{Jg=Noon}) (9: U+0646, \& U+06B9..06BC, U+0767..0769, U+0889) \& \ep{Joining_Group: Nun} (Short: \ep{Jg=Nun}) (1: U+0722) \& \ep{Joining_Group: Nya} (Short: \ep{Jg=Nya}) (1: U+06BD) \& \ep{Joining_Group: Pe} (Short: \ep{Jg=Pe}) (1: U+0726) \& \ep{Joining_Group: Qaf} (Short: \ep{Jg=Qaf}) (6: U+0642, U+066F, \& U+06A7..06A8, U+08A5, U+08B5) \& \ep{Joining_Group: Qaph} (Short: \ep{Jg=Qaph}) (1: U+0729) \& \ep{Joining_Group: Reh} (Short: \ep{Jg=Reh}) (19: U+0631..0632, \& U+0691..0699, U+06EF, U+075B, \& U+076B..076C, U+0771 ...) \& \ep{Joining_Group: Reversed_Pe} (Short: \ep{Jg=ReversedPe}) (1: \& U+0727) \& \ep{Joining_Group: Rohingya_Yeh} (Short: \ep{Jg=RohingyaYeh}) (1: \& U+08AC) \& \ep{Joining_Group: Sad} (Short: \ep{Jg=Sad}) (6: U+0635..0636, \& U+069D..069E, U+06FB, U+08AF) \& \ep{Joining_Group: Sadhe} (Short: \ep{Jg=Sadhe}) (1: U+0728) \& \ep{Joining_Group: Seen} (Short: \ep{Jg=Seen}) (11: U+0633..0634, \& U+069A..069C, U+06FA, U+075C, U+076D, \& U+0770 ...) \& \ep{Joining_Group: Semkath} (Short: \ep{Jg=Semkath}) (1: U+0723) \& \ep{Joining_Group: Shin} (Short: \ep{Jg=Shin}) (1: U+072B) \& \ep{Joining_Group: Straight_Waw} (Short: \ep{Jg=StraightWaw}) (1: \& U+08B1) \& \ep{Joining_Group: Swash_Kaf} (Short: \ep{Jg=SwashKaf}) (1: U+06AA) \& \ep{Joining_Group: Syriac_Waw} (Short: \ep{Jg=SyriacWaw}) (1: U+0718) \& \ep{Joining_Group: Tah} (Short: \ep{Jg=Tah}) (6: U+0637..0638, \& U+069F, U+088B..088C, U+08A3) \& \ep{Joining_Group: Taw} (Short: \ep{Jg=Taw}) (1: U+072C) \& \ep{Joining_Group: Teh_Marbuta} (Short: \ep{Jg=TehMarbuta}) (3: \& U+0629, U+06C0, U+06D5) \& \ep{Joining_Group: Teh_Marbuta_Goal} \ep{Joining_Group= \& Hamza_On_Heh_Goal} (1) \& \ep{Joining_Group: Teth} (Short: \ep{Jg=Teth}) (2: U+071B..071C) \& \ep{Joining_Group: Thin_Yeh} (Short: \ep{Jg=ThinYeh}) (1: U+0886) \& \ep{Joining_Group: Vertical_Tail} (Short: \ep{Jg=VerticalTail}) (1: \& U+088E) \& \ep{Joining_Group: Waw} (Short: \ep{Jg=Waw}) (16: U+0624, U+0648, \& U+0676..0677, U+06C4..06CB, U+06CF, \& U+0778..0779 ...) \& \ep{Joining_Group: Yeh} (Short: \ep{Jg=Yeh}) (11: U+0620, U+0626, \& U+0649..064A, U+0678, U+06D0..06D1, \& U+0777 ...) \& \ep{Joining_Group: Yeh_Barree} (Short: \ep{Jg=YehBarree}) (2: \& U+06D2..06D3) \& \ep{Joining_Group: Yeh_With_Tail} (Short: \ep{Jg=YehWithTail}) (1: \& U+06CD) \& \ep{Joining_Group: Yudh} (Short: \ep{Jg=Yudh}) (1: U+071D) \& \ep{Joining_Group: Yudh_He} (Short: \ep{Jg=YudhHe}) (1: U+071E) \& \ep{Joining_Group: Zain} (Short: \ep{Jg=Zain}) (1: U+0719) \& \ep{Joining_Group: Zhain} (Short: \ep{Jg=Zhain}) (1: U+074D) \& \ep{Joining_Type: C} \ep{Joining_Type=Join_Causing} (7) \& \ep{Joining_Type: D} \ep{Joining_Type=Dual_Joining} (610) \& \ep{Joining_Type: Dual_Joining} (Short: \ep{Jt=D}) (610: U+0620, \& U+0626, U+0628, U+062A..062E, \& U+0633..063F, U+0641..0647 ...) \& \ep{Joining_Type: Join_Causing} (Short: \ep{Jt=C}) (7: U+0640, \& U+07FA, U+0883..0885, U+180A, U+200D) \& \ep{Joining_Type: L} \ep{Joining_Type=Left_Joining} (5) \& \ep{Joining_Type: Left_Joining} (Short: \ep{Jt=L}) (5: U+A872, \& U+10ACD, U+10AD7, U+10D00, U+10FCB) \& \ep{Joining_Type: Non_Joining} (Short: \ep{Jt=U}) (1_111_230 plus \& all above\-Unicode code points: [\ex00\- \& \exac\exae\-\exff], U+0100..02FF, \& U+0370..0482, U+048A..0590, U+05BE, \& U+05C0 ...) \& \ep{Joining_Type: R} \ep{Joining_Type=Right_Joining} (152) \& \ep{Joining_Type: Right_Joining} (Short: \ep{Jt=R}) (152: \& U+0622..0625, U+0627, U+0629, \& U+062F..0632, U+0648, U+0671..0673 ...) \& \ep{Joining_Type: T} \ep{Joining_Type=Transparent} (2108) \& \ep{Joining_Type: Transparent} (Short: \ep{Jt=T}) (2108: [\exad], \& U+0300..036F, U+0483..0489, \& U+0591..05BD, U+05BF, U+05C1..05C2 ...) \& \ep{Joining_Type: U} \ep{Joining_Type=Non_Joining} (1_111_230 \& plus all above\-Unicode code points) \& \ep{Jt: *} \ep{Joining_Type: *} \& \ep{Kaithi} \ep{Script_Extensions=Kaithi} (Short: \& \ep{Kthi}; NOT \ep{Block=Kaithi}) (88) \& \ep{Kali} \ep{Kayah_Li} (= \ep{Script_Extensions= \& Kayah_Li}) (48) \& \ep{Kana} \ep{Katakana} (= \ep{Script_Extensions= \& Katakana}) (NOT \ep{Block=Katakana}) (372) \& X \ep{Kana_Ext_A} \ep{Kana_Extended_A} (= \ep{Block= \& Kana_Extended_A}) (48) \& X \ep{Kana_Ext_B} \ep{Kana_Extended_B} (= \ep{Block= \& Kana_Extended_B}) (16) \& X \ep{Kana_Extended_A} \ep{Block=Kana_Extended_A} (Short: \& \ep{InKanaExtA}) (48) \& X \ep{Kana_Extended_B} \ep{Block=Kana_Extended_B} (Short: \& \ep{InKanaExtB}) (16) \& X \ep{Kana_Sup} \ep{Kana_Supplement} (= \ep{Block= \& Kana_Supplement}) (256) \& X \ep{Kana_Supplement} \ep{Block=Kana_Supplement} (Short: \& \ep{InKanaSup}) (256) \& X \ep{Kanbun} \ep{Block=Kanbun} (16) \& X \ep{Kangxi} \ep{Kangxi_Radicals} (= \ep{Block= \& Kangxi_Radicals}) (224) \& X \ep{Kangxi_Radicals} \ep{Block=Kangxi_Radicals} (Short: \& \ep{InKangxi}) (224) \& \ep{Kannada} \ep{Script_Extensions=Kannada} (Short: \& \ep{Knda}; NOT \ep{Block=Kannada}) (105) \& \ep{Katakana} \ep{Script_Extensions=Katakana} (Short: \& \ep{Kana}; NOT \ep{Block=Katakana}) (372) \& X \ep{Katakana_Ext} \ep{Katakana_Phonetic_Extensions} (= \& \ep{Block=Katakana_Phonetic_Extensions}) \& (16) \& X \ep{Katakana_Phonetic_Extensions} \ep{Block= \& Katakana_Phonetic_Extensions} (Short: \& \ep{InKatakanaExt}) (16) \& \ep{Kayah_Li} \ep{Script_Extensions=Kayah_Li} (Short: \& \ep{Kali}) (48) \& \ep{Khar} \ep{Kharoshthi} (= \ep{Script_Extensions= \& Kharoshthi}) (NOT \ep{Block=Kharoshthi}) \& (68) \& \ep{Kharoshthi} \ep{Script_Extensions=Kharoshthi} (Short: \& \ep{Khar}; NOT \ep{Block=Kharoshthi}) (68) \& \ep{Khitan_Small_Script} \ep{Script_Extensions=Khitan_Small_Script} \& (Short: \ep{Kits}; NOT \ep{Block= \& Khitan_Small_Script}) (471) \& \ep{Khmer} \ep{Script_Extensions=Khmer} (Short: \& \ep{Khmr}; NOT \ep{Block=Khmer}) (146) \& X \ep{Khmer_Symbols} \ep{Block=Khmer_Symbols} (32) \& \ep{Khmr} \ep{Khmer} (= \ep{Script_Extensions=Khmer}) \& (NOT \ep{Block=Khmer}) (146) \& \ep{Khoj} \ep{Khojki} (= \ep{Script_Extensions= \& Khojki}) (NOT \ep{Block=Khojki}) (82) \& \ep{Khojki} \ep{Script_Extensions=Khojki} (Short: \& \ep{Khoj}; NOT \ep{Block=Khojki}) (82) \& \ep{Khudawadi} \ep{Script_Extensions=Khudawadi} (Short: \& \ep{Sind}; NOT \ep{Block=Khudawadi}) (81) \& \ep{Kits} \ep{Khitan_Small_Script} (= \& \ep{Script_Extensions= \& Khitan_Small_Script}) (NOT \ep{Block= \& Khitan_Small_Script}) (471) \& \ep{Knda} \ep{Kannada} (= \ep{Script_Extensions= \& Kannada}) (NOT \ep{Block=Kannada}) (105) \& \ep{Kthi} \ep{Kaithi} (= \ep{Script_Extensions= \& Kaithi}) (NOT \ep{Block=Kaithi}) (88) \& \ep{L} \epL \ep{Letter} (= \ep{General_Category=Letter}) \& (131_756) \& X \ep{L&} \ep{Cased_Letter} (= \ep{General_Category= \& Cased_Letter}) (4089) \& X \ep{L_} \ep{Cased_Letter} (= \ep{General_Category= \& Cased_Letter}) Note the trailing \*(Aq_\*(Aq \& matters in spite of loose matching \& rules. (4089) \& \ep{Lana} \ep{Tai_Tham} (= \ep{Script_Extensions= \& Tai_Tham}) (NOT \ep{Block=Tai_Tham}) (127) \& \ep{Lao} \ep{Script_Extensions=Lao} (NOT \ep{Block= \& Lao}) (82) \& \ep{Laoo} \ep{Lao} (= \ep{Script_Extensions=Lao}) (NOT \& \ep{Block=Lao}) (82) \& \ep{Latin} \ep{Script_Extensions=Latin} (Short: \& \ep{Latn}) (1504) \& X \ep{Latin_1} \ep{Latin_1_Supplement} (= \ep{Block= \& Latin_1_Supplement}) (128) \& X \ep{Latin_1_Sup} \ep{Latin_1_Supplement} (= \ep{Block= \& Latin_1_Supplement}) (128) \& X \ep{Latin_1_Supplement} \ep{Block=Latin_1_Supplement} (Short: \& \ep{InLatin1}) (128) \& X \ep{Latin_Ext_A} \ep{Latin_Extended_A} (= \ep{Block= \& Latin_Extended_A}) (128) \& X \ep{Latin_Ext_Additional} \ep{Latin_Extended_Additional} (= \& \ep{Block=Latin_Extended_Additional}) \& (256) \& X \ep{Latin_Ext_B} \ep{Latin_Extended_B} (= \ep{Block= \& Latin_Extended_B}) (208) \& X \ep{Latin_Ext_C} \ep{Latin_Extended_C} (= \ep{Block= \& Latin_Extended_C}) (32) \& X \ep{Latin_Ext_D} \ep{Latin_Extended_D} (= \ep{Block= \& Latin_Extended_D}) (224) \& X \ep{Latin_Ext_E} \ep{Latin_Extended_E} (= \ep{Block= \& Latin_Extended_E}) (64) \& X \ep{Latin_Ext_F} \ep{Latin_Extended_F} (= \ep{Block= \& Latin_Extended_F}) (64) \& X \ep{Latin_Ext_G} \ep{Latin_Extended_G} (= \ep{Block= \& Latin_Extended_G}) (256) \& X \ep{Latin_Extended_A} \ep{Block=Latin_Extended_A} (Short: \& \ep{InLatinExtA}) (128) \& X \ep{Latin_Extended_Additional} \ep{Block=Latin_Extended_Additional} \& (Short: \ep{InLatinExtAdditional}) (256) \& X \ep{Latin_Extended_B} \ep{Block=Latin_Extended_B} (Short: \& \ep{InLatinExtB}) (208) \& X \ep{Latin_Extended_C} \ep{Block=Latin_Extended_C} (Short: \& \ep{InLatinExtC}) (32) \& X \ep{Latin_Extended_D} \ep{Block=Latin_Extended_D} (Short: \& \ep{InLatinExtD}) (224) \& X \ep{Latin_Extended_E} \ep{Block=Latin_Extended_E} (Short: \& \ep{InLatinExtE}) (64) \& X \ep{Latin_Extended_F} \ep{Block=Latin_Extended_F} (Short: \& \ep{InLatinExtF}) (64) \& X \ep{Latin_Extended_G} \ep{Block=Latin_Extended_G} (Short: \& \ep{InLatinExtG}) (256) \& \ep{Latn} \ep{Latin} (= \ep{Script_Extensions=Latin}) \& (1504) \& \ep{Lb: *} \ep{Line_Break: *} \& \ep{LC} \ep{Cased_Letter} (= \ep{General_Category= \& Cased_Letter}) (4089) \& \ep{Lepc} \ep{Lepcha} (= \ep{Script_Extensions= \& Lepcha}) (NOT \ep{Block=Lepcha}) (74) \& \ep{Lepcha} \ep{Script_Extensions=Lepcha} (Short: \& \ep{Lepc}; NOT \ep{Block=Lepcha}) (74) \& \ep{Letter} \ep{General_Category=Letter} (Short: \ep{L}) \& (131_756) \& \ep{Letter_Number} \ep{General_Category=Letter_Number} (Short: \& \ep{Nl}) (236) \& X \ep{Letterlike_Symbols} \ep{Block=Letterlike_Symbols} (80) \& \ep{Limb} \ep{Limbu} (= \ep{Script_Extensions=Limbu}) \& (NOT \ep{Block=Limbu}) (69) \& \ep{Limbu} \ep{Script_Extensions=Limbu} (Short: \& \ep{Limb}; NOT \ep{Block=Limbu}) (69) \& \ep{Lina} \ep{Linear_A} (= \ep{Script_Extensions= \& Linear_A}) (NOT \ep{Block=Linear_A}) (386) \& \ep{Linb} \ep{Linear_B} (= \ep{Script_Extensions= \& Linear_B}) (268) \& \ep{Line_Break: AI} \ep{Line_Break=Ambiguous} (707) \& \ep{Line_Break: AL} \ep{Line_Break=Alphabetic} (22_043) \& \ep{Line_Break: Alphabetic} (Short: \ep{Lb=AL}) (22_043: [#&*<=>\e@A\- \& Z\e^_\`a\-z~\exa6\exa9\exac\exae\-\exaf\exb5\exc0\- \& \exd6\exd8\-\exf6\exf8\-\exff], U+0100..02C6, \& U+02CE..02CF, U+02D1..02D7, U+02DC, \& U+02DE ...) \& \ep{Line_Break: Ambiguous} (Short: \ep{Lb=AI}) (707: [\exa7\-\exa8\exaa \& \exb2\-\exb3\exb6\-\exba\exbc\-\exbe\exd7\exf7], \& U+02C7, U+02C9..02CB, U+02CD, U+02D0, \& U+02D8..02DB ...) \& \ep{Line_Break: B2} \ep{Line_Break=Break_Both} (3) \& \ep{Line_Break: BA} \ep{Line_Break=Break_After} (247) \& \ep{Line_Break: BB} \ep{Line_Break=Break_Before} (45) \& \ep{Line_Break: BK} \ep{Line_Break=Mandatory_Break} (4) \& \ep{Line_Break: Break_After} (Short: \ep{Lb=BA}) (247: [\et\e|\exad], \& U+058A, U+05BE, U+0964..0965, \& U+0E5A..0E5B, U+0F0B ...) \& \ep{Line_Break: Break_Before} (Short: \ep{Lb=BB}) (45: [\exb4], \& U+02C8, U+02CC, U+02DF, U+0C77, U+0C84 \& ...) \& \ep{Line_Break: Break_Both} (Short: \ep{Lb=B2}) (3: U+2014, \& U+2E3A..2E3B) \& \ep{Line_Break: Break_Symbols} (Short: \ep{Lb=SY}) (1: [\e/]) \& \ep{Line_Break: Carriage_Return} (Short: \ep{Lb=CR}) (1: [\er]) \& \ep{Line_Break: CB} \ep{Line_Break=Contingent_Break} (1) \& \ep{Line_Break: CJ} \ep{Line_Break= \& Conditional_Japanese_Starter} (58) \& \ep{Line_Break: CL} \ep{Line_Break=Close_Punctuation} (95) \& \ep{Line_Break: Close_Parenthesis} (Short: \ep{Lb=CP}) (2: [\e)\e]]) \& \ep{Line_Break: Close_Punctuation} (Short: \ep{Lb=CL}) (95: [\e}], \& U+0F3B, U+0F3D, U+169C, U+2046, U+207E \& ...) \& \ep{Line_Break: CM} \ep{Line_Break=Combining_Mark} (2399) \& \ep{Line_Break: Combining_Mark} (Short: \ep{Lb=CM}) (2399: [^\et\en \& \ecK\ef\er\ex20\-\ex7e\ex85\exa0\-\exff], \& U+0300..034E, U+0350..035B, \& U+0363..036F, U+0483..0489, U+0591..05BD \& ...) \& \ep{Line_Break: Complex_Context} (Short: \ep{Lb=SA}) (757: \& U+0E01..0E3A, U+0E40..0E4E, \& U+0E81..0E82, U+0E84, U+0E86..0E8A, \& U+0E8C..0EA3 ...) \& \ep{Line_Break: Conditional_Japanese_Starter} (Short: \ep{Lb=CJ}) \& (58: U+3041, U+3043, U+3045, U+3047, \& U+3049, U+3063 ...) \& \ep{Line_Break: Contingent_Break} (Short: \ep{Lb=CB}) (1: U+FFFC) \& \ep{Line_Break: CP} \ep{Line_Break=Close_Parenthesis} (2) \& \ep{Line_Break: CR} \ep{Line_Break=Carriage_Return} (1) \& \ep{Line_Break: E_Base} (Short: \ep{Lb=EB}) (132: U+261D, U+26F9, \& U+270A..270D, U+1F385, U+1F3C2..1F3C4, \& U+1F3C7 ...) \& \ep{Line_Break: E_Modifier} (Short: \ep{Lb=EM}) (5: U+1F3FB..1F3FF) \& \ep{Line_Break: EB} \ep{Line_Break=E_Base} (132) \& \ep{Line_Break: EM} \ep{Line_Break=E_Modifier} (5) \& \ep{Line_Break: EX} \ep{Line_Break=Exclamation} (40) \& \ep{Line_Break: Exclamation} (Short: \ep{Lb=EX}) (40: [!?], U+05C6, \& U+061B, U+061D..061F, U+06D4, U+07F9 ...) \& \ep{Line_Break: GL} \ep{Line_Break=Glue} (26) \& \ep{Line_Break: Glue} (Short: \ep{Lb=GL}) (26: [\exa0], U+034F, \& U+035C..0362, U+0F08, U+0F0C, U+0F12 ...) \& \ep{Line_Break: H2} (Short: \ep{Lb=H2}) (399: U+AC00, U+AC1C, \& U+AC38, U+AC54, U+AC70, U+AC8C ...) \& \ep{Line_Break: H3} (Short: \ep{Lb=H3}) (10_773: U+AC01..AC1B, \& U+AC1D..AC37, U+AC39..AC53, \& U+AC55..AC6F, U+AC71..AC8B, U+AC8D..ACA7 \& ...) \& \ep{Line_Break: Hebrew_Letter} (Short: \ep{Lb=HL}) (75: \& U+05D0..05EA, U+05EF..05F2, U+FB1D, \& U+FB1F..FB28, U+FB2A..FB36, U+FB38..FB3C \& ...) \& \ep{Line_Break: HL} \ep{Line_Break=Hebrew_Letter} (75) \& \ep{Line_Break: HY} \ep{Line_Break=Hyphen} (1) \& \ep{Line_Break: Hyphen} (Short: \ep{Lb=HY}) (1: [\e\-]) \& \ep{Line_Break: ID} \ep{Line_Break=Ideographic} (172_456) \& \ep{Line_Break: Ideographic} (Short: \ep{Lb=ID}) (172_456: \& U+231A..231B, U+23F0..23F3, \& U+2600..2603, U+2614..2615, U+2618, \& U+261A..261C ...) \& \ep{Line_Break: IN} \ep{Line_Break=Inseparable} (6) \& \ep{Line_Break: Infix_Numeric} (Short: \ep{Lb=IS}) (13: [,.:;], \& U+037E, U+0589, U+060C..060D, U+07F8, \& U+2044 ...) \& \ep{Line_Break: Inseparable} (Short: \ep{Lb=IN}) (6: U+2024..2026, \& U+22EF, U+FE19, U+10AF6) \& \ep{Line_Break: Inseperable} \ep{Line_Break=Inseparable} (6) \& \ep{Line_Break: IS} \ep{Line_Break=Infix_Numeric} (13) \& \ep{Line_Break: JL} (Short: \ep{Lb=JL}) (125: U+1100..115F, \& U+A960..A97C) \& \ep{Line_Break: JT} (Short: \ep{Lb=JT}) (137: U+11A8..11FF, \& U+D7CB..D7FB) \& \ep{Line_Break: JV} (Short: \ep{Lb=JV}) (95: U+1160..11A7, \& U+D7B0..D7C6) \& \ep{Line_Break: LF} \ep{Line_Break=Line_Feed} (1) \& \ep{Line_Break: Line_Feed} (Short: \ep{Lb=LF}) (1: [\en]) \& \ep{Line_Break: Mandatory_Break} (Short: \ep{Lb=BK}) (4: [\ecK\ef], \& U+2028..2029) \& \ep{Line_Break: Next_Line} (Short: \ep{Lb=NL}) (1: [\ex85]) \& \ep{Line_Break: NL} \ep{Line_Break=Next_Line} (1) \& \ep{Line_Break: Nonstarter} (Short: \ep{Lb=NS}) (33: U+17D6, \& U+203C..203D, U+2047..2049, U+3005, \& U+301C, U+303B..303C ...) \& \ep{Line_Break: NS} \ep{Line_Break=Nonstarter} (33) \& \ep{Line_Break: NU} \ep{Line_Break=Numeric} (652) \& \ep{Line_Break: Numeric} (Short: \ep{Lb=NU}) (652: [0\-9], \& U+0660..0669, U+066B..066C, \& U+06F0..06F9, U+07C0..07C9, U+0966..096F \& ...) \& \ep{Line_Break: OP} \ep{Line_Break=Open_Punctuation} (92) \& \ep{Line_Break: Open_Punctuation} (Short: \ep{Lb=OP}) (92: [\e(\e[\e{ \& \exa1\exbf], U+0F3A, U+0F3C, U+169B, \& U+201A, U+201E ...) \& \ep{Line_Break: PO} \ep{Line_Break=Postfix_Numeric} (37) \& \ep{Line_Break: Postfix_Numeric} (Short: \ep{Lb=PO}) (37: [\e%\exa2 \& \exb0], U+0609..060B, U+066A, \& U+09F2..09F3, U+09F9, U+0D79 ...) \& \ep{Line_Break: PR} \ep{Line_Break=Prefix_Numeric} (67) \& \ep{Line_Break: Prefix_Numeric} (Short: \ep{Lb=PR}) (67: [\e$+\e\e\exa3\- \& \exa5\exb1], U+058F, U+07FE..07FF, U+09FB, \& U+0AF1, U+0BF9 ...) \& \ep{Line_Break: QU} \ep{Line_Break=Quotation} (39) \& \ep{Line_Break: Quotation} (Short: \ep{Lb=QU}) (39: [\e"\e\*(Aq\exab\exbb], \& U+2018..2019, U+201B..201D, U+201F, \& U+2039..203A, U+275B..2760 ...) \& \ep{Line_Break: Regional_Indicator} (Short: \ep{Lb=RI}) (26: \& U+1F1E6..1F1FF) \& \ep{Line_Break: RI} \ep{Line_Break=Regional_Indicator} (26) \& \ep{Line_Break: SA} \ep{Line_Break=Complex_Context} (757) \& D \ep{Line_Break: SG} \ep{Line_Break=Surrogate} (2048) \& \ep{Line_Break: SP} \ep{Line_Break=Space} (1) \& \ep{Line_Break: Space} (Short: \ep{Lb=SP}) (1: [\ex20]) \& D \ep{Line_Break: Surrogate} Surrogates should never appear in well\- \& formed text, and therefore shouldn\*(Aqt be \& the basis for line breaking (Short: \& \ep{Lb=SG}) (2048: U+D800..DFFF) \& \ep{Line_Break: SY} \ep{Line_Break=Break_Symbols} (1) \& \ep{Line_Break: Unknown} (Short: \ep{Lb=XX}) (900_465 plus all \& above\-Unicode code points: U+0378..0379, \& U+0380..0383, U+038B, U+038D, U+03A2, \& U+0530 ...) \& \ep{Line_Break: WJ} \ep{Line_Break=Word_Joiner} (2) \& \ep{Line_Break: Word_Joiner} (Short: \ep{Lb=WJ}) (2: U+2060, U+FEFF) \& \ep{Line_Break: XX} \ep{Line_Break=Unknown} (900_465 plus all \& above\-Unicode code points) \& \ep{Line_Break: ZW} \ep{Line_Break=ZWSpace} (1) \& \ep{Line_Break: ZWJ} (Short: \ep{Lb=ZWJ}) (1: U+200D) \& \ep{Line_Break: ZWSpace} (Short: \ep{Lb=ZW}) (1: U+200B) \& \ep{Line_Separator} \ep{General_Category=Line_Separator} \& (Short: \ep{Zl}) (1) \& \ep{Linear_A} \ep{Script_Extensions=Linear_A} (Short: \& \ep{Lina}; NOT \ep{Block=Linear_A}) (386) \& \ep{Linear_B} \ep{Script_Extensions=Linear_B} (Short: \& \ep{Linb}) (268) \& X \ep{Linear_B_Ideograms} \ep{Block=Linear_B_Ideograms} (128) \& X \ep{Linear_B_Syllabary} \ep{Block=Linear_B_Syllabary} (128) \& \ep{Lisu} \ep{Script_Extensions=Lisu} (NOT \ep{Block= \& Lisu}) (49) \& X \ep{Lisu_Sup} \ep{Lisu_Supplement} (= \ep{Block= \& Lisu_Supplement}) (16) \& X \ep{Lisu_Supplement} \ep{Block=Lisu_Supplement} (Short: \& \ep{InLisuSup}) (16) \& \ep{Ll} \ep{Lowercase_Letter} (= \& \ep{General_Category=Lowercase_Letter}) \& (/i= General_Category=Cased_Letter) \& (2227) \& \ep{Lm} \ep{Modifier_Letter} (= \& \ep{General_Category=Modifier_Letter}) \& (334) \& \ep{Lo} \ep{Other_Letter} (= \ep{General_Category= \& Other_Letter}) (127_333) \& \ep{LOE} \ep{Logical_Order_Exception} (= \& \ep{Logical_Order_Exception=Y}) (19) \& \ep{LOE: *} \ep{Logical_Order_Exception: *} \& \ep{Logical_Order_Exception} \ep{Logical_Order_Exception=Y} (Short: \& \ep{LOE}) (19) \& \ep{Logical_Order_Exception: N*} (Short: \ep{LOE=N}, \eP{LOE}) \& (1_114_093 plus all above\-Unicode code \& points: U+0000..0E3F, U+0E45..0EBF, \& U+0EC5..19B4, U+19B8..19B9, \& U+19BB..AAB4, U+AAB7..AAB8 ...) \& \ep{Logical_Order_Exception: Y*} (Short: \ep{LOE=Y}, \ep{LOE}) (19: \& U+0E40..0E44, U+0EC0..0EC4, \& U+19B5..19B7, U+19BA, U+AAB5..AAB6, \& U+AAB9 ...) \& X \ep{Low_Surrogates} \ep{Block=Low_Surrogates} (1024) \& \ep{Lower} \ep{XPosixLower} (= \ep{Lowercase=Y}) (/i= \& Cased=Yes) (2471) \& \ep{Lower: *} \ep{Lowercase: *} \& \ep{Lowercase} \ep{XPosixLower} (= \ep{Lowercase=Y}) (/i= \& Cased=Yes) (2471) \& \ep{Lowercase: N*} (Short: \ep{Lower=N}, \eP{Lower}; /i= Cased= \& No) (1_111_641 plus all above\-Unicode \& code points: [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq \& \e(\e)*+,\e\-.\e/0\-9:;<=>?\e@A\-Z\e[\e\e\e]\e^_\`\e{ \& \e|\e}~\ex7f\-\exa9\exab\-\exb4\exb6\-\exb9\exbb\- \& \exde\exf7], U+0100, U+0102, U+0104, \& U+0106, U+0108 ...) \& \ep{Lowercase: Y*} (Short: \ep{Lower=Y}, \ep{Lower}; /i= Cased= \& Yes) (2471: [a\-z\exaa\exb5\exba\exdf\-\exf6 \& \exf8\-\exff], U+0101, U+0103, U+0105, \& U+0107, U+0109 ...) \& \ep{Lowercase_Letter} \ep{General_Category=Lowercase_Letter} \& (Short: \ep{Ll}; /i= General_Category= \& Cased_Letter) (2227) \& \ep{Lt} \ep{Titlecase_Letter} (= \& \ep{General_Category=Titlecase_Letter}) \& (/i= General_Category=Cased_Letter) (31) \& \ep{Lu} \ep{Uppercase_Letter} (= \& \ep{General_Category=Uppercase_Letter}) \& (/i= General_Category=Cased_Letter) \& (1831) \& \ep{Lyci} \ep{Lycian} (= \ep{Script_Extensions= \& Lycian}) (NOT \ep{Block=Lycian}) (29) \& \ep{Lycian} \ep{Script_Extensions=Lycian} (Short: \& \ep{Lyci}; NOT \ep{Block=Lycian}) (29) \& \ep{Lydi} \ep{Lydian} (= \ep{Script_Extensions= \& Lydian}) (NOT \ep{Block=Lydian}) (27) \& \ep{Lydian} \ep{Script_Extensions=Lydian} (Short: \& \ep{Lydi}; NOT \ep{Block=Lydian}) (27) \& \ep{M} \epM \ep{Mark} (= \ep{General_Category=Mark}) \& (2408) \& \ep{Mahajani} \ep{Script_Extensions=Mahajani} (Short: \& \ep{Mahj}; NOT \ep{Block=Mahajani}) (61) \& \ep{Mahj} \ep{Mahajani} (= \ep{Script_Extensions= \& Mahajani}) (NOT \ep{Block=Mahajani}) (61) \& X \ep{Mahjong} \ep{Mahjong_Tiles} (= \ep{Block= \& Mahjong_Tiles}) (48) \& X \ep{Mahjong_Tiles} \ep{Block=Mahjong_Tiles} (Short: \& \ep{InMahjong}) (48) \& \ep{Maka} \ep{Makasar} (= \ep{Script_Extensions= \& Makasar}) (NOT \ep{Block=Makasar}) (25) \& \ep{Makasar} \ep{Script_Extensions=Makasar} (Short: \& \ep{Maka}; NOT \ep{Block=Makasar}) (25) \& \ep{Malayalam} \ep{Script_Extensions=Malayalam} (Short: \& \ep{Mlym}; NOT \ep{Block=Malayalam}) (126) \& \ep{Mand} \ep{Mandaic} (= \ep{Script_Extensions= \& Mandaic}) (NOT \ep{Block=Mandaic}) (30) \& \ep{Mandaic} \ep{Script_Extensions=Mandaic} (Short: \& \ep{Mand}; NOT \ep{Block=Mandaic}) (30) \& \ep{Mani} \ep{Manichaean} (= \ep{Script_Extensions= \& Manichaean}) (NOT \ep{Block=Manichaean}) \& (52) \& \ep{Manichaean} \ep{Script_Extensions=Manichaean} (Short: \& \ep{Mani}; NOT \ep{Block=Manichaean}) (52) \& \ep{Marc} \ep{Marchen} (= \ep{Script_Extensions= \& Marchen}) (NOT \ep{Block=Marchen}) (68) \& \ep{Marchen} \ep{Script_Extensions=Marchen} (Short: \& \ep{Marc}; NOT \ep{Block=Marchen}) (68) \& \ep{Mark} \ep{General_Category=Mark} (Short: \ep{M}) \& (2408) \& \ep{Masaram_Gondi} \ep{Script_Extensions=Masaram_Gondi} \& (Short: \ep{Gonm}; NOT \ep{Block= \& Masaram_Gondi}) (77) \& \ep{Math} \ep{Math=Y} (2310) \& \ep{Math: N*} (Single: \eP{Math}) (1_111_802 plus all \& above\-Unicode code points: [\ex00\-\ex20! \& \e"#\e$\e%&\e\*(Aq\e(\e)*,\e\-.\e/0\-9:;?\e@A\-Z \& \e[\e\e\e]_\`a\-z\e{\e}\ex7f\-\exab\exad\-\exb0\exb2\- \& \exd6\exd8\-\exf6\exf8\-\exff], U+0100..03CF, \& U+03D3..03D4, U+03D6..03EF, \& U+03F2..03F3, U+03F7..0605 ...) \& \ep{Math: Y*} (Single: \ep{Math}) (2310: [+<=>\e^\e|~\exac \& \exb1\exd7\exf7], U+03D0..03D2, U+03D5, \& U+03F0..03F1, U+03F4..03F6, U+0606..0608 \& ...) \& X \ep{Math_Alphanum} \ep{Mathematical_Alphanumeric_Symbols} (= \& \ep{Block= \& Mathematical_Alphanumeric_Symbols}) \& (1024) \& X \ep{Math_Operators} \ep{Mathematical_Operators} (= \ep{Block= \& Mathematical_Operators}) (256) \& \ep{Math_Symbol} \ep{General_Category=Math_Symbol} (Short: \& \ep{Sm}) (948) \& X \ep{Mathematical_Alphanumeric_Symbols} \ep{Block= \& Mathematical_Alphanumeric_Symbols} \& (Short: \ep{InMathAlphanum}) (1024) \& X \ep{Mathematical_Operators} \ep{Block=Mathematical_Operators} \& (Short: \ep{InMathOperators}) (256) \& X \ep{Mayan_Numerals} \ep{Block=Mayan_Numerals} (32) \& \ep{Mc} \ep{Spacing_Mark} (= \ep{General_Category= \& Spacing_Mark}) (445) \& \ep{Me} \ep{Enclosing_Mark} (= \ep{General_Category= \& Enclosing_Mark}) (13) \& \ep{Medefaidrin} \ep{Script_Extensions=Medefaidrin} (Short: \& \ep{Medf}; NOT \ep{Block=Medefaidrin}) (91) \& \ep{Medf} \ep{Medefaidrin} (= \ep{Script_Extensions= \& Medefaidrin}) (NOT \ep{Block= \& Medefaidrin}) (91) \& \ep{Meetei_Mayek} \ep{Script_Extensions=Meetei_Mayek} (Short: \& \ep{Mtei}; NOT \ep{Block=Meetei_Mayek}) \& (79) \& X \ep{Meetei_Mayek_Ext} \ep{Meetei_Mayek_Extensions} (= \ep{Block= \& Meetei_Mayek_Extensions}) (32) \& X \ep{Meetei_Mayek_Extensions} \ep{Block=Meetei_Mayek_Extensions} \& (Short: \ep{InMeeteiMayekExt}) (32) \& \ep{Mend} \ep{Mende_Kikakui} (= \ep{Script_Extensions= \& Mende_Kikakui}) (NOT \ep{Block= \& Mende_Kikakui}) (213) \& \ep{Mende_Kikakui} \ep{Script_Extensions=Mende_Kikakui} \& (Short: \ep{Mend}; NOT \ep{Block= \& Mende_Kikakui}) (213) \& \ep{Merc} \ep{Meroitic_Cursive} (= \& \ep{Script_Extensions=Meroitic_Cursive}) \& (NOT \ep{Block=Meroitic_Cursive}) (90) \& \ep{Mero} \ep{Meroitic_Hieroglyphs} (= \& \ep{Script_Extensions= \& Meroitic_Hieroglyphs}) (32) \& \ep{Meroitic_Cursive} \ep{Script_Extensions=Meroitic_Cursive} \& (Short: \ep{Merc}; NOT \ep{Block= \& Meroitic_Cursive}) (90) \& \ep{Meroitic_Hieroglyphs} \ep{Script_Extensions= \& Meroitic_Hieroglyphs} (Short: \ep{Mero}) \& (32) \& \ep{Miao} \ep{Script_Extensions=Miao} (NOT \ep{Block= \& Miao}) (149) \& X \ep{Misc_Arrows} \ep{Miscellaneous_Symbols_And_Arrows} (= \& \ep{Block= \& Miscellaneous_Symbols_And_Arrows}) (256) \& X \ep{Misc_Math_Symbols_A} \ep{Miscellaneous_Mathematical_Symbols_A} \& (= \ep{Block= \& Miscellaneous_Mathematical_Symbols_A}) \& (48) \& X \ep{Misc_Math_Symbols_B} \ep{Miscellaneous_Mathematical_Symbols_B} \& (= \ep{Block= \& Miscellaneous_Mathematical_Symbols_B}) \& (128) \& X \ep{Misc_Pictographs} \ep{Miscellaneous_Symbols_And_Pictographs} \& (= \ep{Block= \& Miscellaneous_Symbols_And_Pictographs}) \& (768) \& X \ep{Misc_Symbols} \ep{Miscellaneous_Symbols} (= \ep{Block= \& Miscellaneous_Symbols}) (256) \& X \ep{Misc_Technical} \ep{Miscellaneous_Technical} (= \ep{Block= \& Miscellaneous_Technical}) (256) \& X \ep{Miscellaneous_Mathematical_Symbols_A} \ep{Block= \& Miscellaneous_Mathematical_Symbols_A} \& (Short: \ep{InMiscMathSymbolsA}) (48) \& X \ep{Miscellaneous_Mathematical_Symbols_B} \ep{Block= \& Miscellaneous_Mathematical_Symbols_B} \& (Short: \ep{InMiscMathSymbolsB}) (128) \& X \ep{Miscellaneous_Symbols} \ep{Block=Miscellaneous_Symbols} (Short: \& \ep{InMiscSymbols}) (256) \& X \ep{Miscellaneous_Symbols_And_Arrows} \ep{Block= \& Miscellaneous_Symbols_And_Arrows} \& (Short: \ep{InMiscArrows}) (256) \& X \ep{Miscellaneous_Symbols_And_Pictographs} \ep{Block= \& Miscellaneous_Symbols_And_Pictographs} \& (Short: \ep{InMiscPictographs}) (768) \& X \ep{Miscellaneous_Technical} \ep{Block=Miscellaneous_Technical} \& (Short: \ep{InMiscTechnical}) (256) \& \ep{Mlym} \ep{Malayalam} (= \ep{Script_Extensions= \& Malayalam}) (NOT \ep{Block=Malayalam}) \& (126) \& \ep{Mn} \ep{Nonspacing_Mark} (= \& \ep{General_Category=Nonspacing_Mark}) \& (1950) \& \ep{Modi} \ep{Script_Extensions=Modi} (NOT \ep{Block= \& Modi}) (89) \& \ep{Modifier_Letter} \ep{General_Category=Modifier_Letter} \& (Short: \ep{Lm}) (334) \& X \ep{Modifier_Letters} \ep{Spacing_Modifier_Letters} (= \ep{Block= \& Spacing_Modifier_Letters}) (80) \& \ep{Modifier_Symbol} \ep{General_Category=Modifier_Symbol} \& (Short: \ep{Sk}) (125) \& X \ep{Modifier_Tone_Letters} \ep{Block=Modifier_Tone_Letters} (32) \& \ep{Mong} \ep{Mongolian} (= \ep{Script_Extensions= \& Mongolian}) (NOT \ep{Block=Mongolian}) \& (172) \& \ep{Mongolian} \ep{Script_Extensions=Mongolian} (Short: \& \ep{Mong}; NOT \ep{Block=Mongolian}) (172) \& X \ep{Mongolian_Sup} \ep{Mongolian_Supplement} (= \ep{Block= \& Mongolian_Supplement}) (32) \& X \ep{Mongolian_Supplement} \ep{Block=Mongolian_Supplement} (Short: \& \ep{InMongolianSup}) (32) \& \ep{Mro} \ep{Script_Extensions=Mro} (NOT \ep{Block= \& Mro}) (43) \& \ep{Mroo} \ep{Mro} (= \ep{Script_Extensions=Mro}) (NOT \& \ep{Block=Mro}) (43) \& \ep{Mtei} \ep{Meetei_Mayek} (= \ep{Script_Extensions= \& Meetei_Mayek}) (NOT \ep{Block= \& Meetei_Mayek}) (79) \& \ep{Mult} \ep{Multani} (= \ep{Script_Extensions= \& Multani}) (NOT \ep{Block=Multani}) (48) \& \ep{Multani} \ep{Script_Extensions=Multani} (Short: \& \ep{Mult}; NOT \ep{Block=Multani}) (48) \& X \ep{Music} \ep{Musical_Symbols} (= \ep{Block= \& Musical_Symbols}) (256) \& X \ep{Musical_Symbols} \ep{Block=Musical_Symbols} (Short: \& \ep{InMusic}) (256) \& \ep{Myanmar} \ep{Script_Extensions=Myanmar} (Short: \& \ep{Mymr}; NOT \ep{Block=Myanmar}) (224) \& X \ep{Myanmar_Ext_A} \ep{Myanmar_Extended_A} (= \ep{Block= \& Myanmar_Extended_A}) (32) \& X \ep{Myanmar_Ext_B} \ep{Myanmar_Extended_B} (= \ep{Block= \& Myanmar_Extended_B}) (32) \& X \ep{Myanmar_Extended_A} \ep{Block=Myanmar_Extended_A} (Short: \& \ep{InMyanmarExtA}) (32) \& X \ep{Myanmar_Extended_B} \ep{Block=Myanmar_Extended_B} (Short: \& \ep{InMyanmarExtB}) (32) \& \ep{Mymr} \ep{Myanmar} (= \ep{Script_Extensions= \& Myanmar}) (NOT \ep{Block=Myanmar}) (224) \& \ep{N} \epN \ep{Number} (= \ep{General_Category=Number}) \& (1791) \& \ep{Na=*} \ep{Name=*} \& \ep{Nabataean} \ep{Script_Extensions=Nabataean} (Short: \& \ep{Nbat}; NOT \ep{Block=Nabataean}) (40) \& \ep{Name=*} Combination of Name and Name_Alias \& properties; has special loose matching \& rules, for which see Unicode UAX #44 \& \ep{Nand} \ep{Nandinagari} (= \ep{Script_Extensions= \& Nandinagari}) (NOT \ep{Block= \& Nandinagari}) (86) \& \ep{Nandinagari} \ep{Script_Extensions=Nandinagari} (Short: \& \ep{Nand}; NOT \ep{Block=Nandinagari}) (86) \& \ep{Narb} \ep{Old_North_Arabian} (= \& \ep{Script_Extensions=Old_North_Arabian}) \& (32) \& X \ep{NB} \ep{No_Block} (= \ep{Block=No_Block}) \& (825_600 plus all above\-Unicode code \& points) \& \ep{Nbat} \ep{Nabataean} (= \ep{Script_Extensions= \& Nabataean}) (NOT \ep{Block=Nabataean}) \& (40) \& \ep{NChar} \ep{Noncharacter_Code_Point} (= \& \ep{Noncharacter_Code_Point=Y}) (66) \& \ep{NChar: *} \ep{Noncharacter_Code_Point: *} \& \ep{Nd} \ep{XPosixDigit} (= \ep{General_Category= \& Decimal_Number}) (660) \& \ep{New_Tai_Lue} \ep{Script_Extensions=New_Tai_Lue} (Short: \& \ep{Talu}; NOT \ep{Block=New_Tai_Lue}) (83) \& \ep{Newa} \ep{Script_Extensions=Newa} (NOT \ep{Block= \& Newa}) (97) \& \ep{NFC_QC: *} \ep{NFC_Quick_Check: *} \& \ep{NFC_Quick_Check: M} \ep{NFC_Quick_Check=Maybe} (111) \& \ep{NFC_Quick_Check: Maybe} (Short: \ep{NFCQC=M}) (111: \& U+0300..0304, U+0306..030C, U+030F, \& U+0311, U+0313..0314, U+031B ...) \& \ep{NFC_Quick_Check: N} \ep{NFC_Quick_Check=No} (NOT \& \eP{NFC_Quick_Check} NOR \eP{NFC_QC}) \& (1120) \& \ep{NFC_Quick_Check: No} (Short: \ep{NFCQC=N}; NOT \& \eP{NFC_Quick_Check} NOR \eP{NFC_QC}) \& (1120: U+0340..0341, U+0343..0344, \& U+0374, U+037E, U+0387, U+0958..095F ...) \& \ep{NFC_Quick_Check: Y} \ep{NFC_Quick_Check=Yes} (NOT \& \ep{NFC_Quick_Check} NOR \ep{NFC_QC}) \& (1_112_881 plus all above\-Unicode code \& points) \& \ep{NFC_Quick_Check: Yes} (Short: \ep{NFCQC=Y}; NOT \& \ep{NFC_Quick_Check} NOR \ep{NFC_QC}) \& (1_112_881 plus all above\-Unicode code \& points: U+0000..02FF, U+0305, \& U+030D..030E, U+0310, U+0312, \& U+0315..031A ...) \& \ep{NFD_QC: *} \ep{NFD_Quick_Check: *} \& \ep{NFD_Quick_Check: N} \ep{NFD_Quick_Check=No} (NOT \& \eP{NFD_Quick_Check} NOR \eP{NFD_QC}) \& (13_233) \& \ep{NFD_Quick_Check: No} (Short: \ep{NFDQC=N}; NOT \& \eP{NFD_Quick_Check} NOR \eP{NFD_QC}) \& (13_233: [\exc0\-\exc5\exc7\-\excf\exd1\-\exd6 \& \exd9\-\exdd\exe0\-\exe5\exe7\-\exef\exf1\-\exf6 \& \exf9\-\exfd\exff], U+0100..010F, \& U+0112..0125, U+0128..0130, \& U+0134..0137, U+0139..013E ...) \& \ep{NFD_Quick_Check: Y} \ep{NFD_Quick_Check=Yes} (NOT \& \ep{NFD_Quick_Check} NOR \ep{NFD_QC}) \& (1_100_879 plus all above\-Unicode code \& points) \& \ep{NFD_Quick_Check: Yes} (Short: \ep{NFDQC=Y}; NOT \& \ep{NFD_Quick_Check} NOR \ep{NFD_QC}) \& (1_100_879 plus all above\-Unicode code \& points: [\ex00\-\exbf\exc6\exd0\exd7\-\exd8\exde\- \& \exdf\exe6\exf0\exf7\-\exf8\exfe], \& U+0110..0111, U+0126..0127, \& U+0131..0133, U+0138, U+013F..0142 ...) \& \ep{NFKC_QC: *} \ep{NFKC_Quick_Check: *} \& \ep{NFKC_Quick_Check: M} \ep{NFKC_Quick_Check=Maybe} (111) \& \ep{NFKC_Quick_Check: Maybe} (Short: \ep{NFKCQC=M}) (111: \& U+0300..0304, U+0306..030C, U+030F, \& U+0311, U+0313..0314, U+031B ...) \& \ep{NFKC_Quick_Check: N} \ep{NFKC_Quick_Check=No} (NOT \& \eP{NFKC_Quick_Check} NOR \eP{NFKC_QC}) \& (4866) \& \ep{NFKC_Quick_Check: No} (Short: \ep{NFKCQC=N}; NOT \& \eP{NFKC_Quick_Check} NOR \eP{NFKC_QC}) \& (4866: [\exa0\exa8\exaa\exaf\exb2\-\exb5\exb8\- \& \exba\exbc\-\exbe], U+0132..0133, \& U+013F..0140, U+0149, U+017F, \& U+01C4..01CC ...) \& \ep{NFKC_Quick_Check: Y} \ep{NFKC_Quick_Check=Yes} (NOT \& \ep{NFKC_Quick_Check} NOR \ep{NFKC_QC}) \& (1_109_135 plus all above\-Unicode code \& points) \& \ep{NFKC_Quick_Check: Yes} (Short: \ep{NFKCQC=Y}; NOT \& \ep{NFKC_Quick_Check} NOR \ep{NFKC_QC}) \& (1_109_135 plus all above\-Unicode code \& points: [\ex00\-\ex9f\exa1\-\exa7\exa9\exab\- \& \exae\exb0\-\exb1\exb6\-\exb7\exbb\exbf\-\exff], \& U+0100..0131, U+0134..013E, \& U+0141..0148, U+014A..017E, U+0180..01C3 \& ...) \& \ep{NFKD_QC: *} \ep{NFKD_Quick_Check: *} \& \ep{NFKD_Quick_Check: N} \ep{NFKD_Quick_Check=No} (NOT \& \eP{NFKD_Quick_Check} NOR \eP{NFKD_QC}) \& (16_967) \& \ep{NFKD_Quick_Check: No} (Short: \ep{NFKDQC=N}; NOT \& \eP{NFKD_Quick_Check} NOR \eP{NFKD_QC}) \& (16_967: [\exa0\exa8\exaa\exaf\exb2\-\exb5\exb8\- \& \exba\exbc\-\exbe\exc0\-\exc5\exc7\-\excf\exd1\- \& \exd6\exd9\-\exdd\exe0\-\exe5\exe7\-\exef\exf1\- \& \exf6\exf9\-\exfd\exff], U+0100..010F, \& U+0112..0125, U+0128..0130, \& U+0132..0137, U+0139..0140 ...) \& \ep{NFKD_Quick_Check: Y} \ep{NFKD_Quick_Check=Yes} (NOT \& \ep{NFKD_Quick_Check} NOR \ep{NFKD_QC}) \& (1_097_145 plus all above\-Unicode code \& points) \& \ep{NFKD_Quick_Check: Yes} (Short: \ep{NFKDQC=Y}; NOT \& \ep{NFKD_Quick_Check} NOR \ep{NFKD_QC}) \& (1_097_145 plus all above\-Unicode code \& points: [\ex00\-\ex9f\exa1\-\exa7\exa9\exab\- \& \exae\exb0\-\exb1\exb6\-\exb7\exbb\exbf\exc6\exd0 \& \exd7\-\exd8\exde\-\exdf\exe6\exf0\exf7\-\exf8 \& \exfe], U+0110..0111, U+0126..0127, \& U+0131, U+0138, U+0141..0142 ...) \& \ep{Nko} \ep{Script_Extensions=Nko} (NOT \ep{Block= \& NKo}) (67) \& \ep{Nkoo} \ep{Nko} (= \ep{Script_Extensions=Nko}) (NOT \& \ep{Block=NKo}) (67) \& \ep{Nl} \ep{Letter_Number} (= \ep{General_Category= \& Letter_Number}) (236) \& \ep{No} \ep{Other_Number} (= \ep{General_Category= \& Other_Number}) (895) \& X \ep{No_Block} \ep{Block=No_Block} (Short: \ep{InNB}) \& (825_600 plus all above\-Unicode code \& points) \& \ep{Noncharacter_Code_Point} \ep{Noncharacter_Code_Point=Y} (Short: \& \ep{NChar}) (66) \& \ep{Noncharacter_Code_Point: N*} (Short: \ep{NChar=N}, \eP{NChar}) \& (1_114_046 plus all above\-Unicode code \& points: U+0000..FDCF, U+FDF0..FFFD, \& U+10000..1FFFD, U+20000..2FFFD, \& U+30000..3FFFD, U+40000..4FFFD ...) \& \ep{Noncharacter_Code_Point: Y*} (Short: \ep{NChar=Y}, \ep{NChar}) \& (66: U+FDD0..FDEF, U+FFFE..FFFF, \& U+1FFFE..1FFFF, U+2FFFE..2FFFF, \& U+3FFFE..3FFFF, U+4FFFE..4FFFF ...) \& \ep{Nonspacing_Mark} \ep{General_Category=Nonspacing_Mark} \& (Short: \ep{Mn}) (1950) \& \ep{Nshu} \ep{Nushu} (= \ep{Script_Extensions=Nushu}) \& (NOT \ep{Block=Nushu}) (397) \& \ep{Nt: *} \ep{Numeric_Type: *} \& \ep{Number} \ep{General_Category=Number} (Short: \ep{N}) \& (1791) \& X \ep{Number_Forms} \ep{Block=Number_Forms} (64) \& \ep{Numeric_Type: De} \ep{Numeric_Type=Decimal} (660) \& \ep{Numeric_Type: Decimal} (Short: \ep{Nt=De}) (660: [0\-9], \& U+0660..0669, U+06F0..06F9, \& U+07C0..07C9, U+0966..096F, U+09E6..09EF \& ...) \& \ep{Numeric_Type: Di} \ep{Numeric_Type=Digit} (128) \& \ep{Numeric_Type: Digit} (Short: \ep{Nt=Di}) (128: [\exb2\-\exb3\exb9], \& U+1369..1371, U+19DA, U+2070, \& U+2074..2079, U+2080..2089 ...) \& \ep{Numeric_Type: None} (Short: \ep{Nt=None}) (1_112_240 plus all \& above\-Unicode code points: [\ex00\-\ex20! \& \e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/:;<=>?\e@A\-Z\e[\e\e\e] \& \e^_\`a\-z\e{\e|\e}~\ex7f\-\exb1\exb4\-\exb8\exba\- \& \exbb\exbf\-\exff], U+0100..065F, \& U+066A..06EF, U+06FA..07BF, \& U+07CA..0965, U+0970..09E5 ...) \& \ep{Numeric_Type: Nu} \ep{Numeric_Type=Numeric} (1084) \& \ep{Numeric_Type: Numeric} (Short: \ep{Nt=Nu}) (1084: [\exbc\-\exbe], \& U+09F4..09F9, U+0B72..0B77, \& U+0BF0..0BF2, U+0C78..0C7E, U+0D58..0D5E \& ...) \& T \ep{Numeric_Value: \-1/2} (Short: \ep{Nv=\-1/2}) (1: U+0F33) \& T \ep{Numeric_Value: 0} (Short: \ep{Nv=0}) (84: [0], U+0660, \& U+06F0, U+07C0, U+0966, U+09E6 ...) \& T \ep{Numeric_Value: 1/320} (Short: \ep{Nv=1/320}) (2: U+11FC0, \& U+11FD4) \& T \ep{Numeric_Value: 1/160} (Short: \ep{Nv=1/160}) (2: U+0D58, U+11FC1) \& T \ep{Numeric_Value: 1/80} (Short: \ep{Nv=1/80}) (1: U+11FC2) \& T \ep{Numeric_Value: 1/64} (Short: \ep{Nv=1/64}) (1: U+11FC3) \& T \ep{Numeric_Value: 1/40} (Short: \ep{Nv=1/40}) (2: U+0D59, U+11FC4) \& T \ep{Numeric_Value: 1/32} (Short: \ep{Nv=1/32}) (1: U+11FC5) \& T \ep{Numeric_Value: 3/80} (Short: \ep{Nv=3/80}) (2: U+0D5A, U+11FC6) \& T \ep{Numeric_Value: 3/64} (Short: \ep{Nv=3/64}) (1: U+11FC7) \& T \ep{Numeric_Value: 1/20} (Short: \ep{Nv=1/20}) (2: U+0D5B, U+11FC8) \& T \ep{Numeric_Value: 1/16} (Short: \ep{Nv=1/16}) (6: U+09F4, U+0B75, \& U+0D76, U+A833, U+11FC9..11FCA) \& T \ep{Numeric_Value: 1/12} (Short: \ep{Nv=1/12}) (1: U+109F6) \& T \ep{Numeric_Value: 1/10} (Short: \ep{Nv=1/10}) (3: U+0D5C, U+2152, \& U+11FCB) \& T \ep{Numeric_Value: 1/9} (Short: \ep{Nv=1/9}) (1: U+2151) \& T \ep{Numeric_Value: 1/8} (Short: \ep{Nv=1/8}) (7: U+09F5, U+0B76, \& U+0D77, U+215B, U+A834, U+11FCC ...) \& T \ep{Numeric_Value: 1/7} (Short: \ep{Nv=1/7}) (1: U+2150) \& T \ep{Numeric_Value: 3/20} (Short: \ep{Nv=3/20}) (2: U+0D5D, U+11FCD) \& T \ep{Numeric_Value: 1/6} (Short: \ep{Nv=1/6}) (4: U+2159, U+109F7, \& U+12461, U+1ED3D) \& T \ep{Numeric_Value: 3/16} (Short: \ep{Nv=3/16}) (5: U+09F6, U+0B77, \& U+0D78, U+A835, U+11FCE) \& T \ep{Numeric_Value: 1/5} (Short: \ep{Nv=1/5}) (3: U+0D5E, U+2155, \& U+11FCF) \& T \ep{Numeric_Value: 1/4} (Short: \ep{Nv=1/4}) (14: [\exbc], U+09F7, \& U+0B72, U+0D73, U+A830, U+10140 ...) \& T \ep{Numeric_Value: 1/3} (Short: \ep{Nv=1/3}) (6: U+2153, U+109F9, \& U+10E7D, U+1245A, U+1245D, U+12465) \& T \ep{Numeric_Value: 3/8} (Short: \ep{Nv=3/8}) (1: U+215C) \& T \ep{Numeric_Value: 2/5} (Short: \ep{Nv=2/5}) (1: U+2156) \& T \ep{Numeric_Value: 5/12} (Short: \ep{Nv=5/12}) (1: U+109FA) \& T \ep{Numeric_Value: 1/2} (Short: \ep{Nv=1/2}) (19: [\exbd], U+0B73, \& U+0D74, U+0F2A, U+2CFD, U+A831 ...) \& T \ep{Numeric_Value: 7/12} (Short: \ep{Nv=7/12}) (1: U+109FC) \& T \ep{Numeric_Value: 3/5} (Short: \ep{Nv=3/5}) (1: U+2157) \& T \ep{Numeric_Value: 5/8} (Short: \ep{Nv=5/8}) (1: U+215D) \& T \ep{Numeric_Value: 2/3} (Short: \ep{Nv=2/3}) (7: U+2154, U+10177, \& U+109FD, U+10E7E, U+1245B, U+1245E ...) \& T \ep{Numeric_Value: 3/4} (Short: \ep{Nv=3/4}) (9: [\exbe], U+09F8, \& U+0B74, U+0D75, U+A832, U+10178 ...) \& T \ep{Numeric_Value: 4/5} (Short: \ep{Nv=4/5}) (1: U+2158) \& T \ep{Numeric_Value: 5/6} (Short: \ep{Nv=5/6}) (3: U+215A, U+109FF, \& U+1245C) \& T \ep{Numeric_Value: 7/8} (Short: \ep{Nv=7/8}) (1: U+215E) \& T \ep{Numeric_Value: 11/12} (Short: \ep{Nv=11/12}) (1: U+109BC) \& T \ep{Numeric_Value: 1} (Short: \ep{Nv=1}) (141: [1\exb9], U+0661, \& U+06F1, U+07C1, U+0967, U+09E7 ...) \& T \ep{Numeric_Value: 3/2} (Short: \ep{Nv=3/2}) (1: U+0F2B) \& T \ep{Numeric_Value: 2} (Short: \ep{Nv=2}) (140: [2\exb2], U+0662, \& U+06F2, U+07C2, U+0968, U+09E8 ...) \& T \ep{Numeric_Value: 5/2} (Short: \ep{Nv=5/2}) (1: U+0F2C) \& T \ep{Numeric_Value: 3} (Short: \ep{Nv=3}) (141: [3\exb3], U+0663, \& U+06F3, U+07C3, U+0969, U+09E9 ...) \& T \ep{Numeric_Value: 7/2} (Short: \ep{Nv=7/2}) (1: U+0F2D) \& T \ep{Numeric_Value: 4} (Short: \ep{Nv=4}) (132: [4], U+0664, \& U+06F4, U+07C4, U+096A, U+09EA ...) \& T \ep{Numeric_Value: 9/2} (Short: \ep{Nv=9/2}) (1: U+0F2E) \& T \ep{Numeric_Value: 5} (Short: \ep{Nv=5}) (130: [5], U+0665, \& U+06F5, U+07C5, U+096B, U+09EB ...) \& T \ep{Numeric_Value: 11/2} (Short: \ep{Nv=11/2}) (1: U+0F2F) \& T \ep{Numeric_Value: 6} (Short: \ep{Nv=6}) (114: [6], U+0666, \& U+06F6, U+07C6, U+096C, U+09EC ...) \& T \ep{Numeric_Value: 13/2} (Short: \ep{Nv=13/2}) (1: U+0F30) \& T \ep{Numeric_Value: 7} (Short: \ep{Nv=7}) (113: [7], U+0667, \& U+06F7, U+07C7, U+096D, U+09ED ...) \& T \ep{Numeric_Value: 15/2} (Short: \ep{Nv=15/2}) (1: U+0F31) \& T \ep{Numeric_Value: 8} (Short: \ep{Nv=8}) (109: [8], U+0668, \& U+06F8, U+07C8, U+096E, U+09EE ...) \& T \ep{Numeric_Value: 17/2} (Short: \ep{Nv=17/2}) (1: U+0F32) \& T \ep{Numeric_Value: 9} (Short: \ep{Nv=9}) (113: [9], U+0669, \& U+06F9, U+07C9, U+096F, U+09EF ...) \& T \ep{Numeric_Value: 10} (Short: \ep{Nv=10}) (62: U+0BF0, U+0D70, \& U+1372, U+2169, U+2179, U+2469 ...) \& T \ep{Numeric_Value: 11} (Short: \ep{Nv=11}) (8: U+216A, U+217A, \& U+246A, U+247E, U+2492, U+24EB ...) \& T \ep{Numeric_Value: 12} (Short: \ep{Nv=12}) (8: U+216B, U+217B, \& U+246B, U+247F, U+2493, U+24EC ...) \& T \ep{Numeric_Value: 13} (Short: \ep{Nv=13}) (6: U+246C, U+2480, \& U+2494, U+24ED, U+16E8D, U+1D2ED) \& T \ep{Numeric_Value: 14} (Short: \ep{Nv=14}) (6: U+246D, U+2481, \& U+2495, U+24EE, U+16E8E, U+1D2EE) \& T \ep{Numeric_Value: 15} (Short: \ep{Nv=15}) (6: U+246E, U+2482, \& U+2496, U+24EF, U+16E8F, U+1D2EF) \& T \ep{Numeric_Value: 16} (Short: \ep{Nv=16}) (7: U+09F9, U+246F, \& U+2483, U+2497, U+24F0, U+16E90 ...) \& T \ep{Numeric_Value: 17} (Short: \ep{Nv=17}) (7: U+16EE, U+2470, \& U+2484, U+2498, U+24F1, U+16E91 ...) \& T \ep{Numeric_Value: 18} (Short: \ep{Nv=18}) (7: U+16EF, U+2471, \& U+2485, U+2499, U+24F2, U+16E92 ...) \& T \ep{Numeric_Value: 19} (Short: \ep{Nv=19}) (7: U+16F0, U+2472, \& U+2486, U+249A, U+24F3, U+16E93 ...) \& T \ep{Numeric_Value: 20} (Short: \ep{Nv=20}) (36: U+1373, U+2473, \& U+2487, U+249B, U+24F4, U+3039 ...) \& T \ep{Numeric_Value: 21} (Short: \ep{Nv=21}) (1: U+3251) \& T \ep{Numeric_Value: 22} (Short: \ep{Nv=22}) (1: U+3252) \& T \ep{Numeric_Value: 23} (Short: \ep{Nv=23}) (1: U+3253) \& T \ep{Numeric_Value: 24} (Short: \ep{Nv=24}) (1: U+3254) \& T \ep{Numeric_Value: 25} (Short: \ep{Nv=25}) (1: U+3255) \& T \ep{Numeric_Value: 26} (Short: \ep{Nv=26}) (1: U+3256) \& T \ep{Numeric_Value: 27} (Short: \ep{Nv=27}) (1: U+3257) \& T \ep{Numeric_Value: 28} (Short: \ep{Nv=28}) (1: U+3258) \& T \ep{Numeric_Value: 29} (Short: \ep{Nv=29}) (1: U+3259) \& T \ep{Numeric_Value: 30} (Short: \ep{Nv=30}) (19: U+1374, U+303A, \& U+324A, U+325A, U+5345, U+10112 ...) \& T \ep{Numeric_Value: 31} (Short: \ep{Nv=31}) (1: U+325B) \& T \ep{Numeric_Value: 32} (Short: \ep{Nv=32}) (1: U+325C) \& T \ep{Numeric_Value: 33} (Short: \ep{Nv=33}) (1: U+325D) \& T \ep{Numeric_Value: 34} (Short: \ep{Nv=34}) (1: U+325E) \& T \ep{Numeric_Value: 35} (Short: \ep{Nv=35}) (1: U+325F) \& T \ep{Numeric_Value: 36} (Short: \ep{Nv=36}) (1: U+32B1) \& T \ep{Numeric_Value: 37} (Short: \ep{Nv=37}) (1: U+32B2) \& T \ep{Numeric_Value: 38} (Short: \ep{Nv=38}) (1: U+32B3) \& T \ep{Numeric_Value: 39} (Short: \ep{Nv=39}) (1: U+32B4) \& T \ep{Numeric_Value: 40} (Short: \ep{Nv=40}) (18: U+1375, U+324B, \& U+32B5, U+534C, U+10113, U+102ED ...) \& T \ep{Numeric_Value: 41} (Short: \ep{Nv=41}) (1: U+32B6) \& T \ep{Numeric_Value: 42} (Short: \ep{Nv=42}) (1: U+32B7) \& T \ep{Numeric_Value: 43} (Short: \ep{Nv=43}) (1: U+32B8) \& T \ep{Numeric_Value: 44} (Short: \ep{Nv=44}) (1: U+32B9) \& T \ep{Numeric_Value: 45} (Short: \ep{Nv=45}) (1: U+32BA) \& T \ep{Numeric_Value: 46} (Short: \ep{Nv=46}) (1: U+32BB) \& T \ep{Numeric_Value: 47} (Short: \ep{Nv=47}) (1: U+32BC) \& T \ep{Numeric_Value: 48} (Short: \ep{Nv=48}) (1: U+32BD) \& T \ep{Numeric_Value: 49} (Short: \ep{Nv=49}) (1: U+32BE) \& T \ep{Numeric_Value: 50} (Short: \ep{Nv=50}) (29: U+1376, U+216C, \& U+217C, U+2186, U+324C, U+32BF ...) \& T \ep{Numeric_Value: 60} (Short: \ep{Nv=60}) (13: U+1377, U+324D, \& U+10115, U+102EF, U+109CE, U+10E6E ...) \& T \ep{Numeric_Value: 70} (Short: \ep{Nv=70}) (13: U+1378, U+324E, \& U+10116, U+102F0, U+109CF, U+10E6F ...) \& T \ep{Numeric_Value: 80} (Short: \ep{Nv=80}) (12: U+1379, U+324F, \& U+10117, U+102F1, U+10E70, U+11062 ...) \& T \ep{Numeric_Value: 90} (Short: \ep{Nv=90}) (12: U+137A, U+10118, \& U+102F2, U+10341, U+10E71, U+11063 ...) \& T \ep{Numeric_Value: 100} (Short: \ep{Nv=100}) (35: U+0BF1, U+0D71, \& U+137B, U+216D, U+217D, U+4F70 ...) \& T \ep{Numeric_Value: 200} (Short: \ep{Nv=200}) (6: U+1011A, U+102F4, \& U+109D3, U+10E73, U+1EC84, U+1ED14) \& T \ep{Numeric_Value: 300} (Short: \ep{Nv=300}) (7: U+1011B, U+1016B, \& U+102F5, U+109D4, U+10E74, U+1EC85 ...) \& T \ep{Numeric_Value: 400} (Short: \ep{Nv=400}) (7: U+1011C, U+102F6, \& U+109D5, U+10E75, U+1EC86, U+1ED16 ...) \& T \ep{Numeric_Value: 500} (Short: \ep{Nv=500}) (16: U+216E, U+217E, \& U+1011D, U+10145, U+1014C, U+10153 ...) \& T \ep{Numeric_Value: 600} (Short: \ep{Nv=600}) (7: U+1011E, U+102F8, \& U+109D7, U+10E77, U+1EC88, U+1ED18 ...) \& T \ep{Numeric_Value: 700} (Short: \ep{Nv=700}) (6: U+1011F, U+102F9, \& U+109D8, U+10E78, U+1EC89, U+1ED19) \& T \ep{Numeric_Value: 800} (Short: \ep{Nv=800}) (6: U+10120, U+102FA, \& U+109D9, U+10E79, U+1EC8A, U+1ED1A) \& T \ep{Numeric_Value: 900} (Short: \ep{Nv=900}) (7: U+10121, U+102FB, \& U+1034A, U+109DA, U+10E7A, U+1EC8B ...) \& T \ep{Numeric_Value: 1000} (Short: \ep{Nv=1000}) (22: U+0BF2, U+0D72, \& U+216F, U+217F..2180, U+4EDF, U+5343 ...) \& T \ep{Numeric_Value: 2000} (Short: \ep{Nv=2000}) (5: U+10123, U+109DC, \& U+1EC8D, U+1ED1D, U+1ED3A) \& T \ep{Numeric_Value: 3000} (Short: \ep{Nv=3000}) (4: U+10124, U+109DD, \& U+1EC8E, U+1ED1E) \& T \ep{Numeric_Value: 4000} (Short: \ep{Nv=4000}) (4: U+10125, U+109DE, \& U+1EC8F, U+1ED1F) \& T \ep{Numeric_Value: 5000} (Short: \ep{Nv=5000}) (8: U+2181, U+10126, \& U+10146, U+1014E, U+10172, U+109DF ...) \& T \ep{Numeric_Value: 6000} (Short: \ep{Nv=6000}) (4: U+10127, U+109E0, \& U+1EC91, U+1ED21) \& T \ep{Numeric_Value: 7000} (Short: \ep{Nv=7000}) (4: U+10128, U+109E1, \& U+1EC92, U+1ED22) \& T \ep{Numeric_Value: 8000} (Short: \ep{Nv=8000}) (4: U+10129, U+109E2, \& U+1EC93, U+1ED23) \& T \ep{Numeric_Value: 9000} (Short: \ep{Nv=9000}) (4: U+1012A, U+109E3, \& U+1EC94, U+1ED24) \& T \ep{Numeric_Value: 10000} (= 1.0e+04) (Short: \ep{Nv=10000}) (13: \& U+137C, U+2182, U+4E07, U+842C, U+1012B, \& U+10155 ...) \& T \ep{Numeric_Value: 20000} (= 2.0e+04) (Short: \ep{Nv=20000}) (4: \& U+1012C, U+109E5, U+1EC96, U+1ED26) \& T \ep{Numeric_Value: 30000} (= 3.0e+04) (Short: \ep{Nv=30000}) (4: \& U+1012D, U+109E6, U+1EC97, U+1ED27) \& T \ep{Numeric_Value: 40000} (= 4.0e+04) (Short: \ep{Nv=40000}) (4: \& U+1012E, U+109E7, U+1EC98, U+1ED28) \& T \ep{Numeric_Value: 50000} (= 5.0e+04) (Short: \ep{Nv=50000}) (7: \& U+2187, U+1012F, U+10147, U+10156, \& U+109E8, U+1EC99 ...) \& T \ep{Numeric_Value: 60000} (= 6.0e+04) (Short: \ep{Nv=60000}) (4: \& U+10130, U+109E9, U+1EC9A, U+1ED2A) \& T \ep{Numeric_Value: 70000} (= 7.0e+04) (Short: \ep{Nv=70000}) (4: \& U+10131, U+109EA, U+1EC9B, U+1ED2B) \& T \ep{Numeric_Value: 80000} (= 8.0e+04) (Short: \ep{Nv=80000}) (4: \& U+10132, U+109EB, U+1EC9C, U+1ED2C) \& T \ep{Numeric_Value: 90000} (= 9.0e+04) (Short: \ep{Nv=90000}) (4: \& U+10133, U+109EC, U+1EC9D, U+1ED2D) \& T \ep{Numeric_Value: 100000} (= 1.0e+05) (Short: \ep{Nv=100000}) (5: \& U+2188, U+109ED, U+1EC9E, U+1ECA0, \& U+1ECB4) \& T \ep{Numeric_Value: 200000} (= 2.0e+05) (Short: \ep{Nv=200000}) (2: \& U+109EE, U+1EC9F) \& T \ep{Numeric_Value: 216000} (= 2.2e+05) (Short: \ep{Nv=216000}) (1: \& U+12432) \& T \ep{Numeric_Value: 300000} (= 3.0e+05) (Short: \ep{Nv=300000}) (1: \& U+109EF) \& T \ep{Numeric_Value: 400000} (= 4.0e+05) (Short: \ep{Nv=400000}) (1: \& U+109F0) \& T \ep{Numeric_Value: 432000} (= 4.3e+05) (Short: \ep{Nv=432000}) (1: \& U+12433) \& T \ep{Numeric_Value: 500000} (= 5.0e+05) (Short: \ep{Nv=500000}) (1: \& U+109F1) \& T \ep{Numeric_Value: 600000} (= 6.0e+05) (Short: \ep{Nv=600000}) (1: \& U+109F2) \& T \ep{Numeric_Value: 700000} (= 7.0e+05) (Short: \ep{Nv=700000}) (1: \& U+109F3) \& T \ep{Numeric_Value: 800000} (= 8.0e+05) (Short: \ep{Nv=800000}) (1: \& U+109F4) \& T \ep{Numeric_Value: 900000} (= 9.0e+05) (Short: \ep{Nv=900000}) (1: \& U+109F5) \& T \ep{Numeric_Value: 1000000} (= 1.0e+06) (Short: \ep{Nv=1000000}) (1: \& U+16B5E) \& T \ep{Numeric_Value: 10000000} (= 1.0e+07) (Short: \ep{Nv=10000000}) \& (1: U+1ECA1) \& T \ep{Numeric_Value: 20000000} (= 2.0e+07) (Short: \ep{Nv=20000000}) \& (1: U+1ECA2) \& T \ep{Numeric_Value: 100000000} (= 1.0e+08) (Short: \ep{Nv=100000000}) \& (3: U+4EBF, U+5104, U+16B5F) \& T \ep{Numeric_Value: 10000000000} (= 1.0e+10) (Short: \ep{Nv= \& 10000000000}) (1: U+16B60) \& T \ep{Numeric_Value: 1000000000000} (= 1.0e+12) (Short: \ep{Nv= \& 1000000000000}) (2: U+5146, U+16B61) \& \ep{Numeric_Value: NaN} (Short: \ep{Nv=NaN}) (1_112_240 plus all \& above\-Unicode code points: [\ex00\-\ex20! \& \e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/:;<=>?\e@A\-Z\e[\e\e\e] \& \e^_\`a\-z\e{\e|\e}~\ex7f\-\exb1\exb4\-\exb8\exba\- \& \exbb\exbf\-\exff], U+0100..065F, \& U+066A..06EF, U+06FA..07BF, \& U+07CA..0965, U+0970..09E5 ...) \& \ep{Nushu} \ep{Script_Extensions=Nushu} (Short: \& \ep{Nshu}; NOT \ep{Block=Nushu}) (397) \& \ep{Nv: *} \ep{Numeric_Value: *} \& \ep{Nyiakeng_Puachue_Hmong} \ep{Script_Extensions= \& Nyiakeng_Puachue_Hmong} (Short: \& \ep{Hmnp}; NOT \ep{Block= \& Nyiakeng_Puachue_Hmong}) (71) \& X \ep{OCR} \ep{Optical_Character_Recognition} (= \& \ep{Block=Optical_Character_Recognition}) \& (32) \& \ep{Ogam} \ep{Ogham} (= \ep{Script_Extensions=Ogham}) \& (NOT \ep{Block=Ogham}) (29) \& \ep{Ogham} \ep{Script_Extensions=Ogham} (Short: \& \ep{Ogam}; NOT \ep{Block=Ogham}) (29) \& \ep{Ol_Chiki} \ep{Script_Extensions=Ol_Chiki} (Short: \& \ep{Olck}) (48) \& \ep{Olck} \ep{Ol_Chiki} (= \ep{Script_Extensions= \& Ol_Chiki}) (48) \& \ep{Old_Hungarian} \ep{Script_Extensions=Old_Hungarian} \& (Short: \ep{Hung}; NOT \ep{Block= \& Old_Hungarian}) (108) \& \ep{Old_Italic} \ep{Script_Extensions=Old_Italic} (Short: \& \ep{Ital}; NOT \ep{Block=Old_Italic}) (39) \& \ep{Old_North_Arabian} \ep{Script_Extensions=Old_North_Arabian} \& (Short: \ep{Narb}) (32) \& \ep{Old_Permic} \ep{Script_Extensions=Old_Permic} (Short: \& \ep{Perm}; NOT \ep{Block=Old_Permic}) (44) \& \ep{Old_Persian} \ep{Script_Extensions=Old_Persian} (Short: \& \ep{Xpeo}; NOT \ep{Block=Old_Persian}) (50) \& \ep{Old_Sogdian} \ep{Script_Extensions=Old_Sogdian} (Short: \& \ep{Sogo}; NOT \ep{Block=Old_Sogdian}) (40) \& \ep{Old_South_Arabian} \ep{Script_Extensions=Old_South_Arabian} \& (Short: \ep{Sarb}) (32) \& \ep{Old_Turkic} \ep{Script_Extensions=Old_Turkic} (Short: \& \ep{Orkh}; NOT \ep{Block=Old_Turkic}) (73) \& \ep{Old_Uyghur} \ep{Script_Extensions=Old_Uyghur} (Short: \& \ep{Ougr}; NOT \ep{Block=Old_Uyghur}) (28) \& \ep{Open_Punctuation} \ep{General_Category=Open_Punctuation} \& (Short: \ep{Ps}) (79) \& X \ep{Optical_Character_Recognition} \ep{Block= \& Optical_Character_Recognition} (Short: \& \ep{InOCR}) (32) \& \ep{Oriya} \ep{Script_Extensions=Oriya} (Short: \& \ep{Orya}; NOT \ep{Block=Oriya}) (97) \& \ep{Orkh} \ep{Old_Turkic} (= \ep{Script_Extensions= \& Old_Turkic}) (NOT \ep{Block=Old_Turkic}) \& (73) \& X \ep{Ornamental_Dingbats} \ep{Block=Ornamental_Dingbats} (48) \& \ep{Orya} \ep{Oriya} (= \ep{Script_Extensions=Oriya}) \& (NOT \ep{Block=Oriya}) (97) \& \ep{Osage} \ep{Script_Extensions=Osage} (Short: \& \ep{Osge}; NOT \ep{Block=Osage}) (72) \& \ep{Osge} \ep{Osage} (= \ep{Script_Extensions=Osage}) \& (NOT \ep{Block=Osage}) (72) \& \ep{Osma} \ep{Osmanya} (= \ep{Script_Extensions= \& Osmanya}) (NOT \ep{Block=Osmanya}) (40) \& \ep{Osmanya} \ep{Script_Extensions=Osmanya} (Short: \& \ep{Osma}; NOT \ep{Block=Osmanya}) (40) \& \ep{Other} \ep{General_Category=Other} (Short: \ep{C}) \& (969_578 plus all above\-Unicode code \& points) \& \ep{Other_Letter} \ep{General_Category=Other_Letter} (Short: \& \ep{Lo}) (127_333) \& \ep{Other_Number} \ep{General_Category=Other_Number} (Short: \& \ep{No}) (895) \& \ep{Other_Punctuation} \ep{General_Category=Other_Punctuation} \& (Short: \ep{Po}) (605) \& \ep{Other_Symbol} \ep{General_Category=Other_Symbol} (Short: \& \ep{So}) (6605) \& X \ep{Ottoman_Siyaq_Numbers} \ep{Block=Ottoman_Siyaq_Numbers} (80) \& \ep{Ougr} \ep{Old_Uyghur} (= \ep{Script_Extensions= \& Old_Uyghur}) (NOT \ep{Block=Old_Uyghur}) \& (28) \& \ep{P} \epP \ep{Punct} (= \ep{General_Category= \& Punctuation}) (NOT \& \ep{General_Punctuation}) (819) \& \ep{Pahawh_Hmong} \ep{Script_Extensions=Pahawh_Hmong} (Short: \& \ep{Hmng}; NOT \ep{Block=Pahawh_Hmong}) \& (127) \& \ep{Palm} \ep{Palmyrene} (= \ep{Script_Extensions= \& Palmyrene}) (32) \& \ep{Palmyrene} \ep{Script_Extensions=Palmyrene} (Short: \& \ep{Palm}) (32) \& \ep{Paragraph_Separator} \ep{General_Category=Paragraph_Separator} \& (Short: \ep{Zp}) (1) \& \ep{Pat_Syn} \ep{Pattern_Syntax} (= \ep{Pattern_Syntax= \& Y}) (2760) \& \ep{Pat_Syn: *} \ep{Pattern_Syntax: *} \& \ep{Pat_WS} \ep{Pattern_White_Space} (= \& \ep{Pattern_White_Space=Y}) (11) \& \ep{Pat_WS: *} \ep{Pattern_White_Space: *} \& \ep{Pattern_Syntax} \ep{Pattern_Syntax=Y} (Short: \ep{PatSyn}) \& (2760) \& \ep{Pattern_Syntax: N*} (Short: \ep{PatSyn=N}, \eP{PatSyn}) \& (1_111_352 plus all above\-Unicode code \& points: [\ex00\-\ex200\-9A\-Z_a\-z\ex7f\-\exa0 \& \exa8\exaa\exad\exaf\exb2\-\exb5\exb7\-\exba\exbc\- \& \exbe\exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+0100..200F, U+2028..202F, \& U+203F..2040, U+2054, U+205F..218F ...) \& \ep{Pattern_Syntax: Y*} (Short: \ep{PatSyn=Y}, \ep{PatSyn}) (2760: \& [!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/:;<=>?\e@\e[\e\e\e] \& \e^\`\e{\e|\e}~\exa1\-\exa7\exa9\exab\-\exac\exae \& \exb0\-\exb1\exb6\exbb\exbf\exd7\exf7], \& U+2010..2027, U+2030..203E, \& U+2041..2053, U+2055..205E, U+2190..245F \& ...) \& \ep{Pattern_White_Space} \ep{Pattern_White_Space=Y} (Short: \& \ep{PatWS}) (11) \& \ep{Pattern_White_Space: N*} (Short: \ep{PatWS=N}, \eP{PatWS}) \& (1_114_101 plus all above\-Unicode code \& points: [^\et\en\ecK\ef\er\ex20\ex85], \& U+0100..200D, U+2010..2027, \& U+202A..infinity) \& \ep{Pattern_White_Space: Y*} (Short: \ep{PatWS=Y}, \ep{PatWS}) (11: \& [\et\en\ecK\ef\er\ex20\ex85], U+200E..200F, \& U+2028..2029) \& \ep{Pau_Cin_Hau} \ep{Script_Extensions=Pau_Cin_Hau} (Short: \& \ep{Pauc}; NOT \ep{Block=Pau_Cin_Hau}) (57) \& \ep{Pauc} \ep{Pau_Cin_Hau} (= \ep{Script_Extensions= \& Pau_Cin_Hau}) (NOT \ep{Block= \& Pau_Cin_Hau}) (57) \& \ep{Pc} \ep{Connector_Punctuation} (= \& \ep{General_Category= \& Connector_Punctuation}) (10) \& \ep{PCM} \ep{Prepended_Concatenation_Mark} (= \& \ep{Prepended_Concatenation_Mark=Y}) (13) \& \ep{PCM: *} \ep{Prepended_Concatenation_Mark: *} \& \ep{Pd} \ep{Dash_Punctuation} (= \& \ep{General_Category=Dash_Punctuation}) \& (26) \& \ep{Pe} \ep{Close_Punctuation} (= \& \ep{General_Category=Close_Punctuation}) \& (77) \& \ep{PerlSpace} \ep{PosixSpace} (6) \& \ep{PerlWord} \ep{PosixWord} (63) \& \ep{Perm} \ep{Old_Permic} (= \ep{Script_Extensions= \& Old_Permic}) (NOT \ep{Block=Old_Permic}) \& (44) \& \ep{Pf} \ep{Final_Punctuation} (= \& \ep{General_Category=Final_Punctuation}) \& (10) \& \ep{Phag} \ep{Phags_Pa} (= \ep{Script_Extensions= \& Phags_Pa}) (NOT \ep{Block=Phags_Pa}) (59) \& \ep{Phags_Pa} \ep{Script_Extensions=Phags_Pa} (Short: \& \ep{Phag}; NOT \ep{Block=Phags_Pa}) (59) \& X \ep{Phaistos} \ep{Phaistos_Disc} (= \ep{Block= \& Phaistos_Disc}) (48) \& X \ep{Phaistos_Disc} \ep{Block=Phaistos_Disc} (Short: \& \ep{InPhaistos}) (48) \& \ep{Phli} \ep{Inscriptional_Pahlavi} (= \& \ep{Script_Extensions= \& Inscriptional_Pahlavi}) (NOT \ep{Block= \& Inscriptional_Pahlavi}) (27) \& \ep{Phlp} \ep{Psalter_Pahlavi} (= \& \ep{Script_Extensions=Psalter_Pahlavi}) \& (NOT \ep{Block=Psalter_Pahlavi}) (30) \& \ep{Phnx} \ep{Phoenician} (= \ep{Script_Extensions= \& Phoenician}) (NOT \ep{Block=Phoenician}) \& (29) \& \ep{Phoenician} \ep{Script_Extensions=Phoenician} (Short: \& \ep{Phnx}; NOT \ep{Block=Phoenician}) (29) \& X \ep{Phonetic_Ext} \ep{Phonetic_Extensions} (= \ep{Block= \& Phonetic_Extensions}) (128) \& X \ep{Phonetic_Ext_Sup} \ep{Phonetic_Extensions_Supplement} (= \& \ep{Block= \& Phonetic_Extensions_Supplement}) (64) \& X \ep{Phonetic_Extensions} \ep{Block=Phonetic_Extensions} (Short: \& \ep{InPhoneticExt}) (128) \& X \ep{Phonetic_Extensions_Supplement} \ep{Block= \& Phonetic_Extensions_Supplement} (Short: \& \ep{InPhoneticExtSup}) (64) \& \ep{Pi} \ep{Initial_Punctuation} (= \& \ep{General_Category= \& Initial_Punctuation}) (12) \& X \ep{Playing_Cards} \ep{Block=Playing_Cards} (96) \& \ep{Plrd} \ep{Miao} (= \ep{Script_Extensions=Miao}) \& (NOT \ep{Block=Miao}) (149) \& \ep{Po} \ep{Other_Punctuation} (= \& \ep{General_Category=Other_Punctuation}) \& (605) \& \ep{PosixAlnum} (62: [0\-9A\-Za\-z]) \& \ep{PosixAlpha} (52: [A\-Za\-z]) \& \ep{PosixBlank} (2: [\et\ex20]) \& \ep{PosixCntrl} ASCII control characters (33: ACK, BEL, \& BS, CAN, CR, DC1, DC2, DC3, DC4, DEL, \& DLE, ENQ, EOM, EOT, ESC, ETB, ETX, FF, \& FS, GS, HT, LF, NAK, NUL, RS, SI, SO, \& SOH, STX, SUB, SYN, US, VT) \& \ep{PosixDigit} (10: [0\-9]) \& \ep{PosixGraph} (94: [!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/0\-9:;<=>?\e@A\- \& Z\e[\e\e\e]\e^_\`a\-z\e{\e|\e}~]) \& \ep{PosixLower} (/i= PosixAlpha) (26: [a\-z]) \& \ep{PosixPrint} (95: [\ex20\-\ex7e]) \& \ep{PosixPunct} (32: [!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/:;<=>?\e@ \& \e[\e\e\e]\e^_\`\e{\e|\e}~]) \& \ep{PosixSpace} (Short: \ep{PerlSpace}) (6: [\et\en\ecK\ef\er \& \ex20]) \& \ep{PosixUpper} (/i= PosixAlpha) (26: [A\-Z]) \& \ep{PosixWord} \ew, restricted to ASCII (Short: \& \ep{PerlWord}) (63: [0\-9A\-Z_a\-z]) \& \ep{PosixXDigit} \ep{ASCII_Hex_Digit=Y} (Short: \ep{AHex}) \& (22) \& \ep{Prepended_Concatenation_Mark} \ep{Prepended_Concatenation_Mark= \& Y} (Short: \ep{PCM}) (13) \& \ep{Prepended_Concatenation_Mark: N*} (Short: \ep{PCM=N}, \eP{PCM}) \& (1_114_099 plus all above\-Unicode code \& points: U+0000..05FF, U+0606..06DC, \& U+06DE..070E, U+0710..088F, \& U+0892..08E1, U+08E3..110BC ...) \& \ep{Prepended_Concatenation_Mark: Y*} (Short: \ep{PCM=Y}, \ep{PCM}) \& (13: U+0600..0605, U+06DD, U+070F, \& U+0890..0891, U+08E2, U+110BD ...) \& T \ep{Present_In: 1.1} \ep{Age=V1_1} (Short: \ep{In=1.1}) (Perl \& extension) (33_979) \& \ep{Present_In: V1_1} \ep{Present_In=1.1} (= \ep{Age=V1_1}) (Perl \& extension) (33_979) \& T \ep{Present_In: 2.0} Code point\*(Aqs usage introduced in version \& 2.0 or earlier (Short: \ep{In=2.0}) (Perl \& extension) (178_500: U+0000..01F5, \& U+01FA..0217, U+0250..02A8, \& U+02B0..02DE, U+02E0..02E9, U+0300..0345 \& ...) \& \ep{Present_In: V2_0} \ep{Present_In=2.0} (Perl extension) \& (178_500) \& T \ep{Present_In: 2.1} Code point\*(Aqs usage introduced in version \& 2.1 or earlier (Short: \ep{In=2.1}) (Perl \& extension) (178_502: U+0000..01F5, \& U+01FA..0217, U+0250..02A8, \& U+02B0..02DE, U+02E0..02E9, U+0300..0345 \& ...) \& \ep{Present_In: V2_1} \ep{Present_In=2.1} (Perl extension) \& (178_502) \& T \ep{Present_In: 3.0} Code point\*(Aqs usage introduced in version \& 3.0 or earlier (Short: \ep{In=3.0}) (Perl \& extension) (188_809: U+0000..021F, \& U+0222..0233, U+0250..02AD, \& U+02B0..02EE, U+0300..034E, U+0360..0362 \& ...) \& \ep{Present_In: V3_0} \ep{Present_In=3.0} (Perl extension) \& (188_809) \& T \ep{Present_In: 3.1} Code point\*(Aqs usage introduced in version \& 3.1 or earlier (Short: \ep{In=3.1}) (Perl \& extension) (233_787: U+0000..021F, \& U+0222..0233, U+0250..02AD, \& U+02B0..02EE, U+0300..034E, U+0360..0362 \& ...) \& \ep{Present_In: V3_1} \ep{Present_In=3.1} (Perl extension) \& (233_787) \& T \ep{Present_In: 3.2} Code point\*(Aqs usage introduced in version \& 3.2 or earlier (Short: \ep{In=3.2}) (Perl \& extension) (234_803: U+0000..0220, \& U+0222..0233, U+0250..02AD, \& U+02B0..02EE, U+0300..034F, U+0360..036F \& ...) \& \ep{Present_In: V3_2} \ep{Present_In=3.2} (Perl extension) \& (234_803) \& T \ep{Present_In: 4.0} Code point\*(Aqs usage introduced in version \& 4.0 or earlier (Short: \ep{In=4.0}) (Perl \& extension) (236_029: U+0000..0236, \& U+0250..0357, U+035D..036F, \& U+0374..0375, U+037A, U+037E ...) \& \ep{Present_In: V4_0} \ep{Present_In=4.0} (Perl extension) \& (236_029) \& T \ep{Present_In: 4.1} Code point\*(Aqs usage introduced in version \& 4.1 or earlier (Short: \ep{In=4.1}) (Perl \& extension) (237_302: U+0000..0241, \& U+0250..036F, U+0374..0375, U+037A, \& U+037E, U+0384..038A ...) \& \ep{Present_In: V4_1} \ep{Present_In=4.1} (Perl extension) \& (237_302) \& T \ep{Present_In: 5.0} Code point\*(Aqs usage introduced in version \& 5.0 or earlier (Short: \ep{In=5.0}) (Perl \& extension) (238_671: U+0000..036F, \& U+0374..0375, U+037A..037E, \& U+0384..038A, U+038C, U+038E..03A1 ...) \& \ep{Present_In: V5_0} \ep{Present_In=5.0} (Perl extension) \& (238_671) \& T \ep{Present_In: 5.1} Code point\*(Aqs usage introduced in version \& 5.1 or earlier (Short: \ep{In=5.1}) (Perl \& extension) (240_295: U+0000..0377, \& U+037A..037E, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..0523 ...) \& \ep{Present_In: V5_1} \ep{Present_In=5.1} (Perl extension) \& (240_295) \& T \ep{Present_In: 5.2} Code point\*(Aqs usage introduced in version \& 5.2 or earlier (Short: \ep{In=5.2}) (Perl \& extension) (246_943: U+0000..0377, \& U+037A..037E, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..0525 ...) \& \ep{Present_In: V5_2} \ep{Present_In=5.2} (Perl extension) \& (246_943) \& T \ep{Present_In: 6.0} Code point\*(Aqs usage introduced in version \& 6.0 or earlier (Short: \ep{In=6.0}) (Perl \& extension) (249_031: U+0000..0377, \& U+037A..037E, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..0527 ...) \& \ep{Present_In: V6_0} \ep{Present_In=6.0} (Perl extension) \& (249_031) \& T \ep{Present_In: 6.1} Code point\*(Aqs usage introduced in version \& 6.1 or earlier (Short: \ep{In=6.1}) (Perl \& extension) (249_763: U+0000..0377, \& U+037A..037E, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..0527 ...) \& \ep{Present_In: V6_1} \ep{Present_In=6.1} (Perl extension) \& (249_763) \& T \ep{Present_In: 6.2} Code point\*(Aqs usage introduced in version \& 6.2 or earlier (Short: \ep{In=6.2}) (Perl \& extension) (249_764: U+0000..0377, \& U+037A..037E, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..0527 ...) \& \ep{Present_In: V6_2} \ep{Present_In=6.2} (Perl extension) \& (249_764) \& T \ep{Present_In: 6.3} Code point\*(Aqs usage introduced in version \& 6.3 or earlier (Short: \ep{In=6.3}) (Perl \& extension) (249_769: U+0000..0377, \& U+037A..037E, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..0527 ...) \& \ep{Present_In: V6_3} \ep{Present_In=6.3} (Perl extension) \& (249_769) \& T \ep{Present_In: 7.0} Code point\*(Aqs usage introduced in version \& 7.0 or earlier (Short: \ep{In=7.0}) (Perl \& extension) (252_603: U+0000..0377, \& U+037A..037F, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..052F ...) \& \ep{Present_In: V7_0} \ep{Present_In=7.0} (Perl extension) \& (252_603) \& T \ep{Present_In: 8.0} Code point\*(Aqs usage introduced in version \& 8.0 or earlier (Short: \ep{In=8.0}) (Perl \& extension) (260_319: U+0000..0377, \& U+037A..037F, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..052F ...) \& \ep{Present_In: V8_0} \ep{Present_In=8.0} (Perl extension) \& (260_319) \& T \ep{Present_In: 9.0} Code point\*(Aqs usage introduced in version \& 9.0 or earlier (Short: \ep{In=9.0}) (Perl \& extension) (267_819: U+0000..0377, \& U+037A..037F, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..052F ...) \& \ep{Present_In: V9_0} \ep{Present_In=9.0} (Perl extension) \& (267_819) \& T \ep{Present_In: 10.0} Code point\*(Aqs usage introduced in version \& 10.0 or earlier (Short: \ep{In=10.0}) \& (Perl extension) (276_337: U+0000..0377, \& U+037A..037F, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..052F ...) \& \ep{Present_In: V10_0} \ep{Present_In=10.0} (Perl extension) \& (276_337) \& T \ep{Present_In: 11.0} Code point\*(Aqs usage introduced in version \& 11.0 or earlier (Short: \ep{In=11.0}) \& (Perl extension) (277_021: U+0000..0377, \& U+037A..037F, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..052F ...) \& \ep{Present_In: V11_0} \ep{Present_In=11.0} (Perl extension) \& (277_021) \& T \ep{Present_In: 12.0} Code point\*(Aqs usage introduced in version \& 12.0 or earlier (Short: \ep{In=12.0}) \& (Perl extension) (277_575: U+0000..0377, \& U+037A..037F, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..052F ...) \& \ep{Present_In: V12_0} \ep{Present_In=12.0} (Perl extension) \& (277_575) \& T \ep{Present_In: 12.1} Code point\*(Aqs usage introduced in version \& 12.1 or earlier (Short: \ep{In=12.1}) \& (Perl extension) (277_576: U+0000..0377, \& U+037A..037F, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..052F ...) \& \ep{Present_In: V12_1} \ep{Present_In=12.1} (Perl extension) \& (277_576) \& T \ep{Present_In: 13.0} Code point\*(Aqs usage introduced in version \& 13.0 or earlier (Short: \ep{In=13.0}) \& (Perl extension) (283_506: U+0000..0377, \& U+037A..037F, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..052F ...) \& \ep{Present_In: V13_0} \ep{Present_In=13.0} (Perl extension) \& (283_506) \& T \ep{Present_In: 14.0} Code point\*(Aqs usage introduced in version \& 14.0 or earlier (Short: \ep{In=14.0}) \& (Perl extension) (284_344: U+0000..0377, \& U+037A..037F, U+0384..038A, U+038C, \& U+038E..03A1, U+03A3..052F ...) \& \ep{Present_In: V14_0} \ep{Present_In=14.0} (Perl extension) \& (284_344) \& \ep{Present_In: NA} \ep{Present_In=Unassigned} (= \ep{Age= \& Unassigned}) (Perl extension) (829_768 \& plus all above\-Unicode code points) \& \ep{Present_In: Unassigned} \ep{Age=Unassigned} (Short: \ep{In=NA}) \& (Perl extension) (829_768 plus all \& above\-Unicode code points) \& \ep{Print} \ep{XPosixPrint} (282_163) \& \ep{Private_Use} \ep{General_Category=Private_Use} (Short: \& \ep{Co}; NOT \ep{Private_Use_Area}) \& (137_468) \& X \ep{Private_Use_Area} \ep{Block=Private_Use_Area} (Short: \& \ep{InPUA}) (6400) \& \ep{Prti} \ep{Inscriptional_Parthian} (= \& \ep{Script_Extensions= \& Inscriptional_Parthian}) (NOT \ep{Block= \& Inscriptional_Parthian}) (30) \& \ep{Ps} \ep{Open_Punctuation} (= \& \ep{General_Category=Open_Punctuation}) \& (79) \& \ep{Psalter_Pahlavi} \ep{Script_Extensions=Psalter_Pahlavi} \& (Short: \ep{Phlp}; NOT \ep{Block= \& Psalter_Pahlavi}) (30) \& X \ep{PUA} \ep{Private_Use_Area} (= \ep{Block= \& Private_Use_Area}) (6400) \& \ep{Punct} \ep{General_Category=Punctuation} (Short: \& \ep{P}; NOT \ep{General_Punctuation}) (819) \& \ep{Punctuation} \ep{Punct} (= \ep{General_Category= \& Punctuation}) (NOT \& \ep{General_Punctuation}) (819) \& \ep{Qaac} \ep{Coptic} (= \ep{Script_Extensions= \& Coptic}) (NOT \ep{Block=Coptic}) (165) \& \ep{Qaai} \ep{Inherited} (= \ep{Script_Extensions= \& Inherited}) (586) \& \ep{QMark} \ep{Quotation_Mark} (= \ep{Quotation_Mark= \& Y}) (30) \& \ep{QMark: *} \ep{Quotation_Mark: *} \& \ep{Quotation_Mark} \ep{Quotation_Mark=Y} (Short: \ep{QMark}) \& (30) \& \ep{Quotation_Mark: N*} (Short: \ep{QMark=N}, \eP{QMark}) (1_114_082 \& plus all above\-Unicode code points: \& [\ex00\-\ex20!#\e$\e%&\e(\e)*+,\e\-.\e/0\-9:;<=>? \& \e@A\-Z\e[\e\e\e]\e^_\`a\-z\e{\e|\e}~\ex7f\-\exaa\exac\- \& \exba\exbc\-\exff], U+0100..2017, \& U+2020..2038, U+203B..2E41, \& U+2E43..300B, U+3010..301C ...) \& \ep{Quotation_Mark: Y*} (Short: \ep{QMark=Y}, \ep{QMark}) (30: [\e" \& \e\*(Aq\exab\exbb], U+2018..201F, U+2039..203A, \& U+2E42, U+300C..300F, U+301D..301F ...) \& \ep{Radical} \ep{Radical=Y} (329) \& \ep{Radical: N*} (Single: \eP{Radical}) (1_113_783 plus all \& above\-Unicode code points: U+0000..2E7F, \& U+2E9A, U+2EF4..2EFF, U+2FD6..infinity) \& \ep{Radical: Y*} (Single: \ep{Radical}) (329: U+2E80..2E99, \& U+2E9B..2EF3, U+2F00..2FD5) \& \ep{Regional_Indicator} \ep{Regional_Indicator=Y} (Short: \ep{RI}) \& (26) \& \ep{Regional_Indicator: N*} (Short: \ep{RI=N}, \eP{RI}) (1_114_086 \& plus all above\-Unicode code points: \& U+0000..1F1E5, U+1F200..infinity) \& \ep{Regional_Indicator: Y*} (Short: \ep{RI=Y}, \ep{RI}) (26: \& U+1F1E6..1F1FF) \& \ep{Rejang} \ep{Script_Extensions=Rejang} (Short: \& \ep{Rjng}; NOT \ep{Block=Rejang}) (37) \& \ep{RI} \ep{Regional_Indicator} (= \& \ep{Regional_Indicator=Y}) (26) \& \ep{RI: *} \ep{Regional_Indicator: *} \& \ep{Rjng} \ep{Rejang} (= \ep{Script_Extensions= \& Rejang}) (NOT \ep{Block=Rejang}) (37) \& \ep{Rohg} \ep{Hanifi_Rohingya} (= \& \ep{Script_Extensions=Hanifi_Rohingya}) \& (NOT \ep{Block=Hanifi_Rohingya}) (55) \& X \ep{Rumi} \ep{Rumi_Numeral_Symbols} (= \ep{Block= \& Rumi_Numeral_Symbols}) (32) \& X \ep{Rumi_Numeral_Symbols} \ep{Block=Rumi_Numeral_Symbols} (Short: \& \ep{InRumi}) (32) \& \ep{Runic} \ep{Script_Extensions=Runic} (Short: \& \ep{Runr}; NOT \ep{Block=Runic}) (86) \& \ep{Runr} \ep{Runic} (= \ep{Script_Extensions=Runic}) \& (NOT \ep{Block=Runic}) (86) \& \ep{S} \epS \ep{Symbol} (= \ep{General_Category=Symbol}) \& (7741) \& \ep{Samaritan} \ep{Script_Extensions=Samaritan} (Short: \& \ep{Samr}; NOT \ep{Block=Samaritan}) (61) \& \ep{Samr} \ep{Samaritan} (= \ep{Script_Extensions= \& Samaritan}) (NOT \ep{Block=Samaritan}) \& (61) \& \ep{Sarb} \ep{Old_South_Arabian} (= \& \ep{Script_Extensions=Old_South_Arabian}) \& (32) \& \ep{Saur} \ep{Saurashtra} (= \ep{Script_Extensions= \& Saurashtra}) (NOT \ep{Block=Saurashtra}) \& (82) \& \ep{Saurashtra} \ep{Script_Extensions=Saurashtra} (Short: \& \ep{Saur}; NOT \ep{Block=Saurashtra}) (82) \& \ep{SB: *} \ep{Sentence_Break: *} \& \ep{Sc} \ep{Currency_Symbol} (= \& \ep{General_Category=Currency_Symbol}) \& (63) \& \ep{Sc: *} \ep{Script: *} \& \ep{Script: Adlam} (Short: \ep{Sc=Adlm}) (88: U+1E900..1E94B, \& U+1E950..1E959, U+1E95E..1E95F) \& \ep{Script: Adlm} \ep{Script=Adlam} (88) \& \ep{Script: Aghb} \ep{Script=Caucasian_Albanian} (= \& \ep{Script_Extensions= \& Caucasian_Albanian}) (53) \& \ep{Script: Ahom} \ep{Script_Extensions=Ahom} (Short: \ep{Sc= \& Ahom}, \ep{Ahom}) (65) \& \ep{Script: Anatolian_Hieroglyphs} \ep{Script_Extensions= \& Anatolian_Hieroglyphs} (Short: \ep{Sc= \& Hluw}, \ep{Hluw}) (583) \& \ep{Script: Arab} \ep{Script=Arabic} (1365) \& \ep{Script: Arabic} (Short: \ep{Sc=Arab}) (1365: U+0600..0604, \& U+0606..060B, U+060D..061A, \& U+061C..061E, U+0620..063F, U+0641..064A \& ...) \& \ep{Script: Armenian} \ep{Script_Extensions=Armenian} (Short: \& \ep{Sc=Armn}, \ep{Armn}) (96) \& \ep{Script: Armi} \ep{Script=Imperial_Aramaic} (= \& \ep{Script_Extensions=Imperial_Aramaic}) \& (31) \& \ep{Script: Armn} \ep{Script=Armenian} (= \& \ep{Script_Extensions=Armenian}) (96) \& \ep{Script: Avestan} \ep{Script_Extensions=Avestan} (Short: \& \ep{Sc=Avst}, \ep{Avst}) (61) \& \ep{Script: Avst} \ep{Script=Avestan} (= \& \ep{Script_Extensions=Avestan}) (61) \& \ep{Script: Bali} \ep{Script=Balinese} (= \& \ep{Script_Extensions=Balinese}) (124) \& \ep{Script: Balinese} \ep{Script_Extensions=Balinese} (Short: \& \ep{Sc=Bali}, \ep{Bali}) (124) \& \ep{Script: Bamu} \ep{Script=Bamum} (= \ep{Script_Extensions= \& Bamum}) (657) \& \ep{Script: Bamum} \ep{Script_Extensions=Bamum} (Short: \ep{Sc= \& Bamu}, \ep{Bamu}) (657) \& \ep{Script: Bass} \ep{Script=Bassa_Vah} (= \& \ep{Script_Extensions=Bassa_Vah}) (36) \& \ep{Script: Bassa_Vah} \ep{Script_Extensions=Bassa_Vah} (Short: \& \ep{Sc=Bass}, \ep{Bass}) (36) \& \ep{Script: Batak} \ep{Script_Extensions=Batak} (Short: \ep{Sc= \& Batk}, \ep{Batk}) (56) \& \ep{Script: Batk} \ep{Script=Batak} (= \ep{Script_Extensions= \& Batak}) (56) \& \ep{Script: Beng} \ep{Script=Bengali} (96) \& \ep{Script: Bengali} (Short: \ep{Sc=Beng}) (96: U+0980..0983, \& U+0985..098C, U+098F..0990, \& U+0993..09A8, U+09AA..09B0, U+09B2 ...) \& \ep{Script: Bhaiksuki} \ep{Script_Extensions=Bhaiksuki} (Short: \& \ep{Sc=Bhks}, \ep{Bhks}) (97) \& \ep{Script: Bhks} \ep{Script=Bhaiksuki} (= \& \ep{Script_Extensions=Bhaiksuki}) (97) \& \ep{Script: Bopo} \ep{Script=Bopomofo} (77) \& \ep{Script: Bopomofo} (Short: \ep{Sc=Bopo}) (77: U+02EA..02EB, \& U+3105..312F, U+31A0..31BF) \& \ep{Script: Brah} \ep{Script=Brahmi} (= \ep{Script_Extensions= \& Brahmi}) (115) \& \ep{Script: Brahmi} \ep{Script_Extensions=Brahmi} (Short: \& \ep{Sc=Brah}, \ep{Brah}) (115) \& \ep{Script: Brai} \ep{Script=Braille} (= \& \ep{Script_Extensions=Braille}) (256) \& \ep{Script: Braille} \ep{Script_Extensions=Braille} (Short: \& \ep{Sc=Brai}, \ep{Brai}) (256) \& \ep{Script: Bugi} \ep{Script=Buginese} (30) \& \ep{Script: Buginese} (Short: \ep{Sc=Bugi}) (30: U+1A00..1A1B, \& U+1A1E..1A1F) \& \ep{Script: Buhd} \ep{Script=Buhid} (20) \& \ep{Script: Buhid} (Short: \ep{Sc=Buhd}) (20: U+1740..1753) \& \ep{Script: Cakm} \ep{Script=Chakma} (71) \& \ep{Script: Canadian_Aboriginal} \ep{Script_Extensions= \& Canadian_Aboriginal} (Short: \ep{Sc= \& Cans}, \ep{Cans}) (726) \& \ep{Script: Cans} \ep{Script=Canadian_Aboriginal} (= \& \ep{Script_Extensions= \& Canadian_Aboriginal}) (726) \& \ep{Script: Cari} \ep{Script=Carian} (= \ep{Script_Extensions= \& Carian}) (49) \& \ep{Script: Carian} \ep{Script_Extensions=Carian} (Short: \& \ep{Sc=Cari}, \ep{Cari}) (49) \& \ep{Script: Caucasian_Albanian} \ep{Script_Extensions= \& Caucasian_Albanian} (Short: \ep{Sc=Aghb}, \& \ep{Aghb}) (53) \& \ep{Script: Chakma} (Short: \ep{Sc=Cakm}) (71: U+11100..11134, \& U+11136..11147) \& \ep{Script: Cham} \ep{Script_Extensions=Cham} (Short: \ep{Sc= \& Cham}, \ep{Cham}) (83) \& \ep{Script: Cher} \ep{Script=Cherokee} (= \& \ep{Script_Extensions=Cherokee}) (172) \& \ep{Script: Cherokee} \ep{Script_Extensions=Cherokee} (Short: \& \ep{Sc=Cher}, \ep{Cher}) (172) \& \ep{Script: Chorasmian} \ep{Script_Extensions=Chorasmian} (Short: \& \ep{Sc=Chrs}, \ep{Chrs}) (28) \& \ep{Script: Chrs} \ep{Script=Chorasmian} (= \& \ep{Script_Extensions=Chorasmian}) (28) \& \ep{Script: Common} (Short: \ep{Sc=Zyyy}) (8252: [\ex00\-\ex20! \& \e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/0\-9:;<=>?\e@\e[\e\e\e] \& \e^_\`\e{\e|\e}~\ex7f\-\exa9\exab\-\exb9\exbb\-\exbf \& \exd7\exf7], U+02B9..02DF, U+02E5..02E9, \& U+02EC..02FF, U+0374, U+037E ...) \& \ep{Script: Copt} \ep{Script=Coptic} (137) \& \ep{Script: Coptic} (Short: \ep{Sc=Copt}) (137: U+03E2..03EF, \& U+2C80..2CF3, U+2CF9..2CFF) \& \ep{Script: Cpmn} \ep{Script=Cypro_Minoan} (99) \& \ep{Script: Cprt} \ep{Script=Cypriot} (55) \& \ep{Script: Cuneiform} \ep{Script_Extensions=Cuneiform} (Short: \& \ep{Sc=Xsux}, \ep{Xsux}) (1234) \& \ep{Script: Cypriot} (Short: \ep{Sc=Cprt}) (55: U+10800..10805, \& U+10808, U+1080A..10835, U+10837..10838, \& U+1083C, U+1083F) \& \ep{Script: Cypro_Minoan} (Short: \ep{Sc=Cpmn}) (99: U+12F90..12FF2) \& \ep{Script: Cyrillic} (Short: \ep{Sc=Cyrl}) (443: U+0400..0484, \& U+0487..052F, U+1C80..1C88, U+1D2B, \& U+1D78, U+2DE0..2DFF ...) \& \ep{Script: Cyrl} \ep{Script=Cyrillic} (443) \& \ep{Script: Deseret} \ep{Script_Extensions=Deseret} (Short: \& \ep{Sc=Dsrt}, \ep{Dsrt}) (80) \& \ep{Script: Deva} \ep{Script=Devanagari} (154) \& \ep{Script: Devanagari} (Short: \ep{Sc=Deva}) (154: U+0900..0950, \& U+0955..0963, U+0966..097F, U+A8E0..A8FF) \& \ep{Script: Diak} \ep{Script=Dives_Akuru} (= \& \ep{Script_Extensions=Dives_Akuru}) (72) \& \ep{Script: Dives_Akuru} \ep{Script_Extensions=Dives_Akuru} (Short: \& \ep{Sc=Diak}, \ep{Diak}) (72) \& \ep{Script: Dogr} \ep{Script=Dogra} (60) \& \ep{Script: Dogra} (Short: \ep{Sc=Dogr}) (60: U+11800..1183B) \& \ep{Script: Dsrt} \ep{Script=Deseret} (= \& \ep{Script_Extensions=Deseret}) (80) \& \ep{Script: Dupl} \ep{Script=Duployan} (143) \& \ep{Script: Duployan} (Short: \ep{Sc=Dupl}) (143: U+1BC00..1BC6A, \& U+1BC70..1BC7C, U+1BC80..1BC88, \& U+1BC90..1BC99, U+1BC9C..1BC9F) \& \ep{Script: Egyp} \ep{Script=Egyptian_Hieroglyphs} (= \& \ep{Script_Extensions= \& Egyptian_Hieroglyphs}) (1080) \& \ep{Script: Egyptian_Hieroglyphs} \ep{Script_Extensions= \& Egyptian_Hieroglyphs} (Short: \ep{Sc= \& Egyp}, \ep{Egyp}) (1080) \& \ep{Script: Elba} \ep{Script=Elbasan} (= \& \ep{Script_Extensions=Elbasan}) (40) \& \ep{Script: Elbasan} \ep{Script_Extensions=Elbasan} (Short: \& \ep{Sc=Elba}, \ep{Elba}) (40) \& \ep{Script: Elym} \ep{Script=Elymaic} (= \& \ep{Script_Extensions=Elymaic}) (23) \& \ep{Script: Elymaic} \ep{Script_Extensions=Elymaic} (Short: \& \ep{Sc=Elym}, \ep{Elym}) (23) \& \ep{Script: Ethi} \ep{Script=Ethiopic} (= \& \ep{Script_Extensions=Ethiopic}) (523) \& \ep{Script: Ethiopic} \ep{Script_Extensions=Ethiopic} (Short: \& \ep{Sc=Ethi}, \ep{Ethi}) (523) \& \ep{Script: Geor} \ep{Script=Georgian} (173) \& \ep{Script: Georgian} (Short: \ep{Sc=Geor}) (173: U+10A0..10C5, \& U+10C7, U+10CD, U+10D0..10FA, \& U+10FC..10FF, U+1C90..1CBA ...) \& \ep{Script: Glag} \ep{Script=Glagolitic} (134) \& \ep{Script: Glagolitic} (Short: \ep{Sc=Glag}) (134: U+2C00..2C5F, \& U+1E000..1E006, U+1E008..1E018, \& U+1E01B..1E021, U+1E023..1E024, \& U+1E026..1E02A) \& \ep{Script: Gong} \ep{Script=Gunjala_Gondi} (63) \& \ep{Script: Gonm} \ep{Script=Masaram_Gondi} (75) \& \ep{Script: Goth} \ep{Script=Gothic} (= \ep{Script_Extensions= \& Gothic}) (27) \& \ep{Script: Gothic} \ep{Script_Extensions=Gothic} (Short: \& \ep{Sc=Goth}, \ep{Goth}) (27) \& \ep{Script: Gran} \ep{Script=Grantha} (85) \& \ep{Script: Grantha} (Short: \ep{Sc=Gran}) (85: U+11300..11303, \& U+11305..1130C, U+1130F..11310, \& U+11313..11328, U+1132A..11330, \& U+11332..11333 ...) \& \ep{Script: Greek} (Short: \ep{Sc=Grek}) (518: U+0370..0373, \& U+0375..0377, U+037A..037D, U+037F, \& U+0384, U+0386 ...) \& \ep{Script: Grek} \ep{Script=Greek} (518) \& \ep{Script: Gujarati} (Short: \ep{Sc=Gujr}) (91: U+0A81..0A83, \& U+0A85..0A8D, U+0A8F..0A91, \& U+0A93..0AA8, U+0AAA..0AB0, U+0AB2..0AB3 \& ...) \& \ep{Script: Gujr} \ep{Script=Gujarati} (91) \& \ep{Script: Gunjala_Gondi} (Short: \ep{Sc=Gong}) (63: \& U+11D60..11D65, U+11D67..11D68, \& U+11D6A..11D8E, U+11D90..11D91, \& U+11D93..11D98, U+11DA0..11DA9) \& \ep{Script: Gurmukhi} (Short: \ep{Sc=Guru}) (80: U+0A01..0A03, \& U+0A05..0A0A, U+0A0F..0A10, \& U+0A13..0A28, U+0A2A..0A30, U+0A32..0A33 \& ...) \& \ep{Script: Guru} \ep{Script=Gurmukhi} (80) \& \ep{Script: Han} (Short: \ep{Sc=Han}) (94_215: U+2E80..2E99, \& U+2E9B..2EF3, U+2F00..2FD5, U+3005, \& U+3007, U+3021..3029 ...) \& \ep{Script: Hang} \ep{Script=Hangul} (11_739) \& \ep{Script: Hangul} (Short: \ep{Sc=Hang}) (11_739: \& U+1100..11FF, U+302E..302F, \& U+3131..318E, U+3200..321E, \& U+3260..327E, U+A960..A97C ...) \& \ep{Script: Hani} \ep{Script=Han} (94_215) \& \ep{Script: Hanifi_Rohingya} (Short: \ep{Sc=Rohg}) (50: \& U+10D00..10D27, U+10D30..10D39) \& \ep{Script: Hano} \ep{Script=Hanunoo} (21) \& \ep{Script: Hanunoo} (Short: \ep{Sc=Hano}) (21: U+1720..1734) \& \ep{Script: Hatr} \ep{Script=Hatran} (= \ep{Script_Extensions= \& Hatran}) (26) \& \ep{Script: Hatran} \ep{Script_Extensions=Hatran} (Short: \& \ep{Sc=Hatr}, \ep{Hatr}) (26) \& \ep{Script: Hebr} \ep{Script=Hebrew} (= \ep{Script_Extensions= \& Hebrew}) (134) \& \ep{Script: Hebrew} \ep{Script_Extensions=Hebrew} (Short: \& \ep{Sc=Hebr}, \ep{Hebr}) (134) \& \ep{Script: Hira} \ep{Script=Hiragana} (380) \& \ep{Script: Hiragana} (Short: \ep{Sc=Hira}) (380: U+3041..3096, \& U+309D..309F, U+1B001..1B11F, \& U+1B150..1B152, U+1F200) \& \ep{Script: Hluw} \ep{Script=Anatolian_Hieroglyphs} (= \& \ep{Script_Extensions= \& Anatolian_Hieroglyphs}) (583) \& \ep{Script: Hmng} \ep{Script=Pahawh_Hmong} (= \& \ep{Script_Extensions=Pahawh_Hmong}) (127) \& \ep{Script: Hmnp} \ep{Script=Nyiakeng_Puachue_Hmong} (= \& \ep{Script_Extensions= \& Nyiakeng_Puachue_Hmong}) (71) \& \ep{Script: Hung} \ep{Script=Old_Hungarian} (= \& \ep{Script_Extensions=Old_Hungarian}) \& (108) \& \ep{Script: Imperial_Aramaic} \ep{Script_Extensions= \& Imperial_Aramaic} (Short: \ep{Sc=Armi}, \& \ep{Armi}) (31) \& \ep{Script: Inherited} (Short: \ep{Sc=Zinh}) (657: U+0300..036F, \& U+0485..0486, U+064B..0655, U+0670, \& U+0951..0954, U+1AB0..1ACE ...) \& \ep{Script: Inscriptional_Pahlavi} \ep{Script_Extensions= \& Inscriptional_Pahlavi} (Short: \ep{Sc= \& Phli}, \ep{Phli}) (27) \& \ep{Script: Inscriptional_Parthian} \ep{Script_Extensions= \& Inscriptional_Parthian} (Short: \ep{Sc= \& Prti}, \ep{Prti}) (30) \& \ep{Script: Ital} \ep{Script=Old_Italic} (= \& \ep{Script_Extensions=Old_Italic}) (39) \& \ep{Script: Java} \ep{Script=Javanese} (90) \& \ep{Script: Javanese} (Short: \ep{Sc=Java}) (90: U+A980..A9CD, \& U+A9D0..A9D9, U+A9DE..A9DF) \& \ep{Script: Kaithi} (Short: \ep{Sc=Kthi}) (68: U+11080..110C2, \& U+110CD) \& \ep{Script: Kali} \ep{Script=Kayah_Li} (47) \& \ep{Script: Kana} \ep{Script=Katakana} (320) \& \ep{Script: Kannada} (Short: \ep{Sc=Knda}) (90: U+0C80..0C8C, \& U+0C8E..0C90, U+0C92..0CA8, \& U+0CAA..0CB3, U+0CB5..0CB9, U+0CBC..0CC4 \& ...) \& \ep{Script: Katakana} (Short: \ep{Sc=Kana}) (320: U+30A1..30FA, \& U+30FD..30FF, U+31F0..31FF, \& U+32D0..32FE, U+3300..3357, U+FF66..FF6F \& ...) \& \ep{Script: Kayah_Li} (Short: \ep{Sc=Kali}) (47: U+A900..A92D, \& U+A92F) \& \ep{Script: Khar} \ep{Script=Kharoshthi} (= \& \ep{Script_Extensions=Kharoshthi}) (68) \& \ep{Script: Kharoshthi} \ep{Script_Extensions=Kharoshthi} (Short: \& \ep{Sc=Khar}, \ep{Khar}) (68) \& \ep{Script: Khitan_Small_Script} \ep{Script_Extensions= \& Khitan_Small_Script} (Short: \ep{Sc= \& Kits}, \ep{Kits}) (471) \& \ep{Script: Khmer} \ep{Script_Extensions=Khmer} (Short: \ep{Sc= \& Khmr}, \ep{Khmr}) (146) \& \ep{Script: Khmr} \ep{Script=Khmer} (= \ep{Script_Extensions= \& Khmer}) (146) \& \ep{Script: Khoj} \ep{Script=Khojki} (62) \& \ep{Script: Khojki} (Short: \ep{Sc=Khoj}) (62: U+11200..11211, \& U+11213..1123E) \& \ep{Script: Khudawadi} (Short: \ep{Sc=Sind}) (69: U+112B0..112EA, \& U+112F0..112F9) \& \ep{Script: Kits} \ep{Script=Khitan_Small_Script} (= \& \ep{Script_Extensions= \& Khitan_Small_Script}) (471) \& \ep{Script: Knda} \ep{Script=Kannada} (90) \& \ep{Script: Kthi} \ep{Script=Kaithi} (68) \& \ep{Script: Lana} \ep{Script=Tai_Tham} (= \& \ep{Script_Extensions=Tai_Tham}) (127) \& \ep{Script: Lao} \ep{Script_Extensions=Lao} (Short: \ep{Sc= \& Lao}, \ep{Lao}) (82) \& \ep{Script: Laoo} \ep{Script=Lao} (= \ep{Script_Extensions= \& Lao}) (82) \& \ep{Script: Latin} (Short: \ep{Sc=Latn}) (1475: [A\-Za\-z\exaa \& \exba\exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+0100..02B8, U+02E0..02E4, \& U+1D00..1D25, U+1D2C..1D5C, U+1D62..1D65 \& ...) \& \ep{Script: Latn} \ep{Script=Latin} (1475) \& \ep{Script: Lepc} \ep{Script=Lepcha} (= \ep{Script_Extensions= \& Lepcha}) (74) \& \ep{Script: Lepcha} \ep{Script_Extensions=Lepcha} (Short: \& \ep{Sc=Lepc}, \ep{Lepc}) (74) \& \ep{Script: Limb} \ep{Script=Limbu} (68) \& \ep{Script: Limbu} (Short: \ep{Sc=Limb}) (68: U+1900..191E, \& U+1920..192B, U+1930..193B, U+1940, \& U+1944..194F) \& \ep{Script: Lina} \ep{Script=Linear_A} (341) \& \ep{Script: Linb} \ep{Script=Linear_B} (211) \& \ep{Script: Linear_A} (Short: \ep{Sc=Lina}) (341: U+10600..10736, \& U+10740..10755, U+10760..10767) \& \ep{Script: Linear_B} (Short: \ep{Sc=Linb}) (211: U+10000..1000B, \& U+1000D..10026, U+10028..1003A, \& U+1003C..1003D, U+1003F..1004D, \& U+10050..1005D ...) \& \ep{Script: Lisu} \ep{Script_Extensions=Lisu} (Short: \ep{Sc= \& Lisu}, \ep{Lisu}) (49) \& \ep{Script: Lyci} \ep{Script=Lycian} (= \ep{Script_Extensions= \& Lycian}) (29) \& \ep{Script: Lycian} \ep{Script_Extensions=Lycian} (Short: \& \ep{Sc=Lyci}, \ep{Lyci}) (29) \& \ep{Script: Lydi} \ep{Script=Lydian} (= \ep{Script_Extensions= \& Lydian}) (27) \& \ep{Script: Lydian} \ep{Script_Extensions=Lydian} (Short: \& \ep{Sc=Lydi}, \ep{Lydi}) (27) \& \ep{Script: Mahajani} (Short: \ep{Sc=Mahj}) (39: U+11150..11176) \& \ep{Script: Mahj} \ep{Script=Mahajani} (39) \& \ep{Script: Maka} \ep{Script=Makasar} (= \& \ep{Script_Extensions=Makasar}) (25) \& \ep{Script: Makasar} \ep{Script_Extensions=Makasar} (Short: \& \ep{Sc=Maka}, \ep{Maka}) (25) \& \ep{Script: Malayalam} (Short: \ep{Sc=Mlym}) (118: U+0D00..0D0C, \& U+0D0E..0D10, U+0D12..0D44, \& U+0D46..0D48, U+0D4A..0D4F, U+0D54..0D63 \& ...) \& \ep{Script: Mand} \ep{Script=Mandaic} (29) \& \ep{Script: Mandaic} (Short: \ep{Sc=Mand}) (29: U+0840..085B, \& U+085E) \& \ep{Script: Mani} \ep{Script=Manichaean} (51) \& \ep{Script: Manichaean} (Short: \ep{Sc=Mani}) (51: U+10AC0..10AE6, \& U+10AEB..10AF6) \& \ep{Script: Marc} \ep{Script=Marchen} (= \& \ep{Script_Extensions=Marchen}) (68) \& \ep{Script: Marchen} \ep{Script_Extensions=Marchen} (Short: \& \ep{Sc=Marc}, \ep{Marc}) (68) \& \ep{Script: Masaram_Gondi} (Short: \ep{Sc=Gonm}) (75: \& U+11D00..11D06, U+11D08..11D09, \& U+11D0B..11D36, U+11D3A, U+11D3C..11D3D, \& U+11D3F..11D47 ...) \& \ep{Script: Medefaidrin} \ep{Script_Extensions=Medefaidrin} (Short: \& \ep{Sc=Medf}, \ep{Medf}) (91) \& \ep{Script: Medf} \ep{Script=Medefaidrin} (= \& \ep{Script_Extensions=Medefaidrin}) (91) \& \ep{Script: Meetei_Mayek} \ep{Script_Extensions=Meetei_Mayek} \& (Short: \ep{Sc=Mtei}, \ep{Mtei}) (79) \& \ep{Script: Mend} \ep{Script=Mende_Kikakui} (= \& \ep{Script_Extensions=Mende_Kikakui}) \& (213) \& \ep{Script: Mende_Kikakui} \ep{Script_Extensions=Mende_Kikakui} \& (Short: \ep{Sc=Mend}, \ep{Mend}) (213) \& \ep{Script: Merc} \ep{Script=Meroitic_Cursive} (= \& \ep{Script_Extensions=Meroitic_Cursive}) \& (90) \& \ep{Script: Mero} \ep{Script=Meroitic_Hieroglyphs} (= \& \ep{Script_Extensions= \& Meroitic_Hieroglyphs}) (32) \& \ep{Script: Meroitic_Cursive} \ep{Script_Extensions= \& Meroitic_Cursive} (Short: \ep{Sc=Merc}, \& \ep{Merc}) (90) \& \ep{Script: Meroitic_Hieroglyphs} \ep{Script_Extensions= \& Meroitic_Hieroglyphs} (Short: \ep{Sc= \& Mero}, \ep{Mero}) (32) \& \ep{Script: Miao} \ep{Script_Extensions=Miao} (Short: \ep{Sc= \& Miao}, \ep{Miao}) (149) \& \ep{Script: Mlym} \ep{Script=Malayalam} (118) \& \ep{Script: Modi} (Short: \ep{Sc=Modi}) (79: U+11600..11644, \& U+11650..11659) \& \ep{Script: Mong} \ep{Script=Mongolian} (168) \& \ep{Script: Mongolian} (Short: \ep{Sc=Mong}) (168: U+1800..1801, \& U+1804, U+1806..1819, U+1820..1878, \& U+1880..18AA, U+11660..1166C) \& \ep{Script: Mro} \ep{Script_Extensions=Mro} (Short: \ep{Sc= \& Mro}, \ep{Mro}) (43) \& \ep{Script: Mroo} \ep{Script=Mro} (= \ep{Script_Extensions= \& Mro}) (43) \& \ep{Script: Mtei} \ep{Script=Meetei_Mayek} (= \& \ep{Script_Extensions=Meetei_Mayek}) (79) \& \ep{Script: Mult} \ep{Script=Multani} (38) \& \ep{Script: Multani} (Short: \ep{Sc=Mult}) (38: U+11280..11286, \& U+11288, U+1128A..1128D, U+1128F..1129D, \& U+1129F..112A9) \& \ep{Script: Myanmar} (Short: \ep{Sc=Mymr}) (223: U+1000..109F, \& U+A9E0..A9FE, U+AA60..AA7F) \& \ep{Script: Mymr} \ep{Script=Myanmar} (223) \& \ep{Script: Nabataean} \ep{Script_Extensions=Nabataean} (Short: \& \ep{Sc=Nbat}, \ep{Nbat}) (40) \& \ep{Script: Nand} \ep{Script=Nandinagari} (65) \& \ep{Script: Nandinagari} (Short: \ep{Sc=Nand}) (65: U+119A0..119A7, \& U+119AA..119D7, U+119DA..119E4) \& \ep{Script: Narb} \ep{Script=Old_North_Arabian} (= \& \ep{Script_Extensions=Old_North_Arabian}) \& (32) \& \ep{Script: Nbat} \ep{Script=Nabataean} (= \& \ep{Script_Extensions=Nabataean}) (40) \& \ep{Script: New_Tai_Lue} \ep{Script_Extensions=New_Tai_Lue} (Short: \& \ep{Sc=Talu}, \ep{Talu}) (83) \& \ep{Script: Newa} \ep{Script_Extensions=Newa} (Short: \ep{Sc= \& Newa}, \ep{Newa}) (97) \& \ep{Script: Nko} (Short: \ep{Sc=Nko}) (62: U+07C0..07FA, \& U+07FD..07FF) \& \ep{Script: Nkoo} \ep{Script=Nko} (62) \& \ep{Script: Nshu} \ep{Script=Nushu} (= \ep{Script_Extensions= \& Nushu}) (397) \& \ep{Script: Nushu} \ep{Script_Extensions=Nushu} (Short: \ep{Sc= \& Nshu}, \ep{Nshu}) (397) \& \ep{Script: Nyiakeng_Puachue_Hmong} \ep{Script_Extensions= \& Nyiakeng_Puachue_Hmong} (Short: \ep{Sc= \& Hmnp}, \ep{Hmnp}) (71) \& \ep{Script: Ogam} \ep{Script=Ogham} (= \ep{Script_Extensions= \& Ogham}) (29) \& \ep{Script: Ogham} \ep{Script_Extensions=Ogham} (Short: \ep{Sc= \& Ogam}, \ep{Ogam}) (29) \& \ep{Script: Ol_Chiki} \ep{Script_Extensions=Ol_Chiki} (Short: \& \ep{Sc=Olck}, \ep{Olck}) (48) \& \ep{Script: Olck} \ep{Script=Ol_Chiki} (= \& \ep{Script_Extensions=Ol_Chiki}) (48) \& \ep{Script: Old_Hungarian} \ep{Script_Extensions=Old_Hungarian} \& (Short: \ep{Sc=Hung}, \ep{Hung}) (108) \& \ep{Script: Old_Italic} \ep{Script_Extensions=Old_Italic} (Short: \& \ep{Sc=Ital}, \ep{Ital}) (39) \& \ep{Script: Old_North_Arabian} \ep{Script_Extensions= \& Old_North_Arabian} (Short: \ep{Sc=Narb}, \& \ep{Narb}) (32) \& \ep{Script: Old_Permic} (Short: \ep{Sc=Perm}) (43: U+10350..1037A) \& \ep{Script: Old_Persian} \ep{Script_Extensions=Old_Persian} (Short: \& \ep{Sc=Xpeo}, \ep{Xpeo}) (50) \& \ep{Script: Old_Sogdian} \ep{Script_Extensions=Old_Sogdian} (Short: \& \ep{Sc=Sogo}, \ep{Sogo}) (40) \& \ep{Script: Old_South_Arabian} \ep{Script_Extensions= \& Old_South_Arabian} (Short: \ep{Sc=Sarb}, \& \ep{Sarb}) (32) \& \ep{Script: Old_Turkic} \ep{Script_Extensions=Old_Turkic} (Short: \& \ep{Sc=Orkh}, \ep{Orkh}) (73) \& \ep{Script: Old_Uyghur} (Short: \ep{Sc=Ougr}) (26: U+10F70..10F89) \& \ep{Script: Oriya} (Short: \ep{Sc=Orya}) (91: U+0B01..0B03, \& U+0B05..0B0C, U+0B0F..0B10, \& U+0B13..0B28, U+0B2A..0B30, U+0B32..0B33 \& ...) \& \ep{Script: Orkh} \ep{Script=Old_Turkic} (= \& \ep{Script_Extensions=Old_Turkic}) (73) \& \ep{Script: Orya} \ep{Script=Oriya} (91) \& \ep{Script: Osage} \ep{Script_Extensions=Osage} (Short: \ep{Sc= \& Osge}, \ep{Osge}) (72) \& \ep{Script: Osge} \ep{Script=Osage} (= \ep{Script_Extensions= \& Osage}) (72) \& \ep{Script: Osma} \ep{Script=Osmanya} (= \& \ep{Script_Extensions=Osmanya}) (40) \& \ep{Script: Osmanya} \ep{Script_Extensions=Osmanya} (Short: \& \ep{Sc=Osma}, \ep{Osma}) (40) \& \ep{Script: Ougr} \ep{Script=Old_Uyghur} (26) \& \ep{Script: Pahawh_Hmong} \ep{Script_Extensions=Pahawh_Hmong} \& (Short: \ep{Sc=Hmng}, \ep{Hmng}) (127) \& \ep{Script: Palm} \ep{Script=Palmyrene} (= \& \ep{Script_Extensions=Palmyrene}) (32) \& \ep{Script: Palmyrene} \ep{Script_Extensions=Palmyrene} (Short: \& \ep{Sc=Palm}, \ep{Palm}) (32) \& \ep{Script: Pau_Cin_Hau} \ep{Script_Extensions=Pau_Cin_Hau} (Short: \& \ep{Sc=Pauc}, \ep{Pauc}) (57) \& \ep{Script: Pauc} \ep{Script=Pau_Cin_Hau} (= \& \ep{Script_Extensions=Pau_Cin_Hau}) (57) \& \ep{Script: Perm} \ep{Script=Old_Permic} (43) \& \ep{Script: Phag} \ep{Script=Phags_Pa} (56) \& \ep{Script: Phags_Pa} (Short: \ep{Sc=Phag}) (56: U+A840..A877) \& \ep{Script: Phli} \ep{Script=Inscriptional_Pahlavi} (= \& \ep{Script_Extensions= \& Inscriptional_Pahlavi}) (27) \& \ep{Script: Phlp} \ep{Script=Psalter_Pahlavi} (29) \& \ep{Script: Phnx} \ep{Script=Phoenician} (= \& \ep{Script_Extensions=Phoenician}) (29) \& \ep{Script: Phoenician} \ep{Script_Extensions=Phoenician} (Short: \& \ep{Sc=Phnx}, \ep{Phnx}) (29) \& \ep{Script: Plrd} \ep{Script=Miao} (= \ep{Script_Extensions= \& Miao}) (149) \& \ep{Script: Prti} \ep{Script=Inscriptional_Parthian} (= \& \ep{Script_Extensions= \& Inscriptional_Parthian}) (30) \& \ep{Script: Psalter_Pahlavi} (Short: \ep{Sc=Phlp}) (29: \& U+10B80..10B91, U+10B99..10B9C, \& U+10BA9..10BAF) \& \ep{Script: Qaac} \ep{Script=Coptic} (137) \& \ep{Script: Qaai} \ep{Script=Inherited} (657) \& \ep{Script: Rejang} \ep{Script_Extensions=Rejang} (Short: \& \ep{Sc=Rjng}, \ep{Rjng}) (37) \& \ep{Script: Rjng} \ep{Script=Rejang} (= \ep{Script_Extensions= \& Rejang}) (37) \& \ep{Script: Rohg} \ep{Script=Hanifi_Rohingya} (50) \& \ep{Script: Runic} \ep{Script_Extensions=Runic} (Short: \ep{Sc= \& Runr}, \ep{Runr}) (86) \& \ep{Script: Runr} \ep{Script=Runic} (= \ep{Script_Extensions= \& Runic}) (86) \& \ep{Script: Samaritan} \ep{Script_Extensions=Samaritan} (Short: \& \ep{Sc=Samr}, \ep{Samr}) (61) \& \ep{Script: Samr} \ep{Script=Samaritan} (= \& \ep{Script_Extensions=Samaritan}) (61) \& \ep{Script: Sarb} \ep{Script=Old_South_Arabian} (= \& \ep{Script_Extensions=Old_South_Arabian}) \& (32) \& \ep{Script: Saur} \ep{Script=Saurashtra} (= \& \ep{Script_Extensions=Saurashtra}) (82) \& \ep{Script: Saurashtra} \ep{Script_Extensions=Saurashtra} (Short: \& \ep{Sc=Saur}, \ep{Saur}) (82) \& \ep{Script: Sgnw} \ep{Script=SignWriting} (= \& \ep{Script_Extensions=SignWriting}) (672) \& \ep{Script: Sharada} (Short: \ep{Sc=Shrd}) (96: U+11180..111DF) \& \ep{Script: Shavian} \ep{Script_Extensions=Shavian} (Short: \& \ep{Sc=Shaw}, \ep{Shaw}) (48) \& \ep{Script: Shaw} \ep{Script=Shavian} (= \& \ep{Script_Extensions=Shavian}) (48) \& \ep{Script: Shrd} \ep{Script=Sharada} (96) \& \ep{Script: Sidd} \ep{Script=Siddham} (= \& \ep{Script_Extensions=Siddham}) (92) \& \ep{Script: Siddham} \ep{Script_Extensions=Siddham} (Short: \& \ep{Sc=Sidd}, \ep{Sidd}) (92) \& \ep{Script: SignWriting} \ep{Script_Extensions=SignWriting} (Short: \& \ep{Sc=Sgnw}, \ep{Sgnw}) (672) \& \ep{Script: Sind} \ep{Script=Khudawadi} (69) \& \ep{Script: Sinh} \ep{Script=Sinhala} (111) \& \ep{Script: Sinhala} (Short: \ep{Sc=Sinh}) (111: U+0D81..0D83, \& U+0D85..0D96, U+0D9A..0DB1, \& U+0DB3..0DBB, U+0DBD, U+0DC0..0DC6 ...) \& \ep{Script: Sogd} \ep{Script=Sogdian} (42) \& \ep{Script: Sogdian} (Short: \ep{Sc=Sogd}) (42: U+10F30..10F59) \& \ep{Script: Sogo} \ep{Script=Old_Sogdian} (= \& \ep{Script_Extensions=Old_Sogdian}) (40) \& \ep{Script: Sora} \ep{Script=Sora_Sompeng} (= \& \ep{Script_Extensions=Sora_Sompeng}) (35) \& \ep{Script: Sora_Sompeng} \ep{Script_Extensions=Sora_Sompeng} \& (Short: \ep{Sc=Sora}, \ep{Sora}) (35) \& \ep{Script: Soyo} \ep{Script=Soyombo} (= \& \ep{Script_Extensions=Soyombo}) (83) \& \ep{Script: Soyombo} \ep{Script_Extensions=Soyombo} (Short: \& \ep{Sc=Soyo}, \ep{Soyo}) (83) \& \ep{Script: Sund} \ep{Script=Sundanese} (= \& \ep{Script_Extensions=Sundanese}) (72) \& \ep{Script: Sundanese} \ep{Script_Extensions=Sundanese} (Short: \& \ep{Sc=Sund}, \ep{Sund}) (72) \& \ep{Script: Sylo} \ep{Script=Syloti_Nagri} (45) \& \ep{Script: Syloti_Nagri} (Short: \ep{Sc=Sylo}) (45: U+A800..A82C) \& \ep{Script: Syrc} \ep{Script=Syriac} (88) \& \ep{Script: Syriac} (Short: \ep{Sc=Syrc}) (88: U+0700..070D, \& U+070F..074A, U+074D..074F, U+0860..086A) \& \ep{Script: Tagalog} (Short: \ep{Sc=Tglg}) (23: U+1700..1715, \& U+171F) \& \ep{Script: Tagb} \ep{Script=Tagbanwa} (18) \& \ep{Script: Tagbanwa} (Short: \ep{Sc=Tagb}) (18: U+1760..176C, \& U+176E..1770, U+1772..1773) \& \ep{Script: Tai_Le} (Short: \ep{Sc=Tale}) (35: U+1950..196D, \& U+1970..1974) \& \ep{Script: Tai_Tham} \ep{Script_Extensions=Tai_Tham} (Short: \& \ep{Sc=Lana}, \ep{Lana}) (127) \& \ep{Script: Tai_Viet} \ep{Script_Extensions=Tai_Viet} (Short: \& \ep{Sc=Tavt}, \ep{Tavt}) (72) \& \ep{Script: Takr} \ep{Script=Takri} (68) \& \ep{Script: Takri} (Short: \ep{Sc=Takr}) (68: U+11680..116B9, \& U+116C0..116C9) \& \ep{Script: Tale} \ep{Script=Tai_Le} (35) \& \ep{Script: Talu} \ep{Script=New_Tai_Lue} (= \& \ep{Script_Extensions=New_Tai_Lue}) (83) \& \ep{Script: Tamil} (Short: \ep{Sc=Taml}) (123: U+0B82..0B83, \& U+0B85..0B8A, U+0B8E..0B90, \& U+0B92..0B95, U+0B99..0B9A, U+0B9C ...) \& \ep{Script: Taml} \ep{Script=Tamil} (123) \& \ep{Script: Tang} \ep{Script=Tangut} (= \ep{Script_Extensions= \& Tangut}) (6914) \& \ep{Script: Tangsa} \ep{Script_Extensions=Tangsa} (Short: \& \ep{Sc=Tnsa}, \ep{Tnsa}) (89) \& \ep{Script: Tangut} \ep{Script_Extensions=Tangut} (Short: \& \ep{Sc=Tang}, \ep{Tang}) (6914) \& \ep{Script: Tavt} \ep{Script=Tai_Viet} (= \& \ep{Script_Extensions=Tai_Viet}) (72) \& \ep{Script: Telu} \ep{Script=Telugu} (100) \& \ep{Script: Telugu} (Short: \ep{Sc=Telu}) (100: U+0C00..0C0C, \& U+0C0E..0C10, U+0C12..0C28, \& U+0C2A..0C39, U+0C3C..0C44, U+0C46..0C48 \& ...) \& \ep{Script: Tfng} \ep{Script=Tifinagh} (= \& \ep{Script_Extensions=Tifinagh}) (59) \& \ep{Script: Tglg} \ep{Script=Tagalog} (23) \& \ep{Script: Thaa} \ep{Script=Thaana} (50) \& \ep{Script: Thaana} (Short: \ep{Sc=Thaa}) (50: U+0780..07B1) \& \ep{Script: Thai} \ep{Script_Extensions=Thai} (Short: \ep{Sc= \& Thai}, \ep{Thai}) (86) \& \ep{Script: Tibetan} \ep{Script_Extensions=Tibetan} (Short: \& \ep{Sc=Tibt}, \ep{Tibt}) (207) \& \ep{Script: Tibt} \ep{Script=Tibetan} (= \& \ep{Script_Extensions=Tibetan}) (207) \& \ep{Script: Tifinagh} \ep{Script_Extensions=Tifinagh} (Short: \& \ep{Sc=Tfng}, \ep{Tfng}) (59) \& \ep{Script: Tirh} \ep{Script=Tirhuta} (82) \& \ep{Script: Tirhuta} (Short: \ep{Sc=Tirh}) (82: U+11480..114C7, \& U+114D0..114D9) \& \ep{Script: Tnsa} \ep{Script=Tangsa} (= \ep{Script_Extensions= \& Tangsa}) (89) \& \ep{Script: Toto} \ep{Script_Extensions=Toto} (Short: \ep{Sc= \& Toto}, \ep{Toto}) (31) \& \ep{Script: Ugar} \ep{Script=Ugaritic} (= \& \ep{Script_Extensions=Ugaritic}) (31) \& \ep{Script: Ugaritic} \ep{Script_Extensions=Ugaritic} (Short: \& \ep{Sc=Ugar}, \ep{Ugar}) (31) \& \ep{Script: Unknown} \ep{Script_Extensions=Unknown} (Short: \& \ep{Sc=Zzzz}, \ep{Zzzz}) (969_350 plus all \& above\-Unicode code points) \& \ep{Script: Vai} \ep{Script_Extensions=Vai} (Short: \ep{Sc= \& Vai}, \ep{Vai}) (300) \& \ep{Script: Vaii} \ep{Script=Vai} (= \ep{Script_Extensions= \& Vai}) (300) \& \ep{Script: Vith} \ep{Script=Vithkuqi} (= \& \ep{Script_Extensions=Vithkuqi}) (70) \& \ep{Script: Vithkuqi} \ep{Script_Extensions=Vithkuqi} (Short: \& \ep{Sc=Vith}, \ep{Vith}) (70) \& \ep{Script: Wancho} \ep{Script_Extensions=Wancho} (Short: \& \ep{Sc=Wcho}, \ep{Wcho}) (59) \& \ep{Script: Wara} \ep{Script=Warang_Citi} (= \& \ep{Script_Extensions=Warang_Citi}) (84) \& \ep{Script: Warang_Citi} \ep{Script_Extensions=Warang_Citi} (Short: \& \ep{Sc=Wara}, \ep{Wara}) (84) \& \ep{Script: Wcho} \ep{Script=Wancho} (= \ep{Script_Extensions= \& Wancho}) (59) \& \ep{Script: Xpeo} \ep{Script=Old_Persian} (= \& \ep{Script_Extensions=Old_Persian}) (50) \& \ep{Script: Xsux} \ep{Script=Cuneiform} (= \& \ep{Script_Extensions=Cuneiform}) (1234) \& \ep{Script: Yezi} \ep{Script=Yezidi} (47) \& \ep{Script: Yezidi} (Short: \ep{Sc=Yezi}) (47: U+10E80..10EA9, \& U+10EAB..10EAD, U+10EB0..10EB1) \& \ep{Script: Yi} (Short: \ep{Sc=Yi}) (1220: U+A000..A48C, \& U+A490..A4C6) \& \ep{Script: Yiii} \ep{Script=Yi} (1220) \& \ep{Script: Zanabazar_Square} \ep{Script_Extensions= \& Zanabazar_Square} (Short: \ep{Sc=Zanb}, \& \ep{Zanb}) (72) \& \ep{Script: Zanb} \ep{Script=Zanabazar_Square} (= \& \ep{Script_Extensions=Zanabazar_Square}) \& (72) \& \ep{Script: Zinh} \ep{Script=Inherited} (657) \& \ep{Script: Zyyy} \ep{Script=Common} (8252) \& \ep{Script: Zzzz} \ep{Script=Unknown} (= \& \ep{Script_Extensions=Unknown}) (969_350 \& plus all above\-Unicode code points) \& \ep{Script_Extensions: Adlam} (Short: \ep{Scx=Adlm}, \ep{Adlm}) (90: \& U+061F, U+0640, U+1E900..1E94B, \& U+1E950..1E959, U+1E95E..1E95F) \& \ep{Script_Extensions: Adlm} \ep{Script_Extensions=Adlam} (90) \& \ep{Script_Extensions: Aghb} \ep{Script_Extensions= \& Caucasian_Albanian} (53) \& \ep{Script_Extensions: Ahom} (Short: \ep{Scx=Ahom}, \ep{Ahom}) (65: \& U+11700..1171A, U+1171D..1172B, \& U+11730..11746) \& \ep{Script_Extensions: Anatolian_Hieroglyphs} (Short: \ep{Scx=Hluw}, \& \ep{Hluw}) (583: U+14400..14646) \& \ep{Script_Extensions: Arab} \ep{Script_Extensions=Arabic} (1411) \& \ep{Script_Extensions: Arabic} (Short: \ep{Scx=Arab}, \ep{Arab}) \& (1411: U+0600..0604, U+0606..06DC, \& U+06DE..06FF, U+0750..077F, \& U+0870..088E, U+0890..0891 ...) \& \ep{Script_Extensions: Armenian} (Short: \ep{Scx=Armn}, \ep{Armn}) \& (96: U+0531..0556, U+0559..058A, \& U+058D..058F, U+FB13..FB17) \& \ep{Script_Extensions: Armi} \ep{Script_Extensions=Imperial_Aramaic} \& (31) \& \ep{Script_Extensions: Armn} \ep{Script_Extensions=Armenian} (96) \& \ep{Script_Extensions: Avestan} (Short: \ep{Scx=Avst}, \ep{Avst}) \& (61: U+10B00..10B35, U+10B39..10B3F) \& \ep{Script_Extensions: Avst} \ep{Script_Extensions=Avestan} (61) \& \ep{Script_Extensions: Bali} \ep{Script_Extensions=Balinese} (124) \& \ep{Script_Extensions: Balinese} (Short: \ep{Scx=Bali}, \ep{Bali}) \& (124: U+1B00..1B4C, U+1B50..1B7E) \& \ep{Script_Extensions: Bamu} \ep{Script_Extensions=Bamum} (657) \& \ep{Script_Extensions: Bamum} (Short: \ep{Scx=Bamu}, \ep{Bamu}) (657: \& U+A6A0..A6F7, U+16800..16A38) \& \ep{Script_Extensions: Bass} \ep{Script_Extensions=Bassa_Vah} (36) \& \ep{Script_Extensions: Bassa_Vah} (Short: \ep{Scx=Bass}, \ep{Bass}) \& (36: U+16AD0..16AED, U+16AF0..16AF5) \& \ep{Script_Extensions: Batak} (Short: \ep{Scx=Batk}, \ep{Batk}) (56: \& U+1BC0..1BF3, U+1BFC..1BFF) \& \ep{Script_Extensions: Batk} \ep{Script_Extensions=Batak} (56) \& \ep{Script_Extensions: Beng} \ep{Script_Extensions=Bengali} (113) \& \ep{Script_Extensions: Bengali} (Short: \ep{Scx=Beng}, \ep{Beng}) \& (113: U+0951..0952, U+0964..0965, \& U+0980..0983, U+0985..098C, \& U+098F..0990, U+0993..09A8 ...) \& \ep{Script_Extensions: Bhaiksuki} (Short: \ep{Scx=Bhks}, \ep{Bhks}) \& (97: U+11C00..11C08, U+11C0A..11C36, \& U+11C38..11C45, U+11C50..11C6C) \& \ep{Script_Extensions: Bhks} \ep{Script_Extensions=Bhaiksuki} (97) \& \ep{Script_Extensions: Bopo} \ep{Script_Extensions=Bopomofo} (117) \& \ep{Script_Extensions: Bopomofo} (Short: \ep{Scx=Bopo}, \ep{Bopo}) \& (117: U+02EA..02EB, U+3001..3003, \& U+3008..3011, U+3013..301F, \& U+302A..302D, U+3030 ...) \& \ep{Script_Extensions: Brah} \ep{Script_Extensions=Brahmi} (115) \& \ep{Script_Extensions: Brahmi} (Short: \ep{Scx=Brah}, \ep{Brah}) \& (115: U+11000..1104D, U+11052..11075, \& U+1107F) \& \ep{Script_Extensions: Brai} \ep{Script_Extensions=Braille} (256) \& \ep{Script_Extensions: Braille} (Short: \ep{Scx=Brai}, \ep{Brai}) \& (256: U+2800..28FF) \& \ep{Script_Extensions: Bugi} \ep{Script_Extensions=Buginese} (31) \& \ep{Script_Extensions: Buginese} (Short: \ep{Scx=Bugi}, \ep{Bugi}) \& (31: U+1A00..1A1B, U+1A1E..1A1F, U+A9CF) \& \ep{Script_Extensions: Buhd} \ep{Script_Extensions=Buhid} (22) \& \ep{Script_Extensions: Buhid} (Short: \ep{Scx=Buhd}, \ep{Buhd}) (22: \& U+1735..1736, U+1740..1753) \& \ep{Script_Extensions: Cakm} \ep{Script_Extensions=Chakma} (91) \& \ep{Script_Extensions: Canadian_Aboriginal} (Short: \ep{Scx=Cans}, \& \ep{Cans}) (726: U+1400..167F, \& U+18B0..18F5, U+11AB0..11ABF) \& \ep{Script_Extensions: Cans} \ep{Script_Extensions= \& Canadian_Aboriginal} (726) \& \ep{Script_Extensions: Cari} \ep{Script_Extensions=Carian} (49) \& \ep{Script_Extensions: Carian} (Short: \ep{Scx=Cari}, \ep{Cari}) (49: \& U+102A0..102D0) \& \ep{Script_Extensions: Caucasian_Albanian} (Short: \ep{Scx=Aghb}, \& \ep{Aghb}) (53: U+10530..10563, U+1056F) \& \ep{Script_Extensions: Chakma} (Short: \ep{Scx=Cakm}, \ep{Cakm}) (91: \& U+09E6..09EF, U+1040..1049, \& U+11100..11134, U+11136..11147) \& \ep{Script_Extensions: Cham} (Short: \ep{Scx=Cham}, \ep{Cham}) (83: \& U+AA00..AA36, U+AA40..AA4D, \& U+AA50..AA59, U+AA5C..AA5F) \& \ep{Script_Extensions: Cher} \ep{Script_Extensions=Cherokee} (172) \& \ep{Script_Extensions: Cherokee} (Short: \ep{Scx=Cher}, \ep{Cher}) \& (172: U+13A0..13F5, U+13F8..13FD, \& U+AB70..ABBF) \& \ep{Script_Extensions: Chorasmian} (Short: \ep{Scx=Chrs}, \ep{Chrs}) \& (28: U+10FB0..10FCB) \& \ep{Script_Extensions: Chrs} \ep{Script_Extensions=Chorasmian} (28) \& \ep{Script_Extensions: Common} (Short: \ep{Scx=Zyyy}, \ep{Zyyy}) \& (7824: [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-. \& \e/0\-9:;<=>?\e@\e[\e\e\e]\e^_\`\e{\e|\e}~\ex7f\-\exa9 \& \exab\-\exb9\exbb\-\exbf\exd7\exf7], \& U+02B9..02DF, U+02E5..02E9, \& U+02EC..02FF, U+0374, U+037E ...) \& \ep{Script_Extensions: Copt} \ep{Script_Extensions=Coptic} (165) \& \ep{Script_Extensions: Coptic} (Short: \ep{Scx=Copt}, \ep{Copt}) \& (165: U+03E2..03EF, U+2C80..2CF3, \& U+2CF9..2CFF, U+102E0..102FB) \& \ep{Script_Extensions: Cpmn} \ep{Script_Extensions=Cypro_Minoan} \& (101) \& \ep{Script_Extensions: Cprt} \ep{Script_Extensions=Cypriot} (112) \& \ep{Script_Extensions: Cuneiform} (Short: \ep{Scx=Xsux}, \ep{Xsux}) \& (1234: U+12000..12399, U+12400..1246E, \& U+12470..12474, U+12480..12543) \& \ep{Script_Extensions: Cypriot} (Short: \ep{Scx=Cprt}, \ep{Cprt}) \& (112: U+10100..10102, U+10107..10133, \& U+10137..1013F, U+10800..10805, U+10808, \& U+1080A..10835 ...) \& \ep{Script_Extensions: Cypro_Minoan} (Short: \ep{Scx=Cpmn}, \& \ep{Cpmn}) (101: U+10100..10101, \& U+12F90..12FF2) \& \ep{Script_Extensions: Cyrillic} (Short: \ep{Scx=Cyrl}, \ep{Cyrl}) \& (447: U+0400..052F, U+1C80..1C88, \& U+1D2B, U+1D78, U+1DF8, U+2DE0..2DFF ...) \& \ep{Script_Extensions: Cyrl} \ep{Script_Extensions=Cyrillic} (447) \& \ep{Script_Extensions: Deseret} (Short: \ep{Scx=Dsrt}, \ep{Dsrt}) \& (80: U+10400..1044F) \& \ep{Script_Extensions: Deva} \ep{Script_Extensions=Devanagari} (210) \& \ep{Script_Extensions: Devanagari} (Short: \ep{Scx=Deva}, \ep{Deva}) \& (210: U+0900..0952, U+0955..097F, \& U+1CD0..1CF6, U+1CF8..1CF9, U+20F0, \& U+A830..A839 ...) \& \ep{Script_Extensions: Diak} \ep{Script_Extensions=Dives_Akuru} (72) \& \ep{Script_Extensions: Dives_Akuru} (Short: \ep{Scx=Diak}, \ep{Diak}) \& (72: U+11900..11906, U+11909, \& U+1190C..11913, U+11915..11916, \& U+11918..11935, U+11937..11938 ...) \& \ep{Script_Extensions: Dogr} \ep{Script_Extensions=Dogra} (82) \& \ep{Script_Extensions: Dogra} (Short: \ep{Scx=Dogr}, \ep{Dogr}) (82: \& U+0964..096F, U+A830..A839, \& U+11800..1183B) \& \ep{Script_Extensions: Dsrt} \ep{Script_Extensions=Deseret} (80) \& \ep{Script_Extensions: Dupl} \ep{Script_Extensions=Duployan} (147) \& \ep{Script_Extensions: Duployan} (Short: \ep{Scx=Dupl}, \ep{Dupl}) \& (147: U+1BC00..1BC6A, U+1BC70..1BC7C, \& U+1BC80..1BC88, U+1BC90..1BC99, \& U+1BC9C..1BCA3) \& \ep{Script_Extensions: Egyp} \ep{Script_Extensions= \& Egyptian_Hieroglyphs} (1080) \& \ep{Script_Extensions: Egyptian_Hieroglyphs} (Short: \ep{Scx=Egyp}, \& \ep{Egyp}) (1080: U+13000..1342E, \& U+13430..13438) \& \ep{Script_Extensions: Elba} \ep{Script_Extensions=Elbasan} (40) \& \ep{Script_Extensions: Elbasan} (Short: \ep{Scx=Elba}, \ep{Elba}) \& (40: U+10500..10527) \& \ep{Script_Extensions: Elym} \ep{Script_Extensions=Elymaic} (23) \& \ep{Script_Extensions: Elymaic} (Short: \ep{Scx=Elym}, \ep{Elym}) \& (23: U+10FE0..10FF6) \& \ep{Script_Extensions: Ethi} \ep{Script_Extensions=Ethiopic} (523) \& \ep{Script_Extensions: Ethiopic} (Short: \ep{Scx=Ethi}, \ep{Ethi}) \& (523: U+1200..1248, U+124A..124D, \& U+1250..1256, U+1258, U+125A..125D, \& U+1260..1288 ...) \& \ep{Script_Extensions: Geor} \ep{Script_Extensions=Georgian} (174) \& \ep{Script_Extensions: Georgian} (Short: \ep{Scx=Geor}, \ep{Geor}) \& (174: U+10A0..10C5, U+10C7, U+10CD, \& U+10D0..10FF, U+1C90..1CBA, U+1CBD..1CBF \& ...) \& \ep{Script_Extensions: Glag} \ep{Script_Extensions=Glagolitic} (138) \& \ep{Script_Extensions: Glagolitic} (Short: \ep{Scx=Glag}, \ep{Glag}) \& (138: U+0484, U+0487, U+2C00..2C5F, \& U+2E43, U+A66F, U+1E000..1E006 ...) \& \ep{Script_Extensions: Gong} \ep{Script_Extensions=Gunjala_Gondi} \& (65) \& \ep{Script_Extensions: Gonm} \ep{Script_Extensions=Masaram_Gondi} \& (77) \& \ep{Script_Extensions: Goth} \ep{Script_Extensions=Gothic} (27) \& \ep{Script_Extensions: Gothic} (Short: \ep{Scx=Goth}, \ep{Goth}) (27: \& U+10330..1034A) \& \ep{Script_Extensions: Gran} \ep{Script_Extensions=Grantha} (116) \& \ep{Script_Extensions: Grantha} (Short: \ep{Scx=Gran}, \ep{Gran}) \& (116: U+0951..0952, U+0964..0965, \& U+0BE6..0BF3, U+1CD0, U+1CD2..1CD3, \& U+1CF2..1CF4 ...) \& \ep{Script_Extensions: Greek} (Short: \ep{Scx=Grek}, \ep{Grek}) (522: \& U+0342, U+0345, U+0370..0373, \& U+0375..0377, U+037A..037D, U+037F ...) \& \ep{Script_Extensions: Grek} \ep{Script_Extensions=Greek} (522) \& \ep{Script_Extensions: Gujarati} (Short: \ep{Scx=Gujr}, \ep{Gujr}) \& (105: U+0951..0952, U+0964..0965, \& U+0A81..0A83, U+0A85..0A8D, \& U+0A8F..0A91, U+0A93..0AA8 ...) \& \ep{Script_Extensions: Gujr} \ep{Script_Extensions=Gujarati} (105) \& \ep{Script_Extensions: Gunjala_Gondi} (Short: \ep{Scx=Gong}, \& \ep{Gong}) (65: U+0964..0965, \& U+11D60..11D65, U+11D67..11D68, \& U+11D6A..11D8E, U+11D90..11D91, \& U+11D93..11D98 ...) \& \ep{Script_Extensions: Gurmukhi} (Short: \ep{Scx=Guru}, \ep{Guru}) \& (94: U+0951..0952, U+0964..0965, \& U+0A01..0A03, U+0A05..0A0A, \& U+0A0F..0A10, U+0A13..0A28 ...) \& \ep{Script_Extensions: Guru} \ep{Script_Extensions=Gurmukhi} (94) \& \ep{Script_Extensions: Han} (Short: \ep{Scx=Han}, \ep{Han}) (94_503: \& U+2E80..2E99, U+2E9B..2EF3, \& U+2F00..2FD5, U+3001..3003, \& U+3005..3011, U+3013..301F ...) \& \ep{Script_Extensions: Hang} \ep{Script_Extensions=Hangul} (11_775) \& \ep{Script_Extensions: Hangul} (Short: \ep{Scx=Hang}, \ep{Hang}) \& (11_775: U+1100..11FF, U+3001..3003, \& U+3008..3011, U+3013..301F, \& U+302E..3030, U+3037 ...) \& \ep{Script_Extensions: Hani} \ep{Script_Extensions=Han} (94_503) \& \ep{Script_Extensions: Hanifi_Rohingya} (Short: \ep{Scx=Rohg}, \& \ep{Rohg}) (55: U+060C, U+061B, U+061F, \& U+0640, U+06D4, U+10D00..10D27 ...) \& \ep{Script_Extensions: Hano} \ep{Script_Extensions=Hanunoo} (23) \& \ep{Script_Extensions: Hanunoo} (Short: \ep{Scx=Hano}, \ep{Hano}) \& (23: U+1720..1736) \& \ep{Script_Extensions: Hatr} \ep{Script_Extensions=Hatran} (26) \& \ep{Script_Extensions: Hatran} (Short: \ep{Scx=Hatr}, \ep{Hatr}) (26: \& U+108E0..108F2, U+108F4..108F5, \& U+108FB..108FF) \& \ep{Script_Extensions: Hebr} \ep{Script_Extensions=Hebrew} (134) \& \ep{Script_Extensions: Hebrew} (Short: \ep{Scx=Hebr}, \ep{Hebr}) \& (134: U+0591..05C7, U+05D0..05EA, \& U+05EF..05F4, U+FB1D..FB36, \& U+FB38..FB3C, U+FB3E ...) \& \ep{Script_Extensions: Hira} \ep{Script_Extensions=Hiragana} (432) \& \ep{Script_Extensions: Hiragana} (Short: \ep{Scx=Hira}, \ep{Hira}) \& (432: U+3001..3003, U+3008..3011, \& U+3013..301F, U+3030..3035, U+3037, \& U+303C..303D ...) \& \ep{Script_Extensions: Hluw} \ep{Script_Extensions= \& Anatolian_Hieroglyphs} (583) \& \ep{Script_Extensions: Hmng} \ep{Script_Extensions=Pahawh_Hmong} \& (127) \& \ep{Script_Extensions: Hmnp} \ep{Script_Extensions= \& Nyiakeng_Puachue_Hmong} (71) \& \ep{Script_Extensions: Hung} \ep{Script_Extensions=Old_Hungarian} \& (108) \& \ep{Script_Extensions: Imperial_Aramaic} (Short: \ep{Scx=Armi}, \& \ep{Armi}) (31: U+10840..10855, \& U+10857..1085F) \& \ep{Script_Extensions: Inherited} (Short: \ep{Scx=Zinh}, \ep{Zinh}) \& (586: U+0300..0341, U+0343..0344, \& U+0346..0362, U+0953..0954, \& U+1AB0..1ACE, U+1DC2..1DF7 ...) \& \ep{Script_Extensions: Inscriptional_Pahlavi} (Short: \ep{Scx=Phli}, \& \ep{Phli}) (27: U+10B60..10B72, \& U+10B78..10B7F) \& \ep{Script_Extensions: Inscriptional_Parthian} (Short: \ep{Scx= \& Prti}, \ep{Prti}) (30: U+10B40..10B55, \& U+10B58..10B5F) \& \ep{Script_Extensions: Ital} \ep{Script_Extensions=Old_Italic} (39) \& \ep{Script_Extensions: Java} \ep{Script_Extensions=Javanese} (91) \& \ep{Script_Extensions: Javanese} (Short: \ep{Scx=Java}, \ep{Java}) \& (91: U+A980..A9CD, U+A9CF..A9D9, \& U+A9DE..A9DF) \& \ep{Script_Extensions: Kaithi} (Short: \ep{Scx=Kthi}, \ep{Kthi}) (88: \& U+0966..096F, U+A830..A839, \& U+11080..110C2, U+110CD) \& \ep{Script_Extensions: Kali} \ep{Script_Extensions=Kayah_Li} (48) \& \ep{Script_Extensions: Kana} \ep{Script_Extensions=Katakana} (372) \& \ep{Script_Extensions: Kannada} (Short: \ep{Scx=Knda}, \ep{Knda}) \& (105: U+0951..0952, U+0964..0965, \& U+0C80..0C8C, U+0C8E..0C90, \& U+0C92..0CA8, U+0CAA..0CB3 ...) \& \ep{Script_Extensions: Katakana} (Short: \ep{Scx=Kana}, \ep{Kana}) \& (372: U+3001..3003, U+3008..3011, \& U+3013..301F, U+3030..3035, U+3037, \& U+303C..303D ...) \& \ep{Script_Extensions: Kayah_Li} (Short: \ep{Scx=Kali}, \ep{Kali}) \& (48: U+A900..A92F) \& \ep{Script_Extensions: Khar} \ep{Script_Extensions=Kharoshthi} (68) \& \ep{Script_Extensions: Kharoshthi} (Short: \ep{Scx=Khar}, \ep{Khar}) \& (68: U+10A00..10A03, U+10A05..10A06, \& U+10A0C..10A13, U+10A15..10A17, \& U+10A19..10A35, U+10A38..10A3A ...) \& \ep{Script_Extensions: Khitan_Small_Script} (Short: \ep{Scx=Kits}, \& \ep{Kits}) (471: U+16FE4, U+18B00..18CD5) \& \ep{Script_Extensions: Khmer} (Short: \ep{Scx=Khmr}, \ep{Khmr}) (146: \& U+1780..17DD, U+17E0..17E9, \& U+17F0..17F9, U+19E0..19FF) \& \ep{Script_Extensions: Khmr} \ep{Script_Extensions=Khmer} (146) \& \ep{Script_Extensions: Khoj} \ep{Script_Extensions=Khojki} (82) \& \ep{Script_Extensions: Khojki} (Short: \ep{Scx=Khoj}, \ep{Khoj}) (82: \& U+0AE6..0AEF, U+A830..A839, \& U+11200..11211, U+11213..1123E) \& \ep{Script_Extensions: Khudawadi} (Short: \ep{Scx=Sind}, \ep{Sind}) \& (81: U+0964..0965, U+A830..A839, \& U+112B0..112EA, U+112F0..112F9) \& \ep{Script_Extensions: Kits} \ep{Script_Extensions= \& Khitan_Small_Script} (471) \& \ep{Script_Extensions: Knda} \ep{Script_Extensions=Kannada} (105) \& \ep{Script_Extensions: Kthi} \ep{Script_Extensions=Kaithi} (88) \& \ep{Script_Extensions: Lana} \ep{Script_Extensions=Tai_Tham} (127) \& \ep{Script_Extensions: Lao} (Short: \ep{Scx=Lao}, \ep{Lao}) (82: \& U+0E81..0E82, U+0E84, U+0E86..0E8A, \& U+0E8C..0EA3, U+0EA5, U+0EA7..0EBD ...) \& \ep{Script_Extensions: Laoo} \ep{Script_Extensions=Lao} (82) \& \ep{Script_Extensions: Latin} (Short: \ep{Scx=Latn}, \ep{Latn}) \& (1504: [A\-Za\-z\exaa\exba\exc0\-\exd6\exd8\- \& \exf6\exf8\-\exff], U+0100..02B8, \& U+02E0..02E4, U+0363..036F, \& U+0485..0486, U+0951..0952 ...) \& \ep{Script_Extensions: Latn} \ep{Script_Extensions=Latin} (1504) \& \ep{Script_Extensions: Lepc} \ep{Script_Extensions=Lepcha} (74) \& \ep{Script_Extensions: Lepcha} (Short: \ep{Scx=Lepc}, \ep{Lepc}) (74: \& U+1C00..1C37, U+1C3B..1C49, U+1C4D..1C4F) \& \ep{Script_Extensions: Limb} \ep{Script_Extensions=Limbu} (69) \& \ep{Script_Extensions: Limbu} (Short: \ep{Scx=Limb}, \ep{Limb}) (69: \& U+0965, U+1900..191E, U+1920..192B, \& U+1930..193B, U+1940, U+1944..194F) \& \ep{Script_Extensions: Lina} \ep{Script_Extensions=Linear_A} (386) \& \ep{Script_Extensions: Linb} \ep{Script_Extensions=Linear_B} (268) \& \ep{Script_Extensions: Linear_A} (Short: \ep{Scx=Lina}, \ep{Lina}) \& (386: U+10107..10133, U+10600..10736, \& U+10740..10755, U+10760..10767) \& \ep{Script_Extensions: Linear_B} (Short: \ep{Scx=Linb}, \ep{Linb}) \& (268: U+10000..1000B, U+1000D..10026, \& U+10028..1003A, U+1003C..1003D, \& U+1003F..1004D, U+10050..1005D ...) \& \ep{Script_Extensions: Lisu} (Short: \ep{Scx=Lisu}, \ep{Lisu}) (49: \& U+A4D0..A4FF, U+11FB0) \& \ep{Script_Extensions: Lyci} \ep{Script_Extensions=Lycian} (29) \& \ep{Script_Extensions: Lycian} (Short: \ep{Scx=Lyci}, \ep{Lyci}) (29: \& U+10280..1029C) \& \ep{Script_Extensions: Lydi} \ep{Script_Extensions=Lydian} (27) \& \ep{Script_Extensions: Lydian} (Short: \ep{Scx=Lydi}, \ep{Lydi}) (27: \& U+10920..10939, U+1093F) \& \ep{Script_Extensions: Mahajani} (Short: \ep{Scx=Mahj}, \ep{Mahj}) \& (61: U+0964..096F, U+A830..A839, \& U+11150..11176) \& \ep{Script_Extensions: Mahj} \ep{Script_Extensions=Mahajani} (61) \& \ep{Script_Extensions: Maka} \ep{Script_Extensions=Makasar} (25) \& \ep{Script_Extensions: Makasar} (Short: \ep{Scx=Maka}, \ep{Maka}) \& (25: U+11EE0..11EF8) \& \ep{Script_Extensions: Malayalam} (Short: \ep{Scx=Mlym}, \ep{Mlym}) \& (126: U+0951..0952, U+0964..0965, \& U+0D00..0D0C, U+0D0E..0D10, \& U+0D12..0D44, U+0D46..0D48 ...) \& \ep{Script_Extensions: Mand} \ep{Script_Extensions=Mandaic} (30) \& \ep{Script_Extensions: Mandaic} (Short: \ep{Scx=Mand}, \ep{Mand}) \& (30: U+0640, U+0840..085B, U+085E) \& \ep{Script_Extensions: Mani} \ep{Script_Extensions=Manichaean} (52) \& \ep{Script_Extensions: Manichaean} (Short: \ep{Scx=Mani}, \ep{Mani}) \& (52: U+0640, U+10AC0..10AE6, \& U+10AEB..10AF6) \& \ep{Script_Extensions: Marc} \ep{Script_Extensions=Marchen} (68) \& \ep{Script_Extensions: Marchen} (Short: \ep{Scx=Marc}, \ep{Marc}) \& (68: U+11C70..11C8F, U+11C92..11CA7, \& U+11CA9..11CB6) \& \ep{Script_Extensions: Masaram_Gondi} (Short: \ep{Scx=Gonm}, \& \ep{Gonm}) (77: U+0964..0965, \& U+11D00..11D06, U+11D08..11D09, \& U+11D0B..11D36, U+11D3A, U+11D3C..11D3D \& ...) \& \ep{Script_Extensions: Medefaidrin} (Short: \ep{Scx=Medf}, \ep{Medf}) \& (91: U+16E40..16E9A) \& \ep{Script_Extensions: Medf} \ep{Script_Extensions=Medefaidrin} (91) \& \ep{Script_Extensions: Meetei_Mayek} (Short: \ep{Scx=Mtei}, \& \ep{Mtei}) (79: U+AAE0..AAF6, \& U+ABC0..ABED, U+ABF0..ABF9) \& \ep{Script_Extensions: Mend} \ep{Script_Extensions=Mende_Kikakui} \& (213) \& \ep{Script_Extensions: Mende_Kikakui} (Short: \ep{Scx=Mend}, \& \ep{Mend}) (213: U+1E800..1E8C4, \& U+1E8C7..1E8D6) \& \ep{Script_Extensions: Merc} \ep{Script_Extensions=Meroitic_Cursive} \& (90) \& \ep{Script_Extensions: Mero} \ep{Script_Extensions= \& Meroitic_Hieroglyphs} (32) \& \ep{Script_Extensions: Meroitic_Cursive} (Short: \ep{Scx=Merc}, \& \ep{Merc}) (90: U+109A0..109B7, \& U+109BC..109CF, U+109D2..109FF) \& \ep{Script_Extensions: Meroitic_Hieroglyphs} (Short: \ep{Scx=Mero}, \& \ep{Mero}) (32: U+10980..1099F) \& \ep{Script_Extensions: Miao} (Short: \ep{Scx=Miao}, \ep{Miao}) (149: \& U+16F00..16F4A, U+16F4F..16F87, \& U+16F8F..16F9F) \& \ep{Script_Extensions: Mlym} \ep{Script_Extensions=Malayalam} (126) \& \ep{Script_Extensions: Modi} (Short: \ep{Scx=Modi}, \ep{Modi}) (89: \& U+A830..A839, U+11600..11644, \& U+11650..11659) \& \ep{Script_Extensions: Mong} \ep{Script_Extensions=Mongolian} (172) \& \ep{Script_Extensions: Mongolian} (Short: \ep{Scx=Mong}, \ep{Mong}) \& (172: U+1800..1819, U+1820..1878, \& U+1880..18AA, U+202F, U+11660..1166C) \& \ep{Script_Extensions: Mro} (Short: \ep{Scx=Mro}, \ep{Mro}) (43: \& U+16A40..16A5E, U+16A60..16A69, \& U+16A6E..16A6F) \& \ep{Script_Extensions: Mroo} \ep{Script_Extensions=Mro} (43) \& \ep{Script_Extensions: Mtei} \ep{Script_Extensions=Meetei_Mayek} (79) \& \ep{Script_Extensions: Mult} \ep{Script_Extensions=Multani} (48) \& \ep{Script_Extensions: Multani} (Short: \ep{Scx=Mult}, \ep{Mult}) \& (48: U+0A66..0A6F, U+11280..11286, \& U+11288, U+1128A..1128D, U+1128F..1129D, \& U+1129F..112A9) \& \ep{Script_Extensions: Myanmar} (Short: \ep{Scx=Mymr}, \ep{Mymr}) \& (224: U+1000..109F, U+A92E, \& U+A9E0..A9FE, U+AA60..AA7F) \& \ep{Script_Extensions: Mymr} \ep{Script_Extensions=Myanmar} (224) \& \ep{Script_Extensions: Nabataean} (Short: \ep{Scx=Nbat}, \ep{Nbat}) \& (40: U+10880..1089E, U+108A7..108AF) \& \ep{Script_Extensions: Nand} \ep{Script_Extensions=Nandinagari} (86) \& \ep{Script_Extensions: Nandinagari} (Short: \ep{Scx=Nand}, \ep{Nand}) \& (86: U+0964..0965, U+0CE6..0CEF, U+1CE9, \& U+1CF2, U+1CFA, U+A830..A835 ...) \& \ep{Script_Extensions: Narb} \ep{Script_Extensions= \& Old_North_Arabian} (32) \& \ep{Script_Extensions: Nbat} \ep{Script_Extensions=Nabataean} (40) \& \ep{Script_Extensions: New_Tai_Lue} (Short: \ep{Scx=Talu}, \ep{Talu}) \& (83: U+1980..19AB, U+19B0..19C9, \& U+19D0..19DA, U+19DE..19DF) \& \ep{Script_Extensions: Newa} (Short: \ep{Scx=Newa}, \ep{Newa}) (97: \& U+11400..1145B, U+1145D..11461) \& \ep{Script_Extensions: Nko} (Short: \ep{Scx=Nko}, \ep{Nko}) (67: \& U+060C, U+061B, U+061F, U+07C0..07FA, \& U+07FD..07FF, U+FD3E..FD3F) \& \ep{Script_Extensions: Nkoo} \ep{Script_Extensions=Nko} (67) \& \ep{Script_Extensions: Nshu} \ep{Script_Extensions=Nushu} (397) \& \ep{Script_Extensions: Nushu} (Short: \ep{Scx=Nshu}, \ep{Nshu}) (397: \& U+16FE1, U+1B170..1B2FB) \& \ep{Script_Extensions: Nyiakeng_Puachue_Hmong} (Short: \ep{Scx= \& Hmnp}, \ep{Hmnp}) (71: U+1E100..1E12C, \& U+1E130..1E13D, U+1E140..1E149, \& U+1E14E..1E14F) \& \ep{Script_Extensions: Ogam} \ep{Script_Extensions=Ogham} (29) \& \ep{Script_Extensions: Ogham} (Short: \ep{Scx=Ogam}, \ep{Ogam}) (29: \& U+1680..169C) \& \ep{Script_Extensions: Ol_Chiki} (Short: \ep{Scx=Olck}, \ep{Olck}) \& (48: U+1C50..1C7F) \& \ep{Script_Extensions: Olck} \ep{Script_Extensions=Ol_Chiki} (48) \& \ep{Script_Extensions: Old_Hungarian} (Short: \ep{Scx=Hung}, \& \ep{Hung}) (108: U+10C80..10CB2, \& U+10CC0..10CF2, U+10CFA..10CFF) \& \ep{Script_Extensions: Old_Italic} (Short: \ep{Scx=Ital}, \ep{Ital}) \& (39: U+10300..10323, U+1032D..1032F) \& \ep{Script_Extensions: Old_North_Arabian} (Short: \ep{Scx=Narb}, \& \ep{Narb}) (32: U+10A80..10A9F) \& \ep{Script_Extensions: Old_Permic} (Short: \ep{Scx=Perm}, \ep{Perm}) \& (44: U+0483, U+10350..1037A) \& \ep{Script_Extensions: Old_Persian} (Short: \ep{Scx=Xpeo}, \ep{Xpeo}) \& (50: U+103A0..103C3, U+103C8..103D5) \& \ep{Script_Extensions: Old_Sogdian} (Short: \ep{Scx=Sogo}, \ep{Sogo}) \& (40: U+10F00..10F27) \& \ep{Script_Extensions: Old_South_Arabian} (Short: \ep{Scx=Sarb}, \& \ep{Sarb}) (32: U+10A60..10A7F) \& \ep{Script_Extensions: Old_Turkic} (Short: \ep{Scx=Orkh}, \ep{Orkh}) \& (73: U+10C00..10C48) \& \ep{Script_Extensions: Old_Uyghur} (Short: \ep{Scx=Ougr}, \ep{Ougr}) \& (28: U+0640, U+10AF2, U+10F70..10F89) \& \ep{Script_Extensions: Oriya} (Short: \ep{Scx=Orya}, \ep{Orya}) (97: \& U+0951..0952, U+0964..0965, \& U+0B01..0B03, U+0B05..0B0C, \& U+0B0F..0B10, U+0B13..0B28 ...) \& \ep{Script_Extensions: Orkh} \ep{Script_Extensions=Old_Turkic} (73) \& \ep{Script_Extensions: Orya} \ep{Script_Extensions=Oriya} (97) \& \ep{Script_Extensions: Osage} (Short: \ep{Scx=Osge}, \ep{Osge}) (72: \& U+104B0..104D3, U+104D8..104FB) \& \ep{Script_Extensions: Osge} \ep{Script_Extensions=Osage} (72) \& \ep{Script_Extensions: Osma} \ep{Script_Extensions=Osmanya} (40) \& \ep{Script_Extensions: Osmanya} (Short: \ep{Scx=Osma}, \ep{Osma}) \& (40: U+10480..1049D, U+104A0..104A9) \& \ep{Script_Extensions: Ougr} \ep{Script_Extensions=Old_Uyghur} (28) \& \ep{Script_Extensions: Pahawh_Hmong} (Short: \ep{Scx=Hmng}, \& \ep{Hmng}) (127: U+16B00..16B45, \& U+16B50..16B59, U+16B5B..16B61, \& U+16B63..16B77, U+16B7D..16B8F) \& \ep{Script_Extensions: Palm} \ep{Script_Extensions=Palmyrene} (32) \& \ep{Script_Extensions: Palmyrene} (Short: \ep{Scx=Palm}, \ep{Palm}) \& (32: U+10860..1087F) \& \ep{Script_Extensions: Pau_Cin_Hau} (Short: \ep{Scx=Pauc}, \ep{Pauc}) \& (57: U+11AC0..11AF8) \& \ep{Script_Extensions: Pauc} \ep{Script_Extensions=Pau_Cin_Hau} (57) \& \ep{Script_Extensions: Perm} \ep{Script_Extensions=Old_Permic} (44) \& \ep{Script_Extensions: Phag} \ep{Script_Extensions=Phags_Pa} (59) \& \ep{Script_Extensions: Phags_Pa} (Short: \ep{Scx=Phag}, \ep{Phag}) \& (59: U+1802..1803, U+1805, U+A840..A877) \& \ep{Script_Extensions: Phli} \ep{Script_Extensions= \& Inscriptional_Pahlavi} (27) \& \ep{Script_Extensions: Phlp} \ep{Script_Extensions=Psalter_Pahlavi} \& (30) \& \ep{Script_Extensions: Phnx} \ep{Script_Extensions=Phoenician} (29) \& \ep{Script_Extensions: Phoenician} (Short: \ep{Scx=Phnx}, \ep{Phnx}) \& (29: U+10900..1091B, U+1091F) \& \ep{Script_Extensions: Plrd} \ep{Script_Extensions=Miao} (149) \& \ep{Script_Extensions: Prti} \ep{Script_Extensions= \& Inscriptional_Parthian} (30) \& \ep{Script_Extensions: Psalter_Pahlavi} (Short: \ep{Scx=Phlp}, \& \ep{Phlp}) (30: U+0640, U+10B80..10B91, \& U+10B99..10B9C, U+10BA9..10BAF) \& \ep{Script_Extensions: Qaac} \ep{Script_Extensions=Coptic} (165) \& \ep{Script_Extensions: Qaai} \ep{Script_Extensions=Inherited} (586) \& \ep{Script_Extensions: Rejang} (Short: \ep{Scx=Rjng}, \ep{Rjng}) (37: \& U+A930..A953, U+A95F) \& \ep{Script_Extensions: Rjng} \ep{Script_Extensions=Rejang} (37) \& \ep{Script_Extensions: Rohg} \ep{Script_Extensions=Hanifi_Rohingya} \& (55) \& \ep{Script_Extensions: Runic} (Short: \ep{Scx=Runr}, \ep{Runr}) (86: \& U+16A0..16EA, U+16EE..16F8) \& \ep{Script_Extensions: Runr} \ep{Script_Extensions=Runic} (86) \& \ep{Script_Extensions: Samaritan} (Short: \ep{Scx=Samr}, \ep{Samr}) \& (61: U+0800..082D, U+0830..083E) \& \ep{Script_Extensions: Samr} \ep{Script_Extensions=Samaritan} (61) \& \ep{Script_Extensions: Sarb} \ep{Script_Extensions= \& Old_South_Arabian} (32) \& \ep{Script_Extensions: Saur} \ep{Script_Extensions=Saurashtra} (82) \& \ep{Script_Extensions: Saurashtra} (Short: \ep{Scx=Saur}, \ep{Saur}) \& (82: U+A880..A8C5, U+A8CE..A8D9) \& \ep{Script_Extensions: Sgnw} \ep{Script_Extensions=SignWriting} (672) \& \ep{Script_Extensions: Sharada} (Short: \ep{Scx=Shrd}, \ep{Shrd}) \& (102: U+0951, U+1CD7, U+1CD9, \& U+1CDC..1CDD, U+1CE0, U+11180..111DF) \& \ep{Script_Extensions: Shavian} (Short: \ep{Scx=Shaw}, \ep{Shaw}) \& (48: U+10450..1047F) \& \ep{Script_Extensions: Shaw} \ep{Script_Extensions=Shavian} (48) \& \ep{Script_Extensions: Shrd} \ep{Script_Extensions=Sharada} (102) \& \ep{Script_Extensions: Sidd} \ep{Script_Extensions=Siddham} (92) \& \ep{Script_Extensions: Siddham} (Short: \ep{Scx=Sidd}, \ep{Sidd}) \& (92: U+11580..115B5, U+115B8..115DD) \& \ep{Script_Extensions: SignWriting} (Short: \ep{Scx=Sgnw}, \ep{Sgnw}) \& (672: U+1D800..1DA8B, U+1DA9B..1DA9F, \& U+1DAA1..1DAAF) \& \ep{Script_Extensions: Sind} \ep{Script_Extensions=Khudawadi} (81) \& \ep{Script_Extensions: Sinh} \ep{Script_Extensions=Sinhala} (113) \& \ep{Script_Extensions: Sinhala} (Short: \ep{Scx=Sinh}, \ep{Sinh}) \& (113: U+0964..0965, U+0D81..0D83, \& U+0D85..0D96, U+0D9A..0DB1, \& U+0DB3..0DBB, U+0DBD ...) \& \ep{Script_Extensions: Sogd} \ep{Script_Extensions=Sogdian} (43) \& \ep{Script_Extensions: Sogdian} (Short: \ep{Scx=Sogd}, \ep{Sogd}) \& (43: U+0640, U+10F30..10F59) \& \ep{Script_Extensions: Sogo} \ep{Script_Extensions=Old_Sogdian} (40) \& \ep{Script_Extensions: Sora} \ep{Script_Extensions=Sora_Sompeng} (35) \& \ep{Script_Extensions: Sora_Sompeng} (Short: \ep{Scx=Sora}, \& \ep{Sora}) (35: U+110D0..110E8, \& U+110F0..110F9) \& \ep{Script_Extensions: Soyo} \ep{Script_Extensions=Soyombo} (83) \& \ep{Script_Extensions: Soyombo} (Short: \ep{Scx=Soyo}, \ep{Soyo}) \& (83: U+11A50..11AA2) \& \ep{Script_Extensions: Sund} \ep{Script_Extensions=Sundanese} (72) \& \ep{Script_Extensions: Sundanese} (Short: \ep{Scx=Sund}, \ep{Sund}) \& (72: U+1B80..1BBF, U+1CC0..1CC7) \& \ep{Script_Extensions: Sylo} \ep{Script_Extensions=Syloti_Nagri} (57) \& \ep{Script_Extensions: Syloti_Nagri} (Short: \ep{Scx=Sylo}, \& \ep{Sylo}) (57: U+0964..0965, \& U+09E6..09EF, U+A800..A82C) \& \ep{Script_Extensions: Syrc} \ep{Script_Extensions=Syriac} (107) \& \ep{Script_Extensions: Syriac} (Short: \ep{Scx=Syrc}, \ep{Syrc}) \& (107: U+060C, U+061B..061C, U+061F, \& U+0640, U+064B..0655, U+0670 ...) \& \ep{Script_Extensions: Tagalog} (Short: \ep{Scx=Tglg}, \ep{Tglg}) \& (25: U+1700..1715, U+171F, U+1735..1736) \& \ep{Script_Extensions: Tagb} \ep{Script_Extensions=Tagbanwa} (20) \& \ep{Script_Extensions: Tagbanwa} (Short: \ep{Scx=Tagb}, \ep{Tagb}) \& (20: U+1735..1736, U+1760..176C, \& U+176E..1770, U+1772..1773) \& \ep{Script_Extensions: Tai_Le} (Short: \ep{Scx=Tale}, \ep{Tale}) (45: \& U+1040..1049, U+1950..196D, U+1970..1974) \& \ep{Script_Extensions: Tai_Tham} (Short: \ep{Scx=Lana}, \ep{Lana}) \& (127: U+1A20..1A5E, U+1A60..1A7C, \& U+1A7F..1A89, U+1A90..1A99, U+1AA0..1AAD) \& \ep{Script_Extensions: Tai_Viet} (Short: \ep{Scx=Tavt}, \ep{Tavt}) \& (72: U+AA80..AAC2, U+AADB..AADF) \& \ep{Script_Extensions: Takr} \ep{Script_Extensions=Takri} (80) \& \ep{Script_Extensions: Takri} (Short: \ep{Scx=Takr}, \ep{Takr}) (80: \& U+0964..0965, U+A830..A839, \& U+11680..116B9, U+116C0..116C9) \& \ep{Script_Extensions: Tale} \ep{Script_Extensions=Tai_Le} (45) \& \ep{Script_Extensions: Talu} \ep{Script_Extensions=New_Tai_Lue} (83) \& \ep{Script_Extensions: Tamil} (Short: \ep{Scx=Taml}, \ep{Taml}) (133: \& U+0951..0952, U+0964..0965, \& U+0B82..0B83, U+0B85..0B8A, \& U+0B8E..0B90, U+0B92..0B95 ...) \& \ep{Script_Extensions: Taml} \ep{Script_Extensions=Tamil} (133) \& \ep{Script_Extensions: Tang} \ep{Script_Extensions=Tangut} (6914) \& \ep{Script_Extensions: Tangsa} (Short: \ep{Scx=Tnsa}, \ep{Tnsa}) (89: \& U+16A70..16ABE, U+16AC0..16AC9) \& \ep{Script_Extensions: Tangut} (Short: \ep{Scx=Tang}, \ep{Tang}) \& (6914: U+16FE0, U+17000..187F7, \& U+18800..18AFF, U+18D00..18D08) \& \ep{Script_Extensions: Tavt} \ep{Script_Extensions=Tai_Viet} (72) \& \ep{Script_Extensions: Telu} \ep{Script_Extensions=Telugu} (106) \& \ep{Script_Extensions: Telugu} (Short: \ep{Scx=Telu}, \ep{Telu}) \& (106: U+0951..0952, U+0964..0965, \& U+0C00..0C0C, U+0C0E..0C10, \& U+0C12..0C28, U+0C2A..0C39 ...) \& \ep{Script_Extensions: Tfng} \ep{Script_Extensions=Tifinagh} (59) \& \ep{Script_Extensions: Tglg} \ep{Script_Extensions=Tagalog} (25) \& \ep{Script_Extensions: Thaa} \ep{Script_Extensions=Thaana} (66) \& \ep{Script_Extensions: Thaana} (Short: \ep{Scx=Thaa}, \ep{Thaa}) (66: \& U+060C, U+061B..061C, U+061F, \& U+0660..0669, U+0780..07B1, U+FDF2 ...) \& \ep{Script_Extensions: Thai} (Short: \ep{Scx=Thai}, \ep{Thai}) (86: \& U+0E01..0E3A, U+0E40..0E5B) \& \ep{Script_Extensions: Tibetan} (Short: \ep{Scx=Tibt}, \ep{Tibt}) \& (207: U+0F00..0F47, U+0F49..0F6C, \& U+0F71..0F97, U+0F99..0FBC, \& U+0FBE..0FCC, U+0FCE..0FD4 ...) \& \ep{Script_Extensions: Tibt} \ep{Script_Extensions=Tibetan} (207) \& \ep{Script_Extensions: Tifinagh} (Short: \ep{Scx=Tfng}, \ep{Tfng}) \& (59: U+2D30..2D67, U+2D6F..2D70, U+2D7F) \& \ep{Script_Extensions: Tirh} \ep{Script_Extensions=Tirhuta} (97) \& \ep{Script_Extensions: Tirhuta} (Short: \ep{Scx=Tirh}, \ep{Tirh}) \& (97: U+0951..0952, U+0964..0965, U+1CF2, \& U+A830..A839, U+11480..114C7, \& U+114D0..114D9) \& \ep{Script_Extensions: Tnsa} \ep{Script_Extensions=Tangsa} (89) \& \ep{Script_Extensions: Toto} (Short: \ep{Scx=Toto}, \ep{Toto}) (31: \& U+1E290..1E2AE) \& \ep{Script_Extensions: Ugar} \ep{Script_Extensions=Ugaritic} (31) \& \ep{Script_Extensions: Ugaritic} (Short: \ep{Scx=Ugar}, \ep{Ugar}) \& (31: U+10380..1039D, U+1039F) \& \ep{Script_Extensions: Unknown} (Short: \ep{Scx=Zzzz}, \ep{Zzzz}) \& (969_350 plus all above\-Unicode code \& points: U+0378..0379, U+0380..0383, \& U+038B, U+038D, U+03A2, U+0530 ...) \& \ep{Script_Extensions: Vai} (Short: \ep{Scx=Vai}, \ep{Vai}) (300: \& U+A500..A62B) \& \ep{Script_Extensions: Vaii} \ep{Script_Extensions=Vai} (300) \& \ep{Script_Extensions: Vith} \ep{Script_Extensions=Vithkuqi} (70) \& \ep{Script_Extensions: Vithkuqi} (Short: \ep{Scx=Vith}, \ep{Vith}) \& (70: U+10570..1057A, U+1057C..1058A, \& U+1058C..10592, U+10594..10595, \& U+10597..105A1, U+105A3..105B1 ...) \& \ep{Script_Extensions: Wancho} (Short: \ep{Scx=Wcho}, \ep{Wcho}) (59: \& U+1E2C0..1E2F9, U+1E2FF) \& \ep{Script_Extensions: Wara} \ep{Script_Extensions=Warang_Citi} (84) \& \ep{Script_Extensions: Warang_Citi} (Short: \ep{Scx=Wara}, \ep{Wara}) \& (84: U+118A0..118F2, U+118FF) \& \ep{Script_Extensions: Wcho} \ep{Script_Extensions=Wancho} (59) \& \ep{Script_Extensions: Xpeo} \ep{Script_Extensions=Old_Persian} (50) \& \ep{Script_Extensions: Xsux} \ep{Script_Extensions=Cuneiform} (1234) \& \ep{Script_Extensions: Yezi} \ep{Script_Extensions=Yezidi} (60) \& \ep{Script_Extensions: Yezidi} (Short: \ep{Scx=Yezi}, \ep{Yezi}) (60: \& U+060C, U+061B, U+061F, U+0660..0669, \& U+10E80..10EA9, U+10EAB..10EAD ...) \& \ep{Script_Extensions: Yi} (Short: \ep{Scx=Yi}, \ep{Yi}) (1246: \& U+3001..3002, U+3008..3011, \& U+3014..301B, U+30FB, U+A000..A48C, \& U+A490..A4C6 ...) \& \ep{Script_Extensions: Yiii} \ep{Script_Extensions=Yi} (1246) \& \ep{Script_Extensions: Zanabazar_Square} (Short: \ep{Scx=Zanb}, \& \ep{Zanb}) (72: U+11A00..11A47) \& \ep{Script_Extensions: Zanb} \ep{Script_Extensions=Zanabazar_Square} \& (72) \& \ep{Script_Extensions: Zinh} \ep{Script_Extensions=Inherited} (586) \& \ep{Script_Extensions: Zyyy} \ep{Script_Extensions=Common} (7824) \& \ep{Script_Extensions: Zzzz} \ep{Script_Extensions=Unknown} (969_350 \& plus all above\-Unicode code points) \& \ep{Scx: *} \ep{Script_Extensions: *} \& \ep{SD} \ep{Soft_Dotted} (= \ep{Soft_Dotted=Y}) (47) \& \ep{SD: *} \ep{Soft_Dotted: *} \& \ep{Sentence_Break: AT} \ep{Sentence_Break=ATerm} (4) \& \ep{Sentence_Break: ATerm} (Short: \ep{SB=AT}) (4: [.], U+2024, \& U+FE52, U+FF0E) \& \ep{Sentence_Break: CL} \ep{Sentence_Break=Close} (195) \& \ep{Sentence_Break: Close} (Short: \ep{SB=CL}) (195: [\e"\e\*(Aq\e(\e)\e[\e] \& \e{\e}\exab\exbb], U+0F3A..0F3D, \& U+169B..169C, U+2018..201F, \& U+2039..203A, U+2045..2046 ...) \& \ep{Sentence_Break: CR} (Short: \ep{SB=CR}) (1: [\er]) \& \ep{Sentence_Break: EX} \ep{Sentence_Break=Extend} (2508) \& \ep{Sentence_Break: Extend} (Short: \ep{SB=EX}) (2508: U+0300..036F, \& U+0483..0489, U+0591..05BD, U+05BF, \& U+05C1..05C2, U+05C4..05C5 ...) \& \ep{Sentence_Break: FO} \ep{Sentence_Break=Format} (65) \& \ep{Sentence_Break: Format} (Short: \ep{SB=FO}) (65: [\exad], \& U+0600..0605, U+061C, U+06DD, U+070F, \& U+0890..0891 ...) \& \ep{Sentence_Break: LE} \ep{Sentence_Break=OLetter} (127_761) \& \ep{Sentence_Break: LF} (Short: \ep{SB=LF}) (1: [\en]) \& \ep{Sentence_Break: LO} \ep{Sentence_Break=Lower} (2424) \& \ep{Sentence_Break: Lower} (Short: \ep{SB=LO}) (2424: [a\-z\exaa\exb5 \& \exba\exdf\-\exf6\exf8\-\exff], U+0101, U+0103, \& U+0105, U+0107, U+0109 ...) \& \ep{Sentence_Break: NU} \ep{Sentence_Break=Numeric} (662) \& \ep{Sentence_Break: Numeric} (Short: \ep{SB=NU}) (662: [0\-9], \& U+0660..0669, U+066B..066C, \& U+06F0..06F9, U+07C0..07C9, U+0966..096F \& ...) \& \ep{Sentence_Break: OLetter} (Short: \ep{SB=LE}) (127_761: U+01BB, \& U+01C0..01C3, U+0294, U+02B9..02BF, \& U+02C6..02D1, U+02EC ...) \& \ep{Sentence_Break: Other} (Short: \ep{SB=XX}) (978_357 plus all \& above\-Unicode code points: [^\et\en\ecK\ef \& \er\ex20!\e"\e\*(Aq\e(\e),\e\-.0\-9:?A\-Z\e[\e]a\-z\e{\e} \& \ex85\exa0\exaa\-\exab\exad\exb5\exba\-\exbb\exc0\- \& \exd6\exd8\-\exf6\exf8\-\exff], U+02C2..02C5, \& U+02D2..02DF, U+02E5..02EB, U+02ED, \& U+02EF..02FF ...) \& \ep{Sentence_Break: SC} \ep{Sentence_Break=SContinue} (26) \& \ep{Sentence_Break: SContinue} (Short: \ep{SB=SC}) (26: [,\e\-:], \& U+055D, U+060C..060D, U+07F8, U+1802, \& U+1808 ...) \& \ep{Sentence_Break: SE} \ep{Sentence_Break=Sep} (3) \& \ep{Sentence_Break: Sep} (Short: \ep{SB=SE}) (3: [\ex85], \& U+2028..2029) \& \ep{Sentence_Break: Sp} (Short: \ep{SB=Sp}) (20: [\et\ecK\ef\ex20\exa0], \& U+1680, U+2000..200A, U+202F, U+205F, \& U+3000) \& \ep{Sentence_Break: ST} \ep{Sentence_Break=STerm} (149) \& \ep{Sentence_Break: STerm} (Short: \ep{SB=ST}) (149: [!?], U+0589, \& U+061D..061F, U+06D4, U+0700..0702, \& U+07F9 ...) \& \ep{Sentence_Break: UP} \ep{Sentence_Break=Upper} (1936) \& \ep{Sentence_Break: Upper} (Short: \ep{SB=UP}) (1936: [A\-Z\exc0\-\exd6 \& \exd8\-\exde], U+0100, U+0102, U+0104, \& U+0106, U+0108 ...) \& \ep{Sentence_Break: XX} \ep{Sentence_Break=Other} (978_357 plus all \& above\-Unicode code points) \& \ep{Sentence_Terminal} \ep{Sentence_Terminal=Y} (Short: \ep{STerm}) \& (152) \& \ep{Sentence_Terminal: N*} (Short: \ep{STerm=N}, \eP{STerm}) \& (1_113_960 plus all above\-Unicode code \& points: [\ex00\-\ex20\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\- \& \e/0\-9:;<=>\e@A\-Z\e[\e\e\e]\e^_\`a\-z\e{\e|\e}~\ex7f\- \& \exff], U+0100..0588, U+058A..061C, \& U+0620..06D3, U+06D5..06FF, U+0703..07F8 \& ...) \& \ep{Sentence_Terminal: Y*} (Short: \ep{STerm=Y}, \ep{STerm}) (152: \& [!.?], U+0589, U+061D..061F, U+06D4, \& U+0700..0702, U+07F9 ...) \& \ep{Separator} \ep{General_Category=Separator} (Short: \& \ep{Z}) (19) \& \ep{Sgnw} \ep{SignWriting} (= \ep{Script_Extensions= \& SignWriting}) (672) \& \ep{Sharada} \ep{Script_Extensions=Sharada} (Short: \& \ep{Shrd}; NOT \ep{Block=Sharada}) (102) \& \ep{Shavian} \ep{Script_Extensions=Shavian} (Short: \& \ep{Shaw}) (48) \& \ep{Shaw} \ep{Shavian} (= \ep{Script_Extensions= \& Shavian}) (48) \& X \ep{Shorthand_Format_Controls} \ep{Block=Shorthand_Format_Controls} \& (16) \& \ep{Shrd} \ep{Sharada} (= \ep{Script_Extensions= \& Sharada}) (NOT \ep{Block=Sharada}) (102) \& \ep{Sidd} \ep{Siddham} (= \ep{Script_Extensions= \& Siddham}) (NOT \ep{Block=Siddham}) (92) \& \ep{Siddham} \ep{Script_Extensions=Siddham} (Short: \& \ep{Sidd}; NOT \ep{Block=Siddham}) (92) \& \ep{SignWriting} \ep{Script_Extensions=SignWriting} (Short: \& \ep{Sgnw}) (672) \& \ep{Sind} \ep{Khudawadi} (= \ep{Script_Extensions= \& Khudawadi}) (NOT \ep{Block=Khudawadi}) \& (81) \& \ep{Sinh} \ep{Sinhala} (= \ep{Script_Extensions= \& Sinhala}) (NOT \ep{Block=Sinhala}) (113) \& \ep{Sinhala} \ep{Script_Extensions=Sinhala} (Short: \& \ep{Sinh}; NOT \ep{Block=Sinhala}) (113) \& X \ep{Sinhala_Archaic_Numbers} \ep{Block=Sinhala_Archaic_Numbers} (32) \& \ep{Sk} \ep{Modifier_Symbol} (= \& \ep{General_Category=Modifier_Symbol}) \& (125) \& \ep{Sm} \ep{Math_Symbol} (= \ep{General_Category= \& Math_Symbol}) (948) \& X \ep{Small_Form_Variants} \ep{Block=Small_Form_Variants} (Short: \& \ep{InSmallForms}) (32) \& X \ep{Small_Forms} \ep{Small_Form_Variants} (= \ep{Block= \& Small_Form_Variants}) (32) \& X \ep{Small_Kana_Ext} \ep{Small_Kana_Extension} (= \ep{Block= \& Small_Kana_Extension}) (64) \& X \ep{Small_Kana_Extension} \ep{Block=Small_Kana_Extension} (Short: \& \ep{InSmallKanaExt}) (64) \& \ep{So} \ep{Other_Symbol} (= \ep{General_Category= \& Other_Symbol}) (6605) \& \ep{Soft_Dotted} \ep{Soft_Dotted=Y} (Short: \ep{SD}) (47) \& \ep{Soft_Dotted: N*} (Short: \ep{SD=N}, \eP{SD}) (1_114_065 plus \& all above\-Unicode code points: [\ex00\- \& \ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/0\-9:;<=>?\e@A\- \& Z\e[\e\e\e]\e^_\`a\-hk\-z\e{\e|\e}~\ex7f\-\exff], \& U+0100..012E, U+0130..0248, \& U+024A..0267, U+0269..029C, U+029E..02B1 \& ...) \& \ep{Soft_Dotted: Y*} (Short: \ep{SD=Y}, \ep{SD}) (47: [i\-j], \& U+012F, U+0249, U+0268, U+029D, U+02B2 \& ...) \& \ep{Sogd} \ep{Sogdian} (= \ep{Script_Extensions= \& Sogdian}) (NOT \ep{Block=Sogdian}) (43) \& \ep{Sogdian} \ep{Script_Extensions=Sogdian} (Short: \& \ep{Sogd}; NOT \ep{Block=Sogdian}) (43) \& \ep{Sogo} \ep{Old_Sogdian} (= \ep{Script_Extensions= \& Old_Sogdian}) (NOT \ep{Block= \& Old_Sogdian}) (40) \& \ep{Sora} \ep{Sora_Sompeng} (= \ep{Script_Extensions= \& Sora_Sompeng}) (NOT \ep{Block= \& Sora_Sompeng}) (35) \& \ep{Sora_Sompeng} \ep{Script_Extensions=Sora_Sompeng} (Short: \& \ep{Sora}; NOT \ep{Block=Sora_Sompeng}) \& (35) \& \ep{Soyo} \ep{Soyombo} (= \ep{Script_Extensions= \& Soyombo}) (NOT \ep{Block=Soyombo}) (83) \& \ep{Soyombo} \ep{Script_Extensions=Soyombo} (Short: \& \ep{Soyo}; NOT \ep{Block=Soyombo}) (83) \& \ep{Space} \ep{White_Space} (= \ep{White_Space=Y}) (25) \& \ep{Space: *} \ep{White_Space: *} \& \ep{Space_Separator} \ep{General_Category=Space_Separator} \& (Short: \ep{Zs}) (17) \& \ep{SpacePerl} \ep{XPosixSpace} (25) \& \ep{Spacing_Mark} \ep{General_Category=Spacing_Mark} (Short: \& \ep{Mc}) (445) \& X \ep{Spacing_Modifier_Letters} \ep{Block=Spacing_Modifier_Letters} \& (Short: \ep{InModifierLetters}) (80) \& X \ep{Specials} \ep{Block=Specials} (16) \& \ep{STerm} \ep{Sentence_Terminal} (= \& \ep{Sentence_Terminal=Y}) (152) \& \ep{STerm: *} \ep{Sentence_Terminal: *} \& \ep{Sund} \ep{Sundanese} (= \ep{Script_Extensions= \& Sundanese}) (NOT \ep{Block=Sundanese}) \& (72) \& \ep{Sundanese} \ep{Script_Extensions=Sundanese} (Short: \& \ep{Sund}; NOT \ep{Block=Sundanese}) (72) \& X \ep{Sundanese_Sup} \ep{Sundanese_Supplement} (= \ep{Block= \& Sundanese_Supplement}) (16) \& X \ep{Sundanese_Supplement} \ep{Block=Sundanese_Supplement} (Short: \& \ep{InSundaneseSup}) (16) \& X \ep{Sup_Arrows_A} \ep{Supplemental_Arrows_A} (= \ep{Block= \& Supplemental_Arrows_A}) (16) \& X \ep{Sup_Arrows_B} \ep{Supplemental_Arrows_B} (= \ep{Block= \& Supplemental_Arrows_B}) (128) \& X \ep{Sup_Arrows_C} \ep{Supplemental_Arrows_C} (= \ep{Block= \& Supplemental_Arrows_C}) (256) \& X \ep{Sup_Math_Operators} \ep{Supplemental_Mathematical_Operators} (= \& \ep{Block= \& Supplemental_Mathematical_Operators}) \& (256) \& X \ep{Sup_PUA_A} \ep{Supplementary_Private_Use_Area_A} (= \& \ep{Block= \& Supplementary_Private_Use_Area_A}) \& (65_536) \& X \ep{Sup_PUA_B} \ep{Supplementary_Private_Use_Area_B} (= \& \ep{Block= \& Supplementary_Private_Use_Area_B}) \& (65_536) \& X \ep{Sup_Punctuation} \ep{Supplemental_Punctuation} (= \ep{Block= \& Supplemental_Punctuation}) (128) \& X \ep{Sup_Symbols_And_Pictographs} \& \ep{Supplemental_Symbols_And_Pictographs} \& (= \ep{Block= \& Supplemental_Symbols_And_Pictographs}) \& (256) \& X \ep{Super_And_Sub} \ep{Superscripts_And_Subscripts} (= \& \ep{Block=Superscripts_And_Subscripts}) \& (48) \& X \ep{Superscripts_And_Subscripts} \ep{Block= \& Superscripts_And_Subscripts} (Short: \& \ep{InSuperAndSub}) (48) \& X \ep{Supplemental_Arrows_A} \ep{Block=Supplemental_Arrows_A} (Short: \& \ep{InSupArrowsA}) (16) \& X \ep{Supplemental_Arrows_B} \ep{Block=Supplemental_Arrows_B} (Short: \& \ep{InSupArrowsB}) (128) \& X \ep{Supplemental_Arrows_C} \ep{Block=Supplemental_Arrows_C} (Short: \& \ep{InSupArrowsC}) (256) \& X \ep{Supplemental_Mathematical_Operators} \ep{Block= \& Supplemental_Mathematical_Operators} \& (Short: \ep{InSupMathOperators}) (256) \& X \ep{Supplemental_Punctuation} \ep{Block=Supplemental_Punctuation} \& (Short: \ep{InSupPunctuation}) (128) \& X \ep{Supplemental_Symbols_And_Pictographs} \ep{Block= \& Supplemental_Symbols_And_Pictographs} \& (Short: \ep{InSupSymbolsAndPictographs}) \& (256) \& X \ep{Supplementary_Private_Use_Area_A} \ep{Block= \& Supplementary_Private_Use_Area_A} \& (Short: \ep{InSupPUAA}) (65_536) \& X \ep{Supplementary_Private_Use_Area_B} \ep{Block= \& Supplementary_Private_Use_Area_B} \& (Short: \ep{InSupPUAB}) (65_536) \& \ep{Surrogate} \ep{General_Category=Surrogate} (Short: \& \ep{Cs}) (2048) \& X \ep{Sutton_SignWriting} \ep{Block=Sutton_SignWriting} (688) \& \ep{Sylo} \ep{Syloti_Nagri} (= \ep{Script_Extensions= \& Syloti_Nagri}) (NOT \ep{Block= \& Syloti_Nagri}) (57) \& \ep{Syloti_Nagri} \ep{Script_Extensions=Syloti_Nagri} (Short: \& \ep{Sylo}; NOT \ep{Block=Syloti_Nagri}) \& (57) \& \ep{Symbol} \ep{General_Category=Symbol} (Short: \ep{S}) \& (7741) \& X \ep{Symbols_And_Pictographs_Ext_A} \& \ep{Symbols_And_Pictographs_Extended_A} \& (= \ep{Block= \& Symbols_And_Pictographs_Extended_A}) \& (144) \& X \ep{Symbols_And_Pictographs_Extended_A} \ep{Block= \& Symbols_And_Pictographs_Extended_A} (144) \& X \ep{Symbols_For_Legacy_Computing} \ep{Block= \& Symbols_For_Legacy_Computing} (256) \& \ep{Syrc} \ep{Syriac} (= \ep{Script_Extensions= \& Syriac}) (NOT \ep{Block=Syriac}) (107) \& \ep{Syriac} \ep{Script_Extensions=Syriac} (Short: \& \ep{Syrc}; NOT \ep{Block=Syriac}) (107) \& X \ep{Syriac_Sup} \ep{Syriac_Supplement} (= \ep{Block= \& Syriac_Supplement}) (16) \& X \ep{Syriac_Supplement} \ep{Block=Syriac_Supplement} (Short: \& \ep{InSyriacSup}) (16) \& \ep{Tagalog} \ep{Script_Extensions=Tagalog} (Short: \& \ep{Tglg}; NOT \ep{Block=Tagalog}) (25) \& \ep{Tagb} \ep{Tagbanwa} (= \ep{Script_Extensions= \& Tagbanwa}) (NOT \ep{Block=Tagbanwa}) (20) \& \ep{Tagbanwa} \ep{Script_Extensions=Tagbanwa} (Short: \& \ep{Tagb}; NOT \ep{Block=Tagbanwa}) (20) \& X \ep{Tags} \ep{Block=Tags} (128) \& \ep{Tai_Le} \ep{Script_Extensions=Tai_Le} (Short: \& \ep{Tale}; NOT \ep{Block=Tai_Le}) (45) \& \ep{Tai_Tham} \ep{Script_Extensions=Tai_Tham} (Short: \& \ep{Lana}; NOT \ep{Block=Tai_Tham}) (127) \& \ep{Tai_Viet} \ep{Script_Extensions=Tai_Viet} (Short: \& \ep{Tavt}; NOT \ep{Block=Tai_Viet}) (72) \& X \ep{Tai_Xuan_Jing} \ep{Tai_Xuan_Jing_Symbols} (= \ep{Block= \& Tai_Xuan_Jing_Symbols}) (96) \& X \ep{Tai_Xuan_Jing_Symbols} \ep{Block=Tai_Xuan_Jing_Symbols} (Short: \& \ep{InTaiXuanJing}) (96) \& \ep{Takr} \ep{Takri} (= \ep{Script_Extensions=Takri}) \& (NOT \ep{Block=Takri}) (80) \& \ep{Takri} \ep{Script_Extensions=Takri} (Short: \& \ep{Takr}; NOT \ep{Block=Takri}) (80) \& \ep{Tale} \ep{Tai_Le} (= \ep{Script_Extensions= \& Tai_Le}) (NOT \ep{Block=Tai_Le}) (45) \& \ep{Talu} \ep{New_Tai_Lue} (= \ep{Script_Extensions= \& New_Tai_Lue}) (NOT \ep{Block= \& New_Tai_Lue}) (83) \& \ep{Tamil} \ep{Script_Extensions=Tamil} (Short: \& \ep{Taml}; NOT \ep{Block=Tamil}) (133) \& X \ep{Tamil_Sup} \ep{Tamil_Supplement} (= \ep{Block= \& Tamil_Supplement}) (64) \& X \ep{Tamil_Supplement} \ep{Block=Tamil_Supplement} (Short: \& \ep{InTamilSup}) (64) \& \ep{Taml} \ep{Tamil} (= \ep{Script_Extensions=Tamil}) \& (NOT \ep{Block=Tamil}) (133) \& \ep{Tang} \ep{Tangut} (= \ep{Script_Extensions= \& Tangut}) (NOT \ep{Block=Tangut}) (6914) \& \ep{Tangsa} \ep{Script_Extensions=Tangsa} (Short: \& \ep{Tnsa}; NOT \ep{Block=Tangsa}) (89) \& \ep{Tangut} \ep{Script_Extensions=Tangut} (Short: \& \ep{Tang}; NOT \ep{Block=Tangut}) (6914) \& X \ep{Tangut_Components} \ep{Block=Tangut_Components} (768) \& X \ep{Tangut_Sup} \ep{Tangut_Supplement} (= \ep{Block= \& Tangut_Supplement}) (128) \& X \ep{Tangut_Supplement} \ep{Block=Tangut_Supplement} (Short: \& \ep{InTangutSup}) (128) \& \ep{Tavt} \ep{Tai_Viet} (= \ep{Script_Extensions= \& Tai_Viet}) (NOT \ep{Block=Tai_Viet}) (72) \& \ep{Telu} \ep{Telugu} (= \ep{Script_Extensions= \& Telugu}) (NOT \ep{Block=Telugu}) (106) \& \ep{Telugu} \ep{Script_Extensions=Telugu} (Short: \& \ep{Telu}; NOT \ep{Block=Telugu}) (106) \& \ep{Term} \ep{Terminal_Punctuation} (= \& \ep{Terminal_Punctuation=Y}) (276) \& \ep{Term: *} \ep{Terminal_Punctuation: *} \& \ep{Terminal_Punctuation} \ep{Terminal_Punctuation=Y} (Short: \& \ep{Term}) (276) \& \ep{Terminal_Punctuation: N*} (Short: \ep{Term=N}, \eP{Term}) \& (1_113_836 plus all above\-Unicode code \& points: [\ex00\-\ex20\e"#\e$\e%&\e\*(Aq\e(\e)*+\e\-\e/0\- \& 9<=>\e@A\-Z\e[\e\e\e]\e^_\`a\-z\e{\e|\e}~\ex7f\-\exff], \& U+0100..037D, U+037F..0386, \& U+0388..0588, U+058A..05C2, U+05C4..060B \& ...) \& \ep{Terminal_Punctuation: Y*} (Short: \ep{Term=Y}, \ep{Term}) (276: \& [!,.:;?], U+037E, U+0387, U+0589, \& U+05C3, U+060C ...) \& \ep{Tfng} \ep{Tifinagh} (= \ep{Script_Extensions= \& Tifinagh}) (NOT \ep{Block=Tifinagh}) (59) \& \ep{Tglg} \ep{Tagalog} (= \ep{Script_Extensions= \& Tagalog}) (NOT \ep{Block=Tagalog}) (25) \& \ep{Thaa} \ep{Thaana} (= \ep{Script_Extensions= \& Thaana}) (NOT \ep{Block=Thaana}) (66) \& \ep{Thaana} \ep{Script_Extensions=Thaana} (Short: \& \ep{Thaa}; NOT \ep{Block=Thaana}) (66) \& \ep{Thai} \ep{Script_Extensions=Thai} (NOT \ep{Block= \& Thai}) (86) \& \ep{Tibetan} \ep{Script_Extensions=Tibetan} (Short: \& \ep{Tibt}; NOT \ep{Block=Tibetan}) (207) \& \ep{Tibt} \ep{Tibetan} (= \ep{Script_Extensions= \& Tibetan}) (NOT \ep{Block=Tibetan}) (207) \& \ep{Tifinagh} \ep{Script_Extensions=Tifinagh} (Short: \& \ep{Tfng}; NOT \ep{Block=Tifinagh}) (59) \& \ep{Tirh} \ep{Tirhuta} (= \ep{Script_Extensions= \& Tirhuta}) (NOT \ep{Block=Tirhuta}) (97) \& \ep{Tirhuta} \ep{Script_Extensions=Tirhuta} (Short: \& \ep{Tirh}; NOT \ep{Block=Tirhuta}) (97) \& \ep{Title} \ep{Titlecase} (/i= Cased=Yes) (31) \& \ep{Titlecase} (= \ep{Gc=Lt}) (Short: \ep{Title}; /i= \& Cased=Yes) (31: U+01C5, U+01C8, U+01CB, \& U+01F2, U+1F88..1F8F, U+1F98..1F9F ...) \& \ep{Titlecase_Letter} \ep{General_Category=Titlecase_Letter} \& (Short: \ep{Lt}; /i= General_Category= \& Cased_Letter) (31) \& \ep{Tnsa} \ep{Tangsa} (= \ep{Script_Extensions= \& Tangsa}) (NOT \ep{Block=Tangsa}) (89) \& \ep{Toto} \ep{Script_Extensions=Toto} (NOT \ep{Block= \& Toto}) (31) \& X \ep{Transport_And_Map} \ep{Transport_And_Map_Symbols} (= \ep{Block= \& Transport_And_Map_Symbols}) (128) \& X \ep{Transport_And_Map_Symbols} \ep{Block=Transport_And_Map_Symbols} \& (Short: \ep{InTransportAndMap}) (128) \& X \ep{UCAS} \ep{Unified_Canadian_Aboriginal_Syllabics} \& (= \ep{Block= \& Unified_Canadian_Aboriginal_Syllabics}) \& (640) \& X \ep{UCAS_Ext} \ep{Unified_Canadian_Aboriginal_Syllabics_\- \& Extended} (= \ep{Block= \& Unified_Canadian_Aboriginal_Syllabics_\- \& Extended}) (80) \& X \ep{UCAS_Ext_A} \ep{Unified_Canadian_Aboriginal_Syllabics_\- \& Extended_A} (= \ep{Block= \& Unified_Canadian_Aboriginal_Syllabics_\- \& Extended_A}) (16) \& \ep{Ugar} \ep{Ugaritic} (= \ep{Script_Extensions= \& Ugaritic}) (NOT \ep{Block=Ugaritic}) (31) \& \ep{Ugaritic} \ep{Script_Extensions=Ugaritic} (Short: \& \ep{Ugar}; NOT \ep{Block=Ugaritic}) (31) \& \ep{UIdeo} \ep{Unified_Ideograph} (= \& \ep{Unified_Ideograph=Y}) (92_865) \& \ep{UIdeo: *} \ep{Unified_Ideograph: *} \& \ep{Unassigned} \ep{General_Category=Unassigned} (Short: \& \ep{Cn}) (829_834 plus all above\-Unicode \& code points) \& \ep{Unicode} \ep{Any} (1_114_112) \& X \ep{Unified_Canadian_Aboriginal_Syllabics} \ep{Block= \& Unified_Canadian_Aboriginal_Syllabics} \& (Short: \ep{InUCAS}) (640) \& X \ep{Unified_Canadian_Aboriginal_Syllabics_Extended} \ep{Block= \& Unified_Canadian_Aboriginal_Syllabics_\- \& Extended} (Short: \ep{InUCASExt}) (80) \& X \ep{Unified_Canadian_Aboriginal_Syllabics_Extended_A} \ep{Block= \& Unified_Canadian_Aboriginal_Syllabics_\- \& Extended_A} (Short: \ep{InUCASExtA}) (16) \& \ep{Unified_Ideograph} \ep{Unified_Ideograph=Y} (Short: \ep{UIdeo}) \& (92_865) \& \ep{Unified_Ideograph: N*} (Short: \ep{UIdeo=N}, \eP{UIdeo}) \& (1_021_247 plus all above\-Unicode code \& points: U+0000..33FF, U+4DC0..4DFF, \& U+A000..FA0D, U+FA10, U+FA12, \& U+FA15..FA1E ...) \& \ep{Unified_Ideograph: Y*} (Short: \ep{UIdeo=Y}, \ep{UIdeo}) (92_865: \& U+3400..4DBF, U+4E00..9FFF, \& U+FA0E..FA0F, U+FA11, U+FA13..FA14, \& U+FA1F ...) \& \ep{Unknown} \ep{Script_Extensions=Unknown} (Short: \& \ep{Zzzz}) (969_350 plus all above\- \& Unicode code points) \& \ep{Upper} \ep{XPosixUpper} (= \ep{Uppercase=Y}) (/i= \& Cased=Yes) (1951) \& \ep{Upper: *} \ep{Uppercase: *} \& \ep{Uppercase} \ep{XPosixUpper} (= \ep{Uppercase=Y}) (/i= \& Cased=Yes) (1951) \& \ep{Uppercase: N*} (Short: \ep{Upper=N}, \eP{Upper}; /i= Cased= \& No) (1_112_161 plus all above\-Unicode \& code points: [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq \& \e(\e)*+,\e\-.\e/0\-9:;<=>?\e@\e[\e\e\e]\e^_\`a\-z\e{ \& \e|\e}~\ex7f\-\exbf\exd7\exdf\-\exff], U+0101, \& U+0103, U+0105, U+0107, U+0109 ...) \& \ep{Uppercase: Y*} (Short: \ep{Upper=Y}, \ep{Upper}; /i= Cased= \& Yes) (1951: [A\-Z\exc0\-\exd6\exd8\-\exde], \& U+0100, U+0102, U+0104, U+0106, U+0108 \& ...) \& \ep{Uppercase_Letter} \ep{General_Category=Uppercase_Letter} \& (Short: \ep{Lu}; /i= General_Category= \& Cased_Letter) (1831) \& \ep{Vai} \ep{Script_Extensions=Vai} (NOT \ep{Block= \& Vai}) (300) \& \ep{Vaii} \ep{Vai} (= \ep{Script_Extensions=Vai}) (NOT \& \ep{Block=Vai}) (300) \& \ep{Variation_Selector} \ep{Variation_Selector=Y} (Short: \ep{VS}; \& NOT \ep{Variation_Selectors}) (260) \& \ep{Variation_Selector: N*} (Short: \ep{VS=N}, \eP{VS}) (1_113_852 \& plus all above\-Unicode code points: \& U+0000..180A, U+180E, U+1810..FDFF, \& U+FE10..E00FF, U+E01F0..infinity) \& \ep{Variation_Selector: Y*} (Short: \ep{VS=Y}, \ep{VS}) (260: \& U+180B..180D, U+180F, U+FE00..FE0F, \& U+E0100..E01EF) \& X \ep{Variation_Selectors} \ep{Block=Variation_Selectors} (Short: \& \ep{InVS}) (16) \& X \ep{Variation_Selectors_Supplement} \ep{Block= \& Variation_Selectors_Supplement} (Short: \& \ep{InVSSup}) (240) \& X \ep{Vedic_Ext} \ep{Vedic_Extensions} (= \ep{Block= \& Vedic_Extensions}) (48) \& X \ep{Vedic_Extensions} \ep{Block=Vedic_Extensions} (Short: \& \ep{InVedicExt}) (48) \& X \ep{Vertical_Forms} \ep{Block=Vertical_Forms} (16) \& \ep{Vertical_Orientation: R} \ep{Vertical_Orientation=Rotated} \& (786_641 plus all above\-Unicode code \& points) \& \ep{Vertical_Orientation: Rotated} (Short: \ep{Vo=R}) (786_641 plus \& all above\-Unicode code points: [\ex00\- \& \exa6\exa8\exaa\-\exad\exaf\-\exb0\exb2\-\exbb\exbf\- \& \exd6\exd8\-\exf6\exf8\-\exff], U+0100..02E9, \& U+02EC..10FF, U+1200..1400, \& U+1680..18AF, U+1900..2015 ...) \& \ep{Vertical_Orientation: Tr} \ep{Vertical_Orientation= \& Transformed_Rotated} (47) \& \ep{Vertical_Orientation: Transformed_Rotated} (Short: \ep{Vo=Tr}) \& (47: U+2329..232A, U+3008..3011, \& U+3014..301F, U+3030, U+30A0, U+30FC ...) \& \ep{Vertical_Orientation: Transformed_Upright} (Short: \ep{Vo=Tu}) \& (148: U+3001..3002, U+3041, U+3043, \& U+3045, U+3047, U+3049 ...) \& \ep{Vertical_Orientation: Tu} \ep{Vertical_Orientation= \& Transformed_Upright} (148) \& \ep{Vertical_Orientation: U} \ep{Vertical_Orientation=Upright} \& (327_276) \& \ep{Vertical_Orientation: Upright} (Short: \ep{Vo=U}) (327_276: \& [\exa7\exa9\exae\exb1\exbc\-\exbe\exd7\exf7], \& U+02EA..02EB, U+1100..11FF, \& U+1401..167F, U+18B0..18FF, U+2016 ...) \& \ep{VertSpace} \ev (7: [\en\ecK\ef\er\ex85], U+2028..2029) \& \ep{Vith} \ep{Vithkuqi} (= \ep{Script_Extensions= \& Vithkuqi}) (NOT \ep{Block=Vithkuqi}) (70) \& \ep{Vithkuqi} \ep{Script_Extensions=Vithkuqi} (Short: \& \ep{Vith}; NOT \ep{Block=Vithkuqi}) (70) \& \ep{Vo: *} \ep{Vertical_Orientation: *} \& \ep{VS} \ep{Variation_Selector} (= \& \ep{Variation_Selector=Y}) (NOT \& \ep{Variation_Selectors}) (260) \& \ep{VS: *} \ep{Variation_Selector: *} \& X \ep{VS_Sup} \ep{Variation_Selectors_Supplement} (= \& \ep{Block= \& Variation_Selectors_Supplement}) (240) \& \ep{Wancho} \ep{Script_Extensions=Wancho} (Short: \& \ep{Wcho}; NOT \ep{Block=Wancho}) (59) \& \ep{Wara} \ep{Warang_Citi} (= \ep{Script_Extensions= \& Warang_Citi}) (NOT \ep{Block= \& Warang_Citi}) (84) \& \ep{Warang_Citi} \ep{Script_Extensions=Warang_Citi} (Short: \& \ep{Wara}; NOT \ep{Block=Warang_Citi}) (84) \& \ep{WB: *} \ep{Word_Break: *} \& \ep{Wcho} \ep{Wancho} (= \ep{Script_Extensions= \& Wancho}) (NOT \ep{Block=Wancho}) (59) \& \ep{White_Space} \ep{White_Space=Y} (Short: \ep{Space}) (25) \& \ep{White_Space: N*} (Short: \ep{Space=N}, \eP{Space}) (1_114_087 \& plus all above\-Unicode code points: [^ \& \et\en\ecK\ef\er\ex20\ex85\exa0], U+0100..167F, \& U+1681..1FFF, U+200B..2027, \& U+202A..202E, U+2030..205E ...) \& \ep{White_Space: Y*} (Short: \ep{Space=Y}, \ep{Space}) (25: [\et \& \en\ecK\ef\er\ex20\ex85\exa0], U+1680, \& U+2000..200A, U+2028..2029, U+202F, \& U+205F ...) \& \ep{Word} \ep{XPosixWord} (135_202) \& \ep{Word_Break: ALetter} (Short: \ep{WB=LE}) (29_336: [A\-Za\-z\exaa \& \exb5\exba\exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+0100..02D7, U+02DE..02FF, \& U+0370..0374, U+0376..0377, U+037A..037D \& ...) \& \ep{Word_Break: CR} (Short: \ep{WB=CR}) (1: [\er]) \& \ep{Word_Break: Double_Quote} (Short: \ep{WB=DQ}) (1: [\e"]) \& \ep{Word_Break: DQ} \ep{Word_Break=Double_Quote} (1) \& \ep{Word_Break: E_Base} (Short: \ep{WB=EB}) (0) \& \ep{Word_Break: E_Base_GAZ} (Short: \ep{WB=EBG}) (0) \& \ep{Word_Break: E_Modifier} (Short: \ep{WB=EM}) (0) \& \ep{Word_Break: EB} \ep{Word_Break=E_Base} (0) \& \ep{Word_Break: EBG} \ep{Word_Break=E_Base_GAZ} (0) \& \ep{Word_Break: EM} \ep{Word_Break=E_Modifier} (0) \& \ep{Word_Break: EX} \ep{Word_Break=ExtendNumLet} (11) \& \ep{Word_Break: Extend} (Short: \ep{WB=Extend}) (2512: \& U+0300..036F, U+0483..0489, \& U+0591..05BD, U+05BF, U+05C1..05C2, \& U+05C4..05C5 ...) \& \ep{Word_Break: ExtendNumLet} (Short: \ep{WB=EX}) (11: [_], U+202F, \& U+203F..2040, U+2054, U+FE33..FE34, \& U+FE4D..FE4F ...) \& \ep{Word_Break: FO} \ep{Word_Break=Format} (64) \& \ep{Word_Break: Format} (Short: \ep{WB=FO}) (64: [\exad], \& U+0600..0605, U+061C, U+06DD, U+070F, \& U+0890..0891 ...) \& \ep{Word_Break: GAZ} \ep{Word_Break=Glue_After_Zwj} (0) \& \ep{Word_Break: Glue_After_Zwj} (Short: \ep{WB=GAZ}) (0) \& \ep{Word_Break: Hebrew_Letter} (Short: \ep{WB=HL}) (75: \& U+05D0..05EA, U+05EF..05F2, U+FB1D, \& U+FB1F..FB28, U+FB2A..FB36, U+FB38..FB3C \& ...) \& \ep{Word_Break: HL} \ep{Word_Break=Hebrew_Letter} (75) \& \ep{Word_Break: KA} \ep{Word_Break=Katakana} (330) \& \ep{Word_Break: Katakana} (Short: \ep{WB=KA}) (330: U+3031..3035, \& U+309B..309C, U+30A0..30FA, \& U+30FC..30FF, U+31F0..31FF, U+32D0..32FE \& ...) \& \ep{Word_Break: LE} \ep{Word_Break=ALetter} (29_336) \& \ep{Word_Break: LF} (Short: \ep{WB=LF}) (1: [\en]) \& \ep{Word_Break: MB} \ep{Word_Break=MidNumLet} (7) \& \ep{Word_Break: MidLetter} (Short: \ep{WB=ML}) (9: [:\exb7], U+0387, \& U+055F, U+05F4, U+2027, U+FE13 ...) \& \ep{Word_Break: MidNum} (Short: \ep{WB=MN}) (15: [,;], U+037E, \& U+0589, U+060C..060D, U+066C, U+07F8 ...) \& \ep{Word_Break: MidNumLet} (Short: \ep{WB=MB}) (7: [.], \& U+2018..2019, U+2024, U+FE52, U+FF07, \& U+FF0E) \& \ep{Word_Break: ML} \ep{Word_Break=MidLetter} (9) \& \ep{Word_Break: MN} \ep{Word_Break=MidNum} (15) \& \ep{Word_Break: Newline} (Short: \ep{WB=NL}) (5: [\ecK\ef\ex85], \& U+2028..2029) \& \ep{Word_Break: NL} \ep{Word_Break=Newline} (5) \& \ep{Word_Break: NU} \ep{Word_Break=Numeric} (661) \& \ep{Word_Break: Numeric} (Short: \ep{WB=NU}) (661: [0\-9], \& U+0660..0669, U+066B, U+06F0..06F9, \& U+07C0..07C9, U+0966..096F ...) \& \ep{Word_Break: Other} (Short: \ep{WB=XX}) (1_081_042 plus all \& above\-Unicode code points: [^\en\ecK\ef\er \& \ex20\e"\e\*(Aq,.0\-9:;A\-Z_a\-z\ex85\exaa\exad\exb5 \& \exb7\exba\exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+02D8..02DD, U+0375, U+0378..0379, \& U+0380..0385, U+038B ...) \& \ep{Word_Break: Regional_Indicator} (Short: \ep{WB=RI}) (26: \& U+1F1E6..1F1FF) \& \ep{Word_Break: RI} \ep{Word_Break=Regional_Indicator} (26) \& \ep{Word_Break: Single_Quote} (Short: \ep{WB=SQ}) (1: [\e\*(Aq]) \& \ep{Word_Break: SQ} \ep{Word_Break=Single_Quote} (1) \& \ep{Word_Break: WSegSpace} (Short: \ep{WB=WSegSpace}) (14: [\ex20], \& U+1680, U+2000..2006, U+2008..200A, \& U+205F, U+3000) \& \ep{Word_Break: XX} \ep{Word_Break=Other} (1_081_042 plus all \& above\-Unicode code points) \& \ep{Word_Break: ZWJ} (Short: \ep{WB=ZWJ}) (1: U+200D) \& \ep{WSpace} \ep{White_Space} (= \ep{White_Space=Y}) (25) \& \ep{WSpace: *} \ep{White_Space: *} \& \ep{XDigit} \ep{XPosixXDigit} (= \ep{Hex_Digit=Y}) (44) \& \ep{XID_Continue} \ep{XID_Continue=Y} (Short: \ep{XIDC}) \& (135_053) \& \ep{XID_Continue: N*} (Short: \ep{XIDC=N}, \eP{XIDC}) (979_059 \& plus all above\-Unicode code points: \& [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/:;<=>? \& \e@\e[\e\e\e]\e^\`\e{\e|\e}~\ex7f\-\exa9\exab\-\exb4 \& \exb6\exb8\-\exb9\exbb\-\exbf\exd7\exf7], \& U+02C2..02C5, U+02D2..02DF, \& U+02E5..02EB, U+02ED, U+02EF..02FF ...) \& \ep{XID_Continue: Y*} (Short: \ep{XIDC=Y}, \ep{XIDC}) (135_053: \& [0\-9A\-Z_a\-z\exaa\exb5\exb7\exba\exc0\-\exd6 \& \exd8\-\exf6\exf8\-\exff], U+0100..02C1, \& U+02C6..02D1, U+02E0..02E4, U+02EC, \& U+02EE ...) \& \ep{XID_Start} \ep{XID_Start=Y} (Short: \ep{XIDS}) (131_974) \& \ep{XID_Start: N*} (Short: \ep{XIDS=N}, \eP{XIDS}) (982_138 \& plus all above\-Unicode code points: \& [\ex00\-\ex20!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/0\-9:;<= \& >?\e@\e[\e\e\e]\e^_\`\e{\e|\e}~\ex7f\-\exa9\exab\-\exb4 \& \exb6\-\exb9\exbb\-\exbf\exd7\exf7], \& U+02C2..02C5, U+02D2..02DF, \& U+02E5..02EB, U+02ED, U+02EF..036F ...) \& \ep{XID_Start: Y*} (Short: \ep{XIDS=Y}, \ep{XIDS}) (131_974: \& [A\-Za\-z\exaa\exb5\exba\exc0\-\exd6\exd8\-\exf6 \& \exf8\-\exff], U+0100..02C1, U+02C6..02D1, \& U+02E0..02E4, U+02EC, U+02EE ...) \& \ep{XIDC} \ep{XID_Continue} (= \ep{XID_Continue=Y}) \& (135_053) \& \ep{XIDC: *} \ep{XID_Continue: *} \& \ep{XIDS} \ep{XID_Start} (= \ep{XID_Start=Y}) (131_974) \& \ep{XIDS: *} \ep{XID_Start: *} \& \ep{Xpeo} \ep{Old_Persian} (= \ep{Script_Extensions= \& Old_Persian}) (NOT \ep{Block= \& Old_Persian}) (50) \& \ep{XPerlSpace} \ep{XPosixSpace} (25) \& \ep{XPosixAlnum} Alphabetic and (decimal) Numeric (Short: \& \ep{Alnum}) (134_056: [0\-9A\-Za\-z\exaa\exb5 \& \exba\exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+0100..02C1, U+02C6..02D1, \& U+02E0..02E4, U+02EC, U+02EE ...) \& \ep{XPosixAlpha} \ep{Alphabetic=Y} (Short: \ep{Alpha}) \& (133_396) \& \ep{XPosixBlank} \eh, Horizontal white space (Short: \& \ep{Blank}) (18: [\et\ex20\exa0], U+1680, \& U+2000..200A, U+202F, U+205F, U+3000) \& \ep{XPosixCntrl} \ep{General_Category=Control} Control \& characters (Short: \ep{Cc}) (65) \& \ep{XPosixDigit} \ep{General_Category=Decimal_Number} [0\-9] \& + all other decimal digits (Short: \& \ep{Nd}) (660) \& \ep{XPosixGraph} Characters that are graphical (Short: \& \ep{Graph}) (282_146: [!\e"#\e$\e%&\e\*(Aq \& \e(\e)*+,\e\-.\e/0\-9:;<=>?\e@A\-Z\e[\e\e\e]\e^_\`a\-z \& \e{\e|\e}~\exa1\-\exff], U+0100..0377, \& U+037A..037F, U+0384..038A, U+038C, \& U+038E..03A1 ...) \& \ep{XPosixLower} \ep{Lowercase=Y} (Short: \ep{Lower}; /i= \& Cased=Yes) (2471) \& \ep{XPosixPrint} Characters that are graphical plus space \& characters (but no controls) (Short: \& \ep{Print}) (282_163: [\ex20\-\ex7e\exa0\- \& \exff], U+0100..0377, U+037A..037F, \& U+0384..038A, U+038C, U+038E..03A1 ...) \& \ep{XPosixPunct} \ep{Punct} + ASCII\-range \ep{Symbol} (828: \& [!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/:;<=>?\e@\e[\e\e\e] \& \e^_\`\e{\e|\e}~\exa1\exa7\exab\exb6\-\exb7\exbb \& \exbf], U+037E, U+0387, U+055A..055F, \& U+0589..058A, U+05BE ...) \& \ep{XPosixSpace} \es including beyond ASCII and vertical tab \& (Short: \ep{SpacePerl}) (25: [\et\en\ecK\ef \& \er\ex20\ex85\exa0], U+1680, U+2000..200A, \& U+2028..2029, U+202F, U+205F ...) \& \ep{XPosixUpper} \ep{Uppercase=Y} (Short: \ep{Upper}; /i= \& Cased=Yes) (1951) \& \ep{XPosixWord} \ew, including beyond ASCII; = \ep{Alnum} + \& \epM + \ep{Pc} + \ep{Join_Control} (Short: \& \ep{Word}) (135_202: [0\-9A\-Z_a\-z\exaa\exb5 \& \exba\exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+0100..02C1, U+02C6..02D1, \& U+02E0..02E4, U+02EC, U+02EE ...) \& \ep{XPosixXDigit} \ep{Hex_Digit=Y} (Short: \ep{Hex}) (44) \& \ep{Xsux} \ep{Cuneiform} (= \ep{Script_Extensions= \& Cuneiform}) (NOT \ep{Block=Cuneiform}) \& (1234) \& \ep{Yezi} \ep{Yezidi} (= \ep{Script_Extensions= \& Yezidi}) (NOT \ep{Block=Yezidi}) (60) \& \ep{Yezidi} \ep{Script_Extensions=Yezidi} (Short: \& \ep{Yezi}; NOT \ep{Block=Yezidi}) (60) \& \ep{Yi} \ep{Script_Extensions=Yi} (1246) \& X \ep{Yi_Radicals} \ep{Block=Yi_Radicals} (64) \& X \ep{Yi_Syllables} \ep{Block=Yi_Syllables} (1168) \& \ep{Yiii} \ep{Yi} (= \ep{Script_Extensions=Yi}) (1246) \& X \ep{Yijing} \ep{Yijing_Hexagram_Symbols} (= \ep{Block= \& Yijing_Hexagram_Symbols}) (64) \& X \ep{Yijing_Hexagram_Symbols} \ep{Block=Yijing_Hexagram_Symbols} \& (Short: \ep{InYijing}) (64) \& \ep{Z} \epZ \ep{Separator} (= \ep{General_Category= \& Separator}) (19) \& \ep{Zanabazar_Square} \ep{Script_Extensions=Zanabazar_Square} \& (Short: \ep{Zanb}; NOT \ep{Block= \& Zanabazar_Square}) (72) \& \ep{Zanb} \ep{Zanabazar_Square} (= \& \ep{Script_Extensions=Zanabazar_Square}) \& (NOT \ep{Block=Zanabazar_Square}) (72) \& \ep{Zinh} \ep{Inherited} (= \ep{Script_Extensions= \& Inherited}) (586) \& \ep{Zl} \ep{Line_Separator} (= \ep{General_Category= \& Line_Separator}) (1) \& X \ep{Znamenny_Music} \ep{Znamenny_Musical_Notation} (= \ep{Block= \& Znamenny_Musical_Notation}) (208) \& X \ep{Znamenny_Musical_Notation} \ep{Block=Znamenny_Musical_Notation} \& (Short: \ep{InZnamennyMusic}) (208) \& \ep{Zp} \ep{Paragraph_Separator} (= \& \ep{General_Category= \& Paragraph_Separator}) (1) \& \ep{Zs} \ep{Space_Separator} (= \& \ep{General_Category=Space_Separator}) \& (17) \& \ep{Zyyy} \ep{Common} (= \ep{Script_Extensions= \& Common}) (7824) \& \ep{Zzzz} \ep{Unknown} (= \ep{Script_Extensions= \& Unknown}) (969_350 plus all above\- \& Unicode code points) .Ve .ie n .SS "Legal ""\ep{}"" and ""\eP{}"" constructs that match no characters" .el .SS "Legal \f(CW\ep{}\fP and \f(CW\eP{}\fP constructs that match no characters" .IX Subsection "Legal p{} and P{} constructs that match no characters" Unicode has some property-value pairs that currently don't match anything. This happens generally either because they are obsolete, or they exist for symmetry with other forms, but no language has yet been encoded that uses them. In this version of Unicode, the following match zero code points: .IP "\ep{Canonical_Combining_Class=Attached_Below_Left}" 4 .IX Item "p{Canonical_Combining_Class=Attached_Below_Left}" .PD 0 .IP "\ep{Canonical_Combining_Class=CCC133}" 4 .IX Item "p{Canonical_Combining_Class=CCC133}" .IP "\ep{Grapheme_Cluster_Break=E_Base}" 4 .IX Item "p{Grapheme_Cluster_Break=E_Base}" .IP "\ep{Grapheme_Cluster_Break=E_Base_GAZ}" 4 .IX Item "p{Grapheme_Cluster_Break=E_Base_GAZ}" .IP "\ep{Grapheme_Cluster_Break=E_Modifier}" 4 .IX Item "p{Grapheme_Cluster_Break=E_Modifier}" .IP "\ep{Grapheme_Cluster_Break=Glue_After_Zwj}" 4 .IX Item "p{Grapheme_Cluster_Break=Glue_After_Zwj}" .IP "\ep{Word_Break=E_Base}" 4 .IX Item "p{Word_Break=E_Base}" .IP "\ep{Word_Break=E_Base_GAZ}" 4 .IX Item "p{Word_Break=E_Base_GAZ}" .IP "\ep{Word_Break=E_Modifier}" 4 .IX Item "p{Word_Break=E_Modifier}" .IP "\ep{Word_Break=Glue_After_Zwj}" 4 .IX Item "p{Word_Break=Glue_After_Zwj}" .PD .SH "Properties accessible through Unicode::UCD" .IX Header "Properties accessible through Unicode::UCD" The value of any Unicode (not including Perl extensions) character property mentioned above for any single code point is available through \&\*(L"\fBcharprop()\fR\*(R" in Unicode::UCD. \*(L"\fBcharprops_all()\fR\*(R" in Unicode::UCD returns the values of all the Unicode properties for a given code point. .PP Besides these, all the Unicode character properties mentioned above (except for those marked as for internal use by Perl) are also accessible by \*(L"\fBprop_invlist()\fR\*(R" in Unicode::UCD. .PP Due to their nature, not all Unicode character properties are suitable for regular expression matches, nor \f(CW\*(C`prop_invlist()\*(C'\fR. The remaining non-provisional, non-internal ones are accessible via \&\*(L"\fBprop_invmap()\fR\*(R" in Unicode::UCD (except for those that this Perl installation hasn't included; see below for which those are). .PP For compatibility with other parts of Perl, all the single forms given in the table in the section above are recognized. \s-1BUT,\s0 there are some ambiguities between some Perl extensions and the Unicode properties, all of which are silently resolved in favor of the official Unicode property. To avoid surprises, you should only use \&\f(CW\*(C`prop_invmap()\*(C'\fR for forms listed in the table below, which omits the non-recommended ones. The affected forms are the Perl single form equivalents of Unicode properties, such as \f(CW\*(C`\ep{sc}\*(C'\fR being a single-form equivalent of \&\f(CW\*(C`\ep{gc=sc}\*(C'\fR, which is treated by \f(CW\*(C`prop_invmap()\*(C'\fR as the \f(CW\*(C`Script\*(C'\fR property, whose short name is \f(CW\*(C`sc\*(C'\fR. The table indicates the current ambiguities in the \&\s-1INFO\s0 column, beginning with the word \f(CW"NOT"\fR. .PP The standard Unicode properties listed below are documented in ; Perl_Decimal_Digit is documented in \&\*(L"\fBprop_invmap()\fR\*(R" in Unicode::UCD. The other Perl extensions are in \&\*(L"Other Properties\*(R" in perlunicode; .PP The first column in the table is a name for the property; the second column is an alternative name, if any, plus possibly some annotations. The alternative name is the property's full name, unless that would simply repeat the first column, in which case the second column indicates the property's short name (if different). The annotations are given only in the entry for the full name. The annotations for binary properties include a list of the first few ranges that the property matches. To avoid any ambiguity, the \s-1SPACE\s0 character is represented as \f(CW\*(C`\ex20\*(C'\fR. .PP If a property is obsolete, etc, the entry will be flagged with the same characters used in the table in the section above, like \fBD\fR or \fBS\fR. .PP .Vb 1 \& NAME INFO \& \& Age \& AHex ASCII_Hex_Digit \& All (Perl extension). All code points, \& including those above Unicode. Same as \& qr/./s. U+0000..infinity \& Alnum XPosixAlnum. (Perl extension) \& Alpha Alphabetic \& Alphabetic (Short: Alpha). [A\-Za\-z\exaa\exb5\exba\exc0\- \& \exd6\exd8\-\exf6\exf8\-\exff], U+0100..02C1, \& U+02C6..02D1, U+02E0..02E4, U+02EC, U+02EE \& ... \& Any (Perl extension). All Unicode code \& points. U+0000..10FFFF \& ASCII Block=Basic_Latin. (Perl extension). \& [\ex00\-\ex7f] \& ASCII_Hex_Digit (Short: AHex). [0\-9A\-Fa\-f] \& Assigned (Perl extension). All assigned code \& points. U+0000..0377, U+037A..037F, \& U+0384..038A, U+038C, U+038E..03A1, \& U+03A3..052F ... \& Bc Bidi_Class \& Bidi_C Bidi_Control \& Bidi_Class (Short: bc) \& Bidi_Control (Short: Bidi_C). U+061C, U+200E..200F, \& U+202A..202E, U+2066..2069 \& Bidi_M Bidi_Mirrored \& Bidi_Mirrored (Short: Bidi_M). [\e(\e)<>\e[\e]\e{\e}\exab \& \exbb], U+0F3A..0F3D, U+169B..169C, \& U+2039..203A, U+2045..2046, U+207D..207E \& ... \& Bidi_Mirroring_Glyph (Short: bmg) \& Bidi_Paired_Bracket (Short: bpb) \& Bidi_Paired_Bracket_Type (Short: bpt) \& Blank XPosixBlank. (Perl extension) \& Blk Block \& Block (Short: blk) \& Bmg Bidi_Mirroring_Glyph \& Bpb Bidi_Paired_Bracket \& Bpt Bidi_Paired_Bracket_Type \& Canonical_Combining_Class (Short: ccc) \& Case_Folding (Short: cf) \& Case_Ignorable (Short: CI). [\e\*(Aq.:\e^\`\exa8\exad\exaf\exb4 \& \exb7\-\exb8], U+02B0..036F, U+0374..0375, \& U+037A, U+0384..0385, U+0387 ... \& Cased [A\-Za\-z\exaa\exb5\exba\exc0\-\exd6\exd8\-\exf6\exf8\- \& \exff], U+0100..01BA, U+01BC..01BF, \& U+01C4..0293, U+0295..02B8, U+02C0..02C1 \& ... \& Category General_Category \& Ccc Canonical_Combining_Class \& CE Composition_Exclusion \& Cf Case_Folding; NOT \*(Aqcf\*(Aq meaning \& \*(AqGeneral_Category=Format\*(Aq \& Changes_When_Casefolded (Short: CWCF). [A\-Z\exb5\exc0\-\exd6\exd8\- \& \exdf], U+0100, U+0102, U+0104, U+0106, \& U+0108 ... \& Changes_When_Casemapped (Short: CWCM). [A\-Za\-z\exb5\exc0\-\exd6\exd8\- \& \exf6\exf8\-\exff], U+0100..0137, \& U+0139..018C, U+018E..019A, U+019C..01A9, \& U+01AC..01B9 ... \& Changes_When_Lowercased (Short: CWL). [A\-Z\exc0\-\exd6\exd8\-\exde], \& U+0100, U+0102, U+0104, U+0106, U+0108 ... \& Changes_When_NFKC_Casefolded (Short: CWKCF). [A\-Z\exa0\exa8\exaa \& \exad\exaf\exb2\-\exb5\exb8\-\exba\exbc\-\exbe\exc0\- \& \exd6\exd8\-\exdf], U+0100, U+0102, U+0104, \& U+0106, U+0108 ... \& Changes_When_Titlecased (Short: CWT). [a\-z\exb5\exdf\-\exf6\exf8\- \& \exff], U+0101, U+0103, U+0105, U+0107, \& U+0109 ... \& Changes_When_Uppercased (Short: CWU). [a\-z\exb5\exdf\-\exf6\exf8\- \& \exff], U+0101, U+0103, U+0105, U+0107, \& U+0109 ... \& CI Case_Ignorable \& Cntrl XPosixCntrl (=General_Category=Control). \& (Perl extension) \& Comp_Ex Full_Composition_Exclusion \& Composition_Exclusion (Short: CE). U+0958..095F, U+09DC..09DD, \& U+09DF, U+0A33, U+0A36, U+0A59..0A5B ... \& CWCF Changes_When_Casefolded \& CWCM Changes_When_Casemapped \& CWKCF Changes_When_NFKC_Casefolded \& CWL Changes_When_Lowercased \& CWT Changes_When_Titlecased \& CWU Changes_When_Uppercased \& Dash [\e\-], U+058A, U+05BE, U+1400, U+1806, \& U+2010..2015 ... \& Decomposition_Mapping (Short: dm) \& Decomposition_Type (Short: dt) \& Default_Ignorable_Code_Point (Short: DI). [\exad], U+034F, U+061C, \& U+115F..1160, U+17B4..17B5, U+180B..180F \& ... \& Dep Deprecated \& Deprecated (Short: Dep). U+0149, U+0673, U+0F77, \& U+0F79, U+17A3..17A4, U+206A..206F ... \& DI Default_Ignorable_Code_Point \& Dia Diacritic \& Diacritic (Short: Dia). [\e^\`\exa8\exaf\exb4\exb7\-\exb8], \& U+02B0..034E, U+0350..0357, U+035D..0362, \& U+0374..0375, U+037A ... \& Digit XPosixDigit (=General_Category= \& Decimal_Number). (Perl extension) \& Dm Decomposition_Mapping \& Dt Decomposition_Type \& Ea East_Asian_Width \& East_Asian_Width (Short: ea) \& EBase Emoji_Modifier_Base \& EComp Emoji_Component \& EMod Emoji_Modifier \& Emoji [#*0\-9\exa9\exae], U+203C, U+2049, U+2122, \& U+2139, U+2194..2199 ... \& Emoji_Component (Short: EComp). [#*0\-9], U+200D, U+20E3, \& U+FE0F, U+1F1E6..1F1FF, U+1F3FB..1F3FF ... \& Emoji_Modifier (Short: EMod). U+1F3FB..1F3FF \& Emoji_Modifier_Base (Short: EBase). U+261D, U+26F9, \& U+270A..270D, U+1F385, U+1F3C2..1F3C4, \& U+1F3C7 ... \& Emoji_Presentation (Short: EPres). U+231A..231B, \& U+23E9..23EC, U+23F0, U+23F3, \& U+25FD..25FE, U+2614..2615 ... \& EPres Emoji_Presentation \& EqUIdeo Equivalent_Unified_Ideograph \& Equivalent_Unified_Ideograph (Short: EqUIdeo) \& Ext Extender \& Extended_Pictographic (Short: ExtPict). [\exa9\exae], U+203C, \& U+2049, U+2122, U+2139, U+2194..2199 ... \& Extender (Short: Ext). [\exb7], U+02D0..02D1, \& U+0640, U+07FA, U+0B55, U+0E46 ... \& ExtPict Extended_Pictographic \& Full_Composition_Exclusion (Short: Comp_Ex). U+0340..0341, \& U+0343..0344, U+0374, U+037E, U+0387, \& U+0958..095F ... \& Gc General_Category \& GCB Grapheme_Cluster_Break \& General_Category (Short: gc) \& Gr_Base Grapheme_Base \& Gr_Ext Grapheme_Extend \& Graph XPosixGraph. (Perl extension) \& Grapheme_Base (Short: Gr_Base). [\ex20\-\ex7e\exa0\-\exac \& \exae\-\exff], U+0100..02FF, U+0370..0377, \& U+037A..037F, U+0384..038A, U+038C ... \& Grapheme_Cluster_Break (Short: GCB) \& Grapheme_Extend (Short: Gr_Ext). U+0300..036F, \& U+0483..0489, U+0591..05BD, U+05BF, \& U+05C1..05C2, U+05C4..05C5 ... \& Hangul_Syllable_Type (Short: hst) \& Hex Hex_Digit \& Hex_Digit (Short: Hex). [0\-9A\-Fa\-f], U+FF10..FF19, \& U+FF21..FF26, U+FF41..FF46 \& HorizSpace XPosixBlank. (Perl extension) \& Hst Hangul_Syllable_Type \& D Hyphen [\e\-\exad], U+058A, U+1806, U+2010..2011, \& U+2E17, U+30FB ... Supplanted by \& Line_Break property values; see \& www.unicode.org/reports/tr14 \& ID_Continue (Short: IDC). [0\-9A\-Z_a\-z\exaa\exb5\exb7 \& \exba\exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+0100..02C1, U+02C6..02D1, U+02E0..02E4, \& U+02EC, U+02EE ... \& ID_Start (Short: IDS). [A\-Za\-z\exaa\exb5\exba\exc0\- \& \exd6\exd8\-\exf6\exf8\-\exff], U+0100..02C1, \& U+02C6..02D1, U+02E0..02E4, U+02EC, U+02EE \& ... \& IDC ID_Continue \& Identifier_Status \& Identifier_Type \& Ideo Ideographic \& Ideographic (Short: Ideo). U+3006..3007, \& U+3021..3029, U+3038..303A, U+3400..4DBF, \& U+4E00..9FFF, U+F900..FA6D ... \& IDS ID_Start \& IDS_Binary_Operator (Short: IDSB). U+2FF0..2FF1, U+2FF4..2FFB \& IDS_Trinary_Operator (Short: IDST). U+2FF2..2FF3 \& IDSB IDS_Binary_Operator \& IDST IDS_Trinary_Operator \& In Present_In. (Perl extension) \& Indic_Positional_Category (Short: InPC) \& Indic_Syllabic_Category (Short: InSC) \& InPC Indic_Positional_Category \& InSC Indic_Syllabic_Category \& Isc ISO_Comment; NOT \*(Aqisc\*(Aq meaning \& \*(AqGeneral_Category=Other\*(Aq \& ISO_Comment (Short: isc) \& Jg Joining_Group \& Join_C Join_Control \& Join_Control (Short: Join_C). U+200C..200D \& Joining_Group (Short: jg) \& Joining_Type (Short: jt) \& Jt Joining_Type \& Lb Line_Break \& Lc Lowercase_Mapping; NOT \*(Aqlc\*(Aq meaning \& \*(AqGeneral_Category=Cased_Letter\*(Aq \& Line_Break (Short: lb) \& LOE Logical_Order_Exception \& Logical_Order_Exception (Short: LOE). U+0E40..0E44, U+0EC0..0EC4, \& U+19B5..19B7, U+19BA, U+AAB5..AAB6, U+AAB9 \& ... \& Lower Lowercase \& Lowercase (Short: Lower). [a\-z\exaa\exb5\exba\exdf\- \& \exf6\exf8\-\exff], U+0101, U+0103, U+0105, \& U+0107, U+0109 ... \& Lowercase_Mapping (Short: lc) \& Math [+<=>\e^\e|~\exac\exb1\exd7\exf7], U+03D0..03D2, \& U+03D5, U+03F0..03F1, U+03F4..03F6, \& U+0606..0608 ... \& Na Name \& Na1 Unicode_1_Name \& Name (Short: na) \& Name_Alias \& NChar Noncharacter_Code_Point \& NFC_QC NFC_Quick_Check \& NFC_Quick_Check (Short: NFC_QC) \& NFD_QC NFD_Quick_Check \& NFD_Quick_Check (Short: NFD_QC) \& NFKC_Casefold (Short: NFKC_CF) \& NFKC_CF NFKC_Casefold \& NFKC_QC NFKC_Quick_Check \& NFKC_Quick_Check (Short: NFKC_QC) \& NFKD_QC NFKD_Quick_Check \& NFKD_Quick_Check (Short: NFKD_QC) \& Noncharacter_Code_Point (Short: NChar). U+FDD0..FDEF, \& U+FFFE..FFFF, U+1FFFE..1FFFF, \& U+2FFFE..2FFFF, U+3FFFE..3FFFF, \& U+4FFFE..4FFFF ... \& Nt Numeric_Type \& Numeric_Type (Short: nt) \& Numeric_Value (Short: nv) \& Nv Numeric_Value \& Pat_Syn Pattern_Syntax \& Pat_WS Pattern_White_Space \& Pattern_Syntax (Short: Pat_Syn). [!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-. \& \e/:;<=>?\e@\e[\e\e\e]\e^\`\e{\e|\e}~\exa1\-\exa7\exa9 \& \exab\-\exac\exae\exb0\-\exb1\exb6\exbb\exbf\exd7 \& \exf7], U+2010..2027, U+2030..203E, \& U+2041..2053, U+2055..205E, U+2190..245F \& ... \& Pattern_White_Space (Short: Pat_WS). [\et\en\ecK\ef\er\ex20\ex85], \& U+200E..200F, U+2028..2029 \& PCM Prepended_Concatenation_Mark \& Perl_Decimal_Digit (Perl extension) \& PerlSpace PosixSpace. (Perl extension) \& PerlWord PosixWord. (Perl extension) \& PosixAlnum (Perl extension). [0\-9A\-Za\-z] \& PosixAlpha (Perl extension). [A\-Za\-z] \& PosixBlank (Perl extension). [\et\ex20] \& PosixCntrl (Perl extension). ASCII control \& characters. ACK, BEL, BS, CAN, CR, DC1, \& DC2, DC3, DC4, DEL, DLE, ENQ, EOM, EOT, \& ESC, ETB, ETX, FF, FS, GS, HT, LF, NAK, \& NUL, RS, SI, SO, SOH, STX, SUB, SYN, US, VT \& PosixDigit (Perl extension). [0\-9] \& PosixGraph (Perl extension). [!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-. \& \e/0\-9:;<=>?\e@A\-Z\e[\e\e\e]\e^_\`a\-z\e{\e|\e}~] \& PosixLower (Perl extension). [a\-z] \& PosixPrint (Perl extension). [\ex20\-\ex7e] \& PosixPunct (Perl extension). [!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-. \& \e/:;<=>?\e@\e[\e\e\e]\e^_\`\e{\e|\e}~] \& PosixSpace (Perl extension). [\et\en\ecK\ef\er\ex20] \& PosixUpper (Perl extension). [A\-Z] \& PosixWord (Perl extension). \ew, restricted to \& ASCII. [0\-9A\-Z_a\-z] \& PosixXDigit ASCII_Hex_Digit. (Perl extension). \& [0\-9A\-Fa\-f] \& Prepended_Concatenation_Mark (Short: PCM). U+0600..0605, U+06DD, \& U+070F, U+0890..0891, U+08E2, U+110BD ... \& Present_In (Short: In). (Perl extension) \& Print XPosixPrint. (Perl extension) \& Punct General_Category=Punctuation. (Perl \& extension). [!\e"#\e%&\e\*(Aq\e(\e)*,\e\-.\e/:;?\e@ \& \e[\e\e\e]_\e{\e}\exa1\exa7\exab\exb6\-\exb7\exbb\exbf], \& U+037E, U+0387, U+055A..055F, \& U+0589..058A, U+05BE ... \& QMark Quotation_Mark \& Quotation_Mark (Short: QMark). [\e"\e\*(Aq\exab\exbb], \& U+2018..201F, U+2039..203A, U+2E42, \& U+300C..300F, U+301D..301F ... \& Radical U+2E80..2E99, U+2E9B..2EF3, U+2F00..2FD5 \& Regional_Indicator (Short: RI). U+1F1E6..1F1FF \& RI Regional_Indicator \& SB Sentence_Break \& Sc Script; NOT \*(Aqsc\*(Aq meaning \& \*(AqGeneral_Category=Currency_Symbol\*(Aq \& Scf Simple_Case_Folding \& Script (Short: sc) \& Script_Extensions (Short: scx) \& Scx Script_Extensions \& SD Soft_Dotted \& Sentence_Break (Short: SB) \& Sentence_Terminal (Short: STerm). [!.?], U+0589, \& U+061D..061F, U+06D4, U+0700..0702, U+07F9 \& ... \& Sfc Simple_Case_Folding \& Simple_Case_Folding (Short: scf) \& Simple_Lowercase_Mapping (Short: slc) \& Simple_Titlecase_Mapping (Short: stc) \& Simple_Uppercase_Mapping (Short: suc) \& Slc Simple_Lowercase_Mapping \& Soft_Dotted (Short: SD). [i\-j], U+012F, U+0249, \& U+0268, U+029D, U+02B2 ... \& Space White_Space \& SpacePerl XPosixSpace. (Perl extension) \& Stc Simple_Titlecase_Mapping \& STerm Sentence_Terminal \& Suc Simple_Uppercase_Mapping \& Tc Titlecase_Mapping \& Term Terminal_Punctuation \& Terminal_Punctuation (Short: Term). [!,.:;?], U+037E, U+0387, \& U+0589, U+05C3, U+060C ... \& Title Titlecase. (Perl extension) \& Titlecase (Short: Title). (Perl extension). (= \& \ep{Gc=Lt}). U+01C5, U+01C8, U+01CB, \& U+01F2, U+1F88..1F8F, U+1F98..1F9F ... \& Titlecase_Mapping (Short: tc) \& Uc Uppercase_Mapping \& UIdeo Unified_Ideograph \& Unicode Any. (Perl extension) \& Unicode_1_Name (Short: na1) \& Unified_Ideograph (Short: UIdeo). U+3400..4DBF, \& U+4E00..9FFF, U+FA0E..FA0F, U+FA11, \& U+FA13..FA14, U+FA1F ... \& Upper Uppercase \& Uppercase (Short: Upper). [A\-Z\exc0\-\exd6\exd8\-\exde], \& U+0100, U+0102, U+0104, U+0106, U+0108 ... \& Uppercase_Mapping (Short: uc) \& Variation_Selector (Short: VS). U+180B..180D, U+180F, \& U+FE00..FE0F, U+E0100..E01EF \& Vertical_Orientation (Short: vo) \& VertSpace (Perl extension). \ev. [\en\ecK\ef\er\ex85], \& U+2028..2029 \& Vo Vertical_Orientation \& VS Variation_Selector \& WB Word_Break \& White_Space (Short: WSpace). [\et\en\ecK\ef\er\ex20\ex85 \& \exa0], U+1680, U+2000..200A, U+2028..2029, \& U+202F, U+205F ... \& Word XPosixWord. (Perl extension) \& Word_Break (Short: WB) \& WSpace White_Space \& XDigit XPosixXDigit (=Hex_Digit). (Perl \& extension) \& XID_Continue (Short: XIDC). [0\-9A\-Z_a\-z\exaa\exb5\exb7 \& \exba\exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+0100..02C1, U+02C6..02D1, U+02E0..02E4, \& U+02EC, U+02EE ... \& XID_Start (Short: XIDS). [A\-Za\-z\exaa\exb5\exba\exc0\- \& \exd6\exd8\-\exf6\exf8\-\exff], U+0100..02C1, \& U+02C6..02D1, U+02E0..02E4, U+02EC, U+02EE \& ... \& XIDC XID_Continue \& XIDS XID_Start \& XPerlSpace XPosixSpace. (Perl extension) \& XPosixAlnum (Short: Alnum). (Perl extension). \& Alphabetic and (decimal) Numeric. [0\-9A\- \& Za\-z\exaa\exb5\exba\exc0\-\exd6\exd8\-\exf6\exf8\- \& \exff], U+0100..02C1, U+02C6..02D1, \& U+02E0..02E4, U+02EC, U+02EE ... \& XPosixAlpha Alphabetic. (Perl extension). [A\-Za\-z \& \exaa\exb5\exba\exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+0100..02C1, U+02C6..02D1, U+02E0..02E4, \& U+02EC, U+02EE ... \& XPosixBlank (Short: Blank). (Perl extension). \eh, \& Horizontal white space. [\et\ex20\exa0], \& U+1680, U+2000..200A, U+202F, U+205F, \& U+3000 \& XPosixCntrl General_Category=Control (Short: Cntrl). \& (Perl extension). Control characters. \& [\ex00\-\ex1f\ex7f\-\ex9f] \& XPosixDigit General_Category=Decimal_Number (Short: \& Digit). (Perl extension). [0\-9] + all \& other decimal digits. [0\-9], \& U+0660..0669, U+06F0..06F9, U+07C0..07C9, \& U+0966..096F, U+09E6..09EF ... \& XPosixGraph (Short: Graph). (Perl extension). \& Characters that are graphical. [!\e"#\e$ \& \e%&\e\*(Aq\e(\e)*+,\e\-.\e/0\-9:;<=>?\e@A\-Z\e[\e\e\e] \& \e^_\`a\-z\e{\e|\e}~\exa1\-\exff], U+0100..0377, \& U+037A..037F, U+0384..038A, U+038C, \& U+038E..03A1 ... \& XPosixLower Lowercase. (Perl extension). [a\-z\exaa \& \exb5\exba\exdf\-\exf6\exf8\-\exff], U+0101, \& U+0103, U+0105, U+0107, U+0109 ... \& XPosixPrint (Short: Print). (Perl extension). \& Characters that are graphical plus space \& characters (but no controls). [\ex20\-\ex7e \& \exa0\-\exff], U+0100..0377, U+037A..037F, \& U+0384..038A, U+038C, U+038E..03A1 ... \& XPosixPunct (Perl extension). \ep{Punct} + ASCII\-range \& \ep{Symbol}. [!\e"#\e$\e%&\e\*(Aq\e(\e)*+,\e\-.\e/:;<= \& >?\e@\e[\e\e\e]\e^_\`\e{\e|\e}~\exa1\exa7\exab\exb6\- \& \exb7\exbb\exbf], U+037E, U+0387, \& U+055A..055F, U+0589..058A, U+05BE ... \& XPosixSpace (Perl extension). \es including beyond \& ASCII and vertical tab. [\et\en\ecK\ef\er\ex20 \& \ex85\exa0], U+1680, U+2000..200A, \& U+2028..2029, U+202F, U+205F ... \& XPosixUpper Uppercase. (Perl extension). [A\-Z\exc0\- \& \exd6\exd8\-\exde], U+0100, U+0102, U+0104, \& U+0106, U+0108 ... \& XPosixWord (Short: Word). (Perl extension). \ew, \& including beyond ASCII; = \ep{Alnum} + \epM \& + \ep{Pc} + \ep{Join_Control}. [0\-9A\-Z_a\-z \& \exaa\exb5\exba\exc0\-\exd6\exd8\-\exf6\exf8\-\exff], \& U+0100..02C1, U+02C6..02D1, U+02E0..02E4, \& U+02EC, U+02EE ... \& XPosixXDigit Hex_Digit (Short: XDigit). (Perl \& extension). [0\-9A\-Fa\-f], U+FF10..FF19, \& U+FF21..FF26, U+FF41..FF46 .Ve .SH "Properties accessible through other means" .IX Header "Properties accessible through other means" Certain properties are accessible also via core function calls. These are: .PP .Vb 3 \& Lowercase_Mapping lc() and lcfirst() \& Titlecase_Mapping ucfirst() \& Uppercase_Mapping uc() .Ve .PP Also, Case_Folding is accessible through the \f(CW\*(C`/i\*(C'\fR modifier in regular expressions, the \f(CW\*(C`\eF\*(C'\fR transliteration escape, and the \f(CW\*(C`fc\*(C'\fR operator. .PP Besides being able to say \f(CW\*(C`\ep{Name=...}\*(C'\fR, the Name and Name_Aliases properties are accessible through the \f(CW\*(C`\eN{}\*(C'\fR interpolation in double-quoted strings and regular expressions; and functions \f(CW\*(C`charnames::viacode()\*(C'\fR, \&\f(CW\*(C`charnames::vianame()\*(C'\fR, and \f(CW\*(C`charnames::string_vianame()\*(C'\fR (which require a \&\f(CW\*(C`use charnames ();\*(C'\fR to be specified. .PP Finally, most properties related to decomposition are accessible via Unicode::Normalize. .SH "Unicode character properties that are NOT accepted by Perl" .IX Header "Unicode character properties that are NOT accepted by Perl" Perl will generate an error for a few character properties in Unicode when used in a regular expression. The non-Unihan ones are listed below, with the reasons they are not accepted, perhaps with work-arounds. The short names for the properties are listed enclosed in (parentheses). As described after the list, an installation can change the defaults and choose to accept any of these. The list is machine generated based on the choices made for the installation that generated this document. .IP "\fIExpands_On_NFC\fR (\s-1XO_NFC\s0)" 4 .IX Item "Expands_On_NFC (XO_NFC)" .PD 0 .IP "\fIExpands_On_NFD\fR (\s-1XO_NFD\s0)" 4 .IX Item "Expands_On_NFD (XO_NFD)" .IP "\fIExpands_On_NFKC\fR (\s-1XO_NFKC\s0)" 4 .IX Item "Expands_On_NFKC (XO_NFKC)" .IP "\fIExpands_On_NFKD\fR (\s-1XO_NFKD\s0)" 4 .IX Item "Expands_On_NFKD (XO_NFKD)" .PD Deprecated by Unicode. These are characters that expand to more than one character in the specified normalization form, but whether they actually take up more bytes or not depends on the encoding being used. For example, a \s-1UTF\-8\s0 encoded character may expand to a different number of bytes than a \s-1UTF\-32\s0 encoded character. .IP "\fIGrapheme_Link\fR (Gr_Link)" 4 .IX Item "Grapheme_Link (Gr_Link)" Duplicates ccc=vr (Canonical_Combining_Class=Virama) .IP "\fIJamo_Short_Name\fR (\s-1JSN\s0)" 4 .IX Item "Jamo_Short_Name (JSN)" .PD 0 .IP "\fIOther_Alphabetic\fR (OAlpha)" 4 .IX Item "Other_Alphabetic (OAlpha)" .IP "\fIOther_Default_Ignorable_Code_Point\fR (\s-1ODI\s0)" 4 .IX Item "Other_Default_Ignorable_Code_Point (ODI)" .IP "\fIOther_Grapheme_Extend\fR (OGr_Ext)" 4 .IX Item "Other_Grapheme_Extend (OGr_Ext)" .IP "\fIOther_ID_Continue\fR (\s-1OIDC\s0)" 4 .IX Item "Other_ID_Continue (OIDC)" .IP "\fIOther_ID_Start\fR (\s-1OIDS\s0)" 4 .IX Item "Other_ID_Start (OIDS)" .IP "\fIOther_Lowercase\fR (OLower)" 4 .IX Item "Other_Lowercase (OLower)" .IP "\fIOther_Math\fR (OMath)" 4 .IX Item "Other_Math (OMath)" .IP "\fIOther_Uppercase\fR (OUpper)" 4 .IX Item "Other_Uppercase (OUpper)" .PD Used by Unicode internally for generating other properties and not intended to be used stand-alone .IP "\fIScript=Katakana_Or_Hiragana\fR (sc=Hrkt)" 4 .IX Item "Script=Katakana_Or_Hiragana (sc=Hrkt)" Obsolete. All code points previously matched by this have been moved to \*(L"Script=Common\*(R". Consider instead using \*(L"Script_Extensions=Katakana\*(R" or \*(L"Script_Extensions=Hiragana\*(R" (or both) .IP "\fIScript_Extensions=Katakana_Or_Hiragana\fR (scx=Hrkt)" 4 .IX Item "Script_Extensions=Katakana_Or_Hiragana (scx=Hrkt)" All code points that would be matched by this are matched by either \*(L"Script_Extensions=Katakana\*(R" or \*(L"Script_Extensions=Hiragana\*(R" .PP An installation can choose to allow any of these to be matched by downloading the Unicode database from to \&\f(CW$Config{privlib}\fR/\fIunicore/\fR in the Perl source tree, changing the controlling lists contained in the program \&\f(CW$Config{privlib}\fR/\fIunicore/mktables\fR and then re-compiling and installing. (\f(CW%Config\fR is available from the Config module). .PP Also, perl can be recompiled to operate on an earlier version of the Unicode standard. Further information is at \&\f(CW$Config{privlib}\fR/\fIunicore/README.perl\fR. .SH "Other information in the Unicode data base" .IX Header "Other information in the Unicode data base" The Unicode data base is delivered in two different formats. The \s-1XML\s0 version is valid for more modern Unicode releases. The other version is a collection of files. The two are intended to give equivalent information. Perl uses the older form; this allows you to recompile Perl to use early Unicode releases. .PP The only non-character property that Perl currently supports is Named Sequences, in which a sequence of code points is given a name and generally treated as a single entity. (Perl supports these via the \f(CW\*(C`\eN{...}\*(C'\fR double-quotish construct, \&\*(L"charnames::string_vianame(name)\*(R" in charnames, and \*(L"\fBnamedseq()\fR\*(R" in Unicode::UCD. .PP Below is a list of the files in the Unicode data base that Perl doesn't currently use, along with very brief descriptions of their purposes. Some of the names of the files have been shortened from those that Unicode uses, in order to allow them to be distinguishable from similarly named files on file systems for which only the first 8 characters of a name are significant. .IP "\fIauxiliary/GraphemeBreakTest.html\fR" 4 .IX Item "auxiliary/GraphemeBreakTest.html" .PD 0 .IP "\fIauxiliary/LineBreakTest.html\fR" 4 .IX Item "auxiliary/LineBreakTest.html" .IP "\fIauxiliary/SentenceBreakTest.html\fR" 4 .IX Item "auxiliary/SentenceBreakTest.html" .IP "\fIauxiliary/WordBreakTest.html\fR" 4 .IX Item "auxiliary/WordBreakTest.html" .PD Documentation of validation Tests .IP "\fIBidiCharacterTest.txt\fR" 4 .IX Item "BidiCharacterTest.txt" .PD 0 .IP "\fIBidiTest.txt\fR" 4 .IX Item "BidiTest.txt" .IP "\fINormTest.txt\fR" 4 .IX Item "NormTest.txt" .PD Validation Tests .IP "\fICJKRadicals.txt\fR" 4 .IX Item "CJKRadicals.txt" Maps the kRSUnicode property values to corresponding code points .IP "\fIemoji/ReadMe.txt\fR" 4 .IX Item "emoji/ReadMe.txt" .PD 0 .IP "\fIReadMe.txt\fR" 4 .IX Item "ReadMe.txt" .PD Documentation .IP "\fIEmojiSources.txt\fR" 4 .IX Item "EmojiSources.txt" Maps certain Unicode code points to their legacy Japanese cell-phone values .IP "\fIextracted/DName.txt\fR" 4 .IX Item "extracted/DName.txt" This file adds no new information not already present in other files .IP "\fIIndex.txt\fR" 4 .IX Item "Index.txt" Alphabetical index of Unicode characters .IP "\fINamedSqProv.txt\fR" 4 .IX Item "NamedSqProv.txt" Named sequences proposed for inclusion in a later version of the Unicode Standard; if you need them now, you can append this file to \fINamedSequences.txt\fR and recompile perl .IP "\fINamesList.html\fR" 4 .IX Item "NamesList.html" Describes the format and contents of \fINamesList.txt\fR .IP "\fINamesList.txt\fR" 4 .IX Item "NamesList.txt" Annotated list of characters .IP "\fINormalizationCorrections.txt\fR" 4 .IX Item "NormalizationCorrections.txt" Documentation of corrections already incorporated into the Unicode data base .IP "\fINushuSources.txt\fR" 4 .IX Item "NushuSources.txt" Specifies source material for Nushu characters .IP "\fIStandardizedVariants.html\fR" 4 .IX Item "StandardizedVariants.html" Obsoleted as of Unicode 9.0, but previously provided a visual display of the standard variant sequences derived from \fIStandardizedVariants.txt\fR. .IP "\fIStandardizedVariants.txt\fR" 4 .IX Item "StandardizedVariants.txt" Certain glyph variations for character display are standardized. This lists the non-Unihan ones; the Unihan ones are also not used by Perl, and are in a separate Unicode data base .IP "\fITangutSources.txt\fR" 4 .IX Item "TangutSources.txt" Specifies source mappings for Tangut ideographs and components. This data file also includes informative radical-stroke values that are used internally by Unicode .IP "\fIUSourceData.txt\fR" 4 .IX Item "USourceData.txt" Documentation of status and cross reference of proposals for encoding by Unicode of Unihan characters .IP "\fIUSourceGlyphs.pdf\fR" 4 .IX Item "USourceGlyphs.pdf" Pictures of the characters in \fIUSourceData.txt\fR .SH "SEE ALSO" .IX Header "SEE ALSO" .PP perlrecharclass .PP perlunicode