Modules

  • ABCDE
  • FGHIL
  • MNOPS
  • TUX

Tools

perluniprops

Perl 5 version 16.2 documentation
Recently read

perluniprops

NAME

perluniprops - Index of Unicode Version 6.1.0 character properties in Perl

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. (Other information in the Unicode data base below briefly mentions other data that Unicode provides.)

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 (accessible via the CPAN module Unicode::Unihan) and certain deprecated or Unicode-internal properties. (An installation may choose to recompile Perl's tables to change this. See Unicode character properties that are NOT accepted by Perl.)

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 Properties accessible through Unicode::UCD.

Perl also provides some additional extensions and short-cut synonyms for Unicode properties.

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 Other Properties 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 http://www.unicode.org/reports/tr44/.

Note that you can define your own properties; see User-Defined Character Properties in perlunicode.

Properties accessible through \p{} and \P{}

The Perl regular expression \p{} and \P{} constructs give access to most of the Unicode character properties. The table below shows all these constructs, both single and compound forms.

Compound forms 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, \p{Script: Greek} and \p{Script=Greek} both mean to match characters whose Script property is Greek.

Single forms, like \p{Greek} , are mostly Perl-defined shortcuts for their equivalent compound forms. The table shows these equivalences. (In our example, \p{Greek} is a just a shortcut for \p{Script=Greek} .) There are also a few Perl-defined single forms that are not shortcuts for a compound form. One such is \p{Word} . These are also listed in the table.

In parsing these constructs, Perl always ignores Upper/lower case differences everywhere within the {braces}. Thus \p{Greek} means the same thing as \p{greek} . But note that changing the case of the "p" or "P" before the left brace completely changes the meaning of the construct, from "match" (for \p{} ) to "doesn't match" (for \P{} ). Casing in this document is for improved legibility.

Also, white space, hyphens, and underscores are also normally ignored everywhere between the {braces}, and hence can be freely added or removed even if the /x modifier hasn't been specified on the regular expression. But a 'T' at the beginning of an entry in the table below means that tighter (stricter) rules are used for that entry:

  • Single form (\p{name} ) tighter rules:

    White space, hyphens, and underscores ARE significant except for:

    • white space adjacent to a non-word character
    • underscores separating digits in numbers

    That means, for example, that you can freely add or remove white space adjacent to (but within) the braces without affecting the meaning.

  • 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.

    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.

Some properties are considered obsolete by Unicode, but still available. There are several varieties of obsolescence:

  • 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 'S' in the table.

  • 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 no warnings 'deprecated' statement. A 'D' 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.

    A deprecated property may be made unavailable in a future Perl version, so it is best to move away from them.

    A deprecated property may also be stabilized, but this fact is not shown.

  • Obsolete

    Properties marked with an 'O' 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).

Some Perl extensions are present for backwards compatibility and are discouraged from being used, but are not obsolete. An 'X' flags each such entry in the table. Future Unicode versions may force some of these extensions to be removed without warning, replaced by another property with the same name that means something different. Use the equivalent shown instead.

Matches in the Block property have shortcuts that begin with "In_". For example, \p{Block=Latin1} can be written as \p{In_Latin1} . For backward compatibility, if there is no conflict with another shortcut, these may also be written as \p{Latin1} or \p{Is_Latin1} . But, N.B., there are numerous such conflicting shortcuts. Use of these forms for Block is discouraged, and are flagged as such, not only because of the potential confusion as to what is meant, but also because a later release of Unicode may preempt the shortcut, and your program would no longer be correct. Use the "In_" form instead to avoid this, or even more clearly, use the compound form, e.g., \p{blk:latin1} . See Blocks in perlunicode for more information about this.

The table below has two columns. The left column contains the \p{} constructs to look up, possibly preceded by the flags mentioned above; and the right column contains information about them, like a description, or synonyms. It 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.

The right column will also caution you if a property means something different than what might normally be expected.

All single forms are Perl extensions; a few compound forms are as well, and are noted as such.

Numbers in (parentheses) indicate the total number of code points matched by the property. For emphasis, those properties that match no code points at all are listed as well in a separate section following the table.

Most properties match the same code points regardless of whether "/i" case-insensitive matching is specified or not. But a few properties are affected. These are shown with the notation

  1. (/i= other_property)

in the second column. Under case-insensitive matching they match the same code pode points as the property "other_property".

There is no description given for most non-Perl defined properties (See http://www.unicode.org/reports/tr44/ for that).

For compactness, '*' is used as a wildcard instead of showing all possible combinations. For example, entries like:

  1. \p{Gc: *} \p{General_Category: *}

mean that 'Gc' is a synonym for 'General_Category', and anything that is valid for the latter is also valid for the former. Similarly,

  1. \p{Is_*} \p{*}

means that if and only if, for example, \p{Foo} exists, then \p{Is_Foo} and \p{IsFoo} are also valid and all mean the same thing. And similarly, \p{Foo=Bar} means the same as \p{Is_Foo=Bar} and \p{IsFoo=Bar} . "*" here is restricted to something not beginning with an underscore.

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 NOT 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.

Note that all non-essential underscores are removed in the display of the short names below.

Legend summary:

  • * is a wild-card
  • (\d+) in the info column gives the number of code points matched by this property.
  • D means this is deprecated.
  • O means this is obsolete.
  • S means this is stabilized.
  • T means tighter (stricter) name matching applies.
  • X means use of this form is discouraged, and may not be stable.
  1. NAME INFO
  2. X \p{Aegean_Numbers} \p{Block=Aegean_Numbers} (64)
  3. T \p{Age: 1.1} \p{Age=V1_1} (33_979)
  4. T \p{Age: 2.0} \p{Age=V2_0} (144_521)
  5. T \p{Age: 2.1} \p{Age=V2_1} (2)
  6. T \p{Age: 3.0} \p{Age=V3_0} (10_307)
  7. T \p{Age: 3.1} \p{Age=V3_1} (44_978)
  8. T \p{Age: 3.2} \p{Age=V3_2} (1016)
  9. T \p{Age: 4.0} \p{Age=V4_0} (1226)
  10. T \p{Age: 4.1} \p{Age=V4_1} (1273)
  11. T \p{Age: 5.0} \p{Age=V5_0} (1369)
  12. T \p{Age: 5.1} \p{Age=V5_1} (1624)
  13. T \p{Age: 5.2} \p{Age=V5_2} (6648)
  14. T \p{Age: 6.0} \p{Age=V6_0} (2088)
  15. T \p{Age: 6.1} \p{Age=V6_1} (732)
  16. \p{Age: NA} \p{Age=Unassigned} (864_349)
  17. \p{Age: Unassigned} Code point's usage has not been assigned
  18. in any Unicode release thus far. (Short:
  19. \p{Age=NA}) (864_349)
  20. \p{Age: V1_1} Code point's usage introduced in version
  21. 1.1 (33_979)
  22. \p{Age: V2_0} Code point's usage was introduced in
  23. version 2.0; See also Property
  24. 'Present_In' (144_521)
  25. \p{Age: V2_1} Code point's usage was introduced in
  26. version 2.1; See also Property
  27. 'Present_In' (2)
  28. \p{Age: V3_0} Code point's usage was introduced in
  29. version 3.0; See also Property
  30. 'Present_In' (10_307)
  31. \p{Age: V3_1} Code point's usage was introduced in
  32. version 3.1; See also Property
  33. 'Present_In' (44_978)
  34. \p{Age: V3_2} Code point's usage was introduced in
  35. version 3.2; See also Property
  36. 'Present_In' (1016)
  37. \p{Age: V4_0} Code point's usage was introduced in
  38. version 4.0; See also Property
  39. 'Present_In' (1226)
  40. \p{Age: V4_1} Code point's usage was introduced in
  41. version 4.1; See also Property
  42. 'Present_In' (1273)
  43. \p{Age: V5_0} Code point's usage was introduced in
  44. version 5.0; See also Property
  45. 'Present_In' (1369)
  46. \p{Age: V5_1} Code point's usage was introduced in
  47. version 5.1; See also Property
  48. 'Present_In' (1624)
  49. \p{Age: V5_2} Code point's usage was introduced in
  50. version 5.2; See also Property
  51. 'Present_In' (6648)
  52. \p{Age: V6_0} Code point's usage was introduced in
  53. version 6.0; See also Property
  54. 'Present_In' (2088)
  55. \p{Age: V6_1} Code point's usage was introduced in
  56. version 6.1; See also Property
  57. 'Present_In' (732)
  58. \p{AHex} \p{PosixXDigit} (= \p{ASCII_Hex_Digit=Y})
  59. (22)
  60. \p{AHex: *} \p{ASCII_Hex_Digit: *}
  61. X \p{Alchemical} \p{Alchemical_Symbols} (= \p{Block=
  62. Alchemical_Symbols}) (128)
  63. X \p{Alchemical_Symbols} \p{Block=Alchemical_Symbols} (Short:
  64. \p{InAlchemical}) (128)
  65. \p{All} \p{Any} (1_114_112)
  66. \p{Alnum} Alphabetic and (decimal) Numeric (102_619)
  67. \p{Alpha} \p{Alphabetic=Y} (102_159)
  68. \p{Alpha: *} \p{Alphabetic: *}
  69. \p{Alphabetic} \p{Alpha} (= \p{Alphabetic=Y}) (102_159)
  70. \p{Alphabetic: N*} (Short: \p{Alpha=N}, \P{Alpha}) (1_011_953)
  71. \p{Alphabetic: Y*} (Short: \p{Alpha=Y}, \p{Alpha}) (102_159)
  72. X \p{Alphabetic_PF} \p{Alphabetic_Presentation_Forms} (=
  73. \p{Block=Alphabetic_Presentation_Forms})
  74. (80)
  75. X \p{Alphabetic_Presentation_Forms} \p{Block=
  76. Alphabetic_Presentation_Forms} (Short:
  77. \p{InAlphabeticPF}) (80)
  78. X \p{Ancient_Greek_Music} \p{Ancient_Greek_Musical_Notation} (=
  79. \p{Block=
  80. Ancient_Greek_Musical_Notation}) (80)
  81. X \p{Ancient_Greek_Musical_Notation} \p{Block=
  82. Ancient_Greek_Musical_Notation} (Short:
  83. \p{InAncientGreekMusic}) (80)
  84. X \p{Ancient_Greek_Numbers} \p{Block=Ancient_Greek_Numbers} (80)
  85. X \p{Ancient_Symbols} \p{Block=Ancient_Symbols} (64)
  86. \p{Any} [\x{0000}-\x{10FFFF}] (1_114_112)
  87. \p{Arab} \p{Arabic} (= \p{Script=Arabic}) (NOT
  88. \p{Block=Arabic}) (1234)
  89. \p{Arabic} \p{Script=Arabic} (Short: \p{Arab}; NOT
  90. \p{Block=Arabic}) (1234)
  91. X \p{Arabic_Ext_A} \p{Arabic_Extended_A} (= \p{Block=
  92. Arabic_Extended_A}) (96)
  93. X \p{Arabic_Extended_A} \p{Block=Arabic_Extended_A} (Short:
  94. \p{InArabicExtA}) (96)
  95. X \p{Arabic_Math} \p{Arabic_Mathematical_Alphabetic_Symbols}
  96. (= \p{Block=
  97. Arabic_Mathematical_Alphabetic_Symbols})
  98. (256)
  99. X \p{Arabic_Mathematical_Alphabetic_Symbols} \p{Block=
  100. Arabic_Mathematical_Alphabetic_Symbols}
  101. (Short: \p{InArabicMath}) (256)
  102. X \p{Arabic_PF_A} \p{Arabic_Presentation_Forms_A} (=
  103. \p{Block=Arabic_Presentation_Forms_A})
  104. (688)
  105. X \p{Arabic_PF_B} \p{Arabic_Presentation_Forms_B} (=
  106. \p{Block=Arabic_Presentation_Forms_B})
  107. (144)
  108. X \p{Arabic_Presentation_Forms_A} \p{Block=
  109. Arabic_Presentation_Forms_A} (Short:
  110. \p{InArabicPFA}) (688)
  111. X \p{Arabic_Presentation_Forms_B} \p{Block=
  112. Arabic_Presentation_Forms_B} (Short:
  113. \p{InArabicPFB}) (144)
  114. X \p{Arabic_Sup} \p{Arabic_Supplement} (= \p{Block=
  115. Arabic_Supplement}) (48)
  116. X \p{Arabic_Supplement} \p{Block=Arabic_Supplement} (Short:
  117. \p{InArabicSup}) (48)
  118. \p{Armenian} \p{Script=Armenian} (Short: \p{Armn}; NOT
  119. \p{Block=Armenian}) (91)
  120. \p{Armi} \p{Imperial_Aramaic} (= \p{Script=
  121. Imperial_Aramaic}) (NOT \p{Block=
  122. Imperial_Aramaic}) (31)
  123. \p{Armn} \p{Armenian} (= \p{Script=Armenian}) (NOT
  124. \p{Block=Armenian}) (91)
  125. X \p{Arrows} \p{Block=Arrows} (112)
  126. \p{ASCII} \p{Block=Basic_Latin} [[:ASCII:]] (128)
  127. \p{ASCII_Hex_Digit} \p{PosixXDigit} (= \p{ASCII_Hex_Digit=Y})
  128. (22)
  129. \p{ASCII_Hex_Digit: N*} (Short: \p{AHex=N}, \P{AHex}) (1_114_090)
  130. \p{ASCII_Hex_Digit: Y*} (Short: \p{AHex=Y}, \p{AHex}) (22)
  131. \p{Assigned} All assigned code points (249_697)
  132. \p{Avestan} \p{Script=Avestan} (Short: \p{Avst}; NOT
  133. \p{Block=Avestan}) (61)
  134. \p{Avst} \p{Avestan} (= \p{Script=Avestan}) (NOT
  135. \p{Block=Avestan}) (61)
  136. \p{Bali} \p{Balinese} (= \p{Script=Balinese}) (NOT
  137. \p{Block=Balinese}) (121)
  138. \p{Balinese} \p{Script=Balinese} (Short: \p{Bali}; NOT
  139. \p{Block=Balinese}) (121)
  140. \p{Bamu} \p{Bamum} (= \p{Script=Bamum}) (NOT
  141. \p{Block=Bamum}) (657)
  142. \p{Bamum} \p{Script=Bamum} (Short: \p{Bamu}; NOT
  143. \p{Block=Bamum}) (657)
  144. X \p{Bamum_Sup} \p{Bamum_Supplement} (= \p{Block=
  145. Bamum_Supplement}) (576)
  146. X \p{Bamum_Supplement} \p{Block=Bamum_Supplement} (Short:
  147. \p{InBamumSup}) (576)
  148. X \p{Basic_Latin} \p{ASCII} (= \p{Block=Basic_Latin}) (128)
  149. \p{Batak} \p{Script=Batak} (Short: \p{Batk}; NOT
  150. \p{Block=Batak}) (56)
  151. \p{Batk} \p{Batak} (= \p{Script=Batak}) (NOT
  152. \p{Block=Batak}) (56)
  153. \p{Bc: *} \p{Bidi_Class: *}
  154. \p{Beng} \p{Bengali} (= \p{Script=Bengali}) (NOT
  155. \p{Block=Bengali}) (92)
  156. \p{Bengali} \p{Script=Bengali} (Short: \p{Beng}; NOT
  157. \p{Block=Bengali}) (92)
  158. \p{Bidi_C} \p{Bidi_Control} (= \p{Bidi_Control=Y}) (7)
  159. \p{Bidi_C: *} \p{Bidi_Control: *}
  160. \p{Bidi_Class: AL} \p{Bidi_Class=Arabic_Letter} (1438)
  161. \p{Bidi_Class: AN} \p{Bidi_Class=Arabic_Number} (49)
  162. \p{Bidi_Class: Arabic_Letter} (Short: \p{Bc=AL}) (1438)
  163. \p{Bidi_Class: Arabic_Number} (Short: \p{Bc=AN}) (49)
  164. \p{Bidi_Class: B} \p{Bidi_Class=Paragraph_Separator} (7)
  165. \p{Bidi_Class: BN} \p{Bidi_Class=Boundary_Neutral} (4015)
  166. \p{Bidi_Class: Boundary_Neutral} (Short: \p{Bc=BN}) (4015)
  167. \p{Bidi_Class: Common_Separator} (Short: \p{Bc=CS}) (15)
  168. \p{Bidi_Class: CS} \p{Bidi_Class=Common_Separator} (15)
  169. \p{Bidi_Class: EN} \p{Bidi_Class=European_Number} (131)
  170. \p{Bidi_Class: ES} \p{Bidi_Class=European_Separator} (12)
  171. \p{Bidi_Class: ET} \p{Bidi_Class=European_Terminator} (65)
  172. \p{Bidi_Class: European_Number} (Short: \p{Bc=EN}) (131)
  173. \p{Bidi_Class: European_Separator} (Short: \p{Bc=ES}) (12)
  174. \p{Bidi_Class: European_Terminator} (Short: \p{Bc=ET}) (65)
  175. \p{Bidi_Class: L} \p{Bidi_Class=Left_To_Right} (1_098_531)
  176. \p{Bidi_Class: Left_To_Right} (Short: \p{Bc=L}) (1_098_531)
  177. \p{Bidi_Class: Left_To_Right_Embedding} (Short: \p{Bc=LRE}) (1)
  178. \p{Bidi_Class: Left_To_Right_Override} (Short: \p{Bc=LRO}) (1)
  179. \p{Bidi_Class: LRE} \p{Bidi_Class=Left_To_Right_Embedding} (1)
  180. \p{Bidi_Class: LRO} \p{Bidi_Class=Left_To_Right_Override} (1)
  181. \p{Bidi_Class: Nonspacing_Mark} (Short: \p{Bc=NSM}) (1290)
  182. \p{Bidi_Class: NSM} \p{Bidi_Class=Nonspacing_Mark} (1290)
  183. \p{Bidi_Class: ON} \p{Bidi_Class=Other_Neutral} (4447)
  184. \p{Bidi_Class: Other_Neutral} (Short: \p{Bc=ON}) (4447)
  185. \p{Bidi_Class: Paragraph_Separator} (Short: \p{Bc=B}) (7)
  186. \p{Bidi_Class: PDF} \p{Bidi_Class=Pop_Directional_Format} (1)
  187. \p{Bidi_Class: Pop_Directional_Format} (Short: \p{Bc=PDF}) (1)
  188. \p{Bidi_Class: R} \p{Bidi_Class=Right_To_Left} (4086)
  189. \p{Bidi_Class: Right_To_Left} (Short: \p{Bc=R}) (4086)
  190. \p{Bidi_Class: Right_To_Left_Embedding} (Short: \p{Bc=RLE}) (1)
  191. \p{Bidi_Class: Right_To_Left_Override} (Short: \p{Bc=RLO}) (1)
  192. \p{Bidi_Class: RLE} \p{Bidi_Class=Right_To_Left_Embedding} (1)
  193. \p{Bidi_Class: RLO} \p{Bidi_Class=Right_To_Left_Override} (1)
  194. \p{Bidi_Class: S} \p{Bidi_Class=Segment_Separator} (3)
  195. \p{Bidi_Class: Segment_Separator} (Short: \p{Bc=S}) (3)
  196. \p{Bidi_Class: White_Space} (Short: \p{Bc=WS}) (18)
  197. \p{Bidi_Class: WS} \p{Bidi_Class=White_Space} (18)
  198. \p{Bidi_Control} \p{Bidi_Control=Y} (Short: \p{BidiC}) (7)
  199. \p{Bidi_Control: N*} (Short: \p{BidiC=N}, \P{BidiC}) (1_114_105)
  200. \p{Bidi_Control: Y*} (Short: \p{BidiC=Y}, \p{BidiC}) (7)
  201. \p{Bidi_M} \p{Bidi_Mirrored} (= \p{Bidi_Mirrored=Y})
  202. (545)
  203. \p{Bidi_M: *} \p{Bidi_Mirrored: *}
  204. \p{Bidi_Mirrored} \p{Bidi_Mirrored=Y} (Short: \p{BidiM})
  205. (545)
  206. \p{Bidi_Mirrored: N*} (Short: \p{BidiM=N}, \P{BidiM}) (1_113_567)
  207. \p{Bidi_Mirrored: Y*} (Short: \p{BidiM=Y}, \p{BidiM}) (545)
  208. \p{Blank} \h, Horizontal white space (19)
  209. \p{Blk: *} \p{Block: *}
  210. \p{Block: Aegean_Numbers} (Single: \p{InAegeanNumbers}) (64)
  211. \p{Block: Alchemical} \p{Block=Alchemical_Symbols} (128)
  212. \p{Block: Alchemical_Symbols} (Short: \p{Blk=Alchemical},
  213. \p{InAlchemical}) (128)
  214. \p{Block: Alphabetic_PF} \p{Block=Alphabetic_Presentation_Forms}
  215. (80)
  216. \p{Block: Alphabetic_Presentation_Forms} (Short: \p{Blk=
  217. AlphabeticPF}, \p{InAlphabeticPF}) (80)
  218. \p{Block: Ancient_Greek_Music} \p{Block=
  219. Ancient_Greek_Musical_Notation} (80)
  220. \p{Block: Ancient_Greek_Musical_Notation} (Short: \p{Blk=
  221. AncientGreekMusic},
  222. \p{InAncientGreekMusic}) (80)
  223. \p{Block: Ancient_Greek_Numbers} (Single:
  224. \p{InAncientGreekNumbers}) (80)
  225. \p{Block: Ancient_Symbols} (Single: \p{InAncientSymbols}) (64)
  226. \p{Block: Arabic} (Single: \p{InArabic}; NOT \p{Arabic} NOR
  227. \p{Is_Arabic}) (256)
  228. \p{Block: Arabic_Ext_A} \p{Block=Arabic_Extended_A} (96)
  229. \p{Block: Arabic_Extended_A} (Short: \p{Blk=ArabicExtA},
  230. \p{InArabicExtA}) (96)
  231. \p{Block: Arabic_Math} \p{Block=
  232. Arabic_Mathematical_Alphabetic_Symbols}
  233. (256)
  234. \p{Block: Arabic_Mathematical_Alphabetic_Symbols} (Short: \p{Blk=
  235. ArabicMath}, \p{InArabicMath}) (256)
  236. \p{Block: Arabic_PF_A} \p{Block=Arabic_Presentation_Forms_A} (688)
  237. \p{Block: Arabic_PF_B} \p{Block=Arabic_Presentation_Forms_B} (144)
  238. \p{Block: Arabic_Presentation_Forms_A} (Short: \p{Blk=ArabicPFA},
  239. \p{InArabicPFA}) (688)
  240. \p{Block: Arabic_Presentation_Forms_B} (Short: \p{Blk=ArabicPFB},
  241. \p{InArabicPFB}) (144)
  242. \p{Block: Arabic_Sup} \p{Block=Arabic_Supplement} (48)
  243. \p{Block: Arabic_Supplement} (Short: \p{Blk=ArabicSup},
  244. \p{InArabicSup}) (48)
  245. \p{Block: Armenian} (Single: \p{InArmenian}; NOT \p{Armenian}
  246. NOR \p{Is_Armenian}) (96)
  247. \p{Block: Arrows} (Single: \p{InArrows}) (112)
  248. \p{Block: ASCII} \p{Block=Basic_Latin} (128)
  249. \p{Block: Avestan} (Single: \p{InAvestan}; NOT \p{Avestan}
  250. NOR \p{Is_Avestan}) (64)
  251. \p{Block: Balinese} (Single: \p{InBalinese}; NOT \p{Balinese}
  252. NOR \p{Is_Balinese}) (128)
  253. \p{Block: Bamum} (Single: \p{InBamum}; NOT \p{Bamum} NOR
  254. \p{Is_Bamum}) (96)
  255. \p{Block: Bamum_Sup} \p{Block=Bamum_Supplement} (576)
  256. \p{Block: Bamum_Supplement} (Short: \p{Blk=BamumSup},
  257. \p{InBamumSup}) (576)
  258. \p{Block: Basic_Latin} (Short: \p{Blk=ASCII}, \p{ASCII}) (128)
  259. \p{Block: Batak} (Single: \p{InBatak}; NOT \p{Batak} NOR
  260. \p{Is_Batak}) (64)
  261. \p{Block: Bengali} (Single: \p{InBengali}; NOT \p{Bengali}
  262. NOR \p{Is_Bengali}) (128)
  263. \p{Block: Block_Elements} (Single: \p{InBlockElements}) (32)
  264. \p{Block: Bopomofo} (Single: \p{InBopomofo}; NOT \p{Bopomofo}
  265. NOR \p{Is_Bopomofo}) (48)
  266. \p{Block: Bopomofo_Ext} \p{Block=Bopomofo_Extended} (32)
  267. \p{Block: Bopomofo_Extended} (Short: \p{Blk=BopomofoExt},
  268. \p{InBopomofoExt}) (32)
  269. \p{Block: Box_Drawing} (Single: \p{InBoxDrawing}) (128)
  270. \p{Block: Brahmi} (Single: \p{InBrahmi}; NOT \p{Brahmi} NOR
  271. \p{Is_Brahmi}) (128)
  272. \p{Block: Braille} \p{Block=Braille_Patterns} (256)
  273. \p{Block: Braille_Patterns} (Short: \p{Blk=Braille},
  274. \p{InBraille}) (256)
  275. \p{Block: Buginese} (Single: \p{InBuginese}; NOT \p{Buginese}
  276. NOR \p{Is_Buginese}) (32)
  277. \p{Block: Buhid} (Single: \p{InBuhid}; NOT \p{Buhid} NOR
  278. \p{Is_Buhid}) (32)
  279. \p{Block: Byzantine_Music} \p{Block=Byzantine_Musical_Symbols}
  280. (256)
  281. \p{Block: Byzantine_Musical_Symbols} (Short: \p{Blk=
  282. ByzantineMusic}, \p{InByzantineMusic})
  283. (256)
  284. \p{Block: Canadian_Syllabics} \p{Block=
  285. Unified_Canadian_Aboriginal_Syllabics}
  286. (640)
  287. \p{Block: Carian} (Single: \p{InCarian}; NOT \p{Carian} NOR
  288. \p{Is_Carian}) (64)
  289. \p{Block: Chakma} (Single: \p{InChakma}; NOT \p{Chakma} NOR
  290. \p{Is_Chakma}) (80)
  291. \p{Block: Cham} (Single: \p{InCham}; NOT \p{Cham} NOR
  292. \p{Is_Cham}) (96)
  293. \p{Block: Cherokee} (Single: \p{InCherokee}; NOT \p{Cherokee}
  294. NOR \p{Is_Cherokee}) (96)
  295. \p{Block: CJK} \p{Block=CJK_Unified_Ideographs} (20_992)
  296. \p{Block: CJK_Compat} \p{Block=CJK_Compatibility} (256)
  297. \p{Block: CJK_Compat_Forms} \p{Block=CJK_Compatibility_Forms} (32)
  298. \p{Block: CJK_Compat_Ideographs} \p{Block=
  299. CJK_Compatibility_Ideographs} (512)
  300. \p{Block: CJK_Compat_Ideographs_Sup} \p{Block=
  301. CJK_Compatibility_Ideographs_Supplement}
  302. (544)
  303. \p{Block: CJK_Compatibility} (Short: \p{Blk=CJKCompat},
  304. \p{InCJKCompat}) (256)
  305. \p{Block: CJK_Compatibility_Forms} (Short: \p{Blk=CJKCompatForms},
  306. \p{InCJKCompatForms}) (32)
  307. \p{Block: CJK_Compatibility_Ideographs} (Short: \p{Blk=
  308. CJKCompatIdeographs},
  309. \p{InCJKCompatIdeographs}) (512)
  310. \p{Block: CJK_Compatibility_Ideographs_Supplement} (Short: \p{Blk=
  311. CJKCompatIdeographsSup},
  312. \p{InCJKCompatIdeographsSup}) (544)
  313. \p{Block: CJK_Ext_A} \p{Block=
  314. CJK_Unified_Ideographs_Extension_A}
  315. (6592)
  316. \p{Block: CJK_Ext_B} \p{Block=
  317. CJK_Unified_Ideographs_Extension_B}
  318. (42_720)
  319. \p{Block: CJK_Ext_C} \p{Block=
  320. CJK_Unified_Ideographs_Extension_C}
  321. (4160)
  322. \p{Block: CJK_Ext_D} \p{Block=
  323. CJK_Unified_Ideographs_Extension_D} (224)
  324. \p{Block: CJK_Radicals_Sup} \p{Block=CJK_Radicals_Supplement} (128)
  325. \p{Block: CJK_Radicals_Supplement} (Short: \p{Blk=CJKRadicalsSup},
  326. \p{InCJKRadicalsSup}) (128)
  327. \p{Block: CJK_Strokes} (Single: \p{InCJKStrokes}) (48)
  328. \p{Block: CJK_Symbols} \p{Block=CJK_Symbols_And_Punctuation} (64)
  329. \p{Block: CJK_Symbols_And_Punctuation} (Short: \p{Blk=CJKSymbols},
  330. \p{InCJKSymbols}) (64)
  331. \p{Block: CJK_Unified_Ideographs} (Short: \p{Blk=CJK}, \p{InCJK})
  332. (20_992)
  333. \p{Block: CJK_Unified_Ideographs_Extension_A} (Short: \p{Blk=
  334. CJKExtA}, \p{InCJKExtA}) (6592)
  335. \p{Block: CJK_Unified_Ideographs_Extension_B} (Short: \p{Blk=
  336. CJKExtB}, \p{InCJKExtB}) (42_720)
  337. \p{Block: CJK_Unified_Ideographs_Extension_C} (Short: \p{Blk=
  338. CJKExtC}, \p{InCJKExtC}) (4160)
  339. \p{Block: CJK_Unified_Ideographs_Extension_D} (Short: \p{Blk=
  340. CJKExtD}, \p{InCJKExtD}) (224)
  341. \p{Block: Combining_Diacritical_Marks} (Short: \p{Blk=
  342. Diacriticals}, \p{InDiacriticals}) (112)
  343. \p{Block: Combining_Diacritical_Marks_For_Symbols} (Short: \p{Blk=
  344. DiacriticalsForSymbols},
  345. \p{InDiacriticalsForSymbols}) (48)
  346. \p{Block: Combining_Diacritical_Marks_Supplement} (Short: \p{Blk=
  347. DiacriticalsSup}, \p{InDiacriticalsSup})
  348. (64)
  349. \p{Block: Combining_Half_Marks} (Short: \p{Blk=HalfMarks},
  350. \p{InHalfMarks}) (16)
  351. \p{Block: Combining_Marks_For_Symbols} \p{Block=
  352. Combining_Diacritical_Marks_For_Symbols}
  353. (48)
  354. \p{Block: Common_Indic_Number_Forms} (Short: \p{Blk=
  355. IndicNumberForms},
  356. \p{InIndicNumberForms}) (16)
  357. \p{Block: Compat_Jamo} \p{Block=Hangul_Compatibility_Jamo} (96)
  358. \p{Block: Control_Pictures} (Single: \p{InControlPictures}) (64)
  359. \p{Block: Coptic} (Single: \p{InCoptic}; NOT \p{Coptic} NOR
  360. \p{Is_Coptic}) (128)
  361. \p{Block: Counting_Rod} \p{Block=Counting_Rod_Numerals} (32)
  362. \p{Block: Counting_Rod_Numerals} (Short: \p{Blk=CountingRod},
  363. \p{InCountingRod}) (32)
  364. \p{Block: Cuneiform} (Single: \p{InCuneiform}; NOT
  365. \p{Cuneiform} NOR \p{Is_Cuneiform})
  366. (1024)
  367. \p{Block: Cuneiform_Numbers} \p{Block=
  368. Cuneiform_Numbers_And_Punctuation} (128)
  369. \p{Block: Cuneiform_Numbers_And_Punctuation} (Short: \p{Blk=
  370. CuneiformNumbers},
  371. \p{InCuneiformNumbers}) (128)
  372. \p{Block: Currency_Symbols} (Single: \p{InCurrencySymbols}) (48)
  373. \p{Block: Cypriot_Syllabary} (Single: \p{InCypriotSyllabary}) (64)
  374. \p{Block: Cyrillic} (Single: \p{InCyrillic}; NOT \p{Cyrillic}
  375. NOR \p{Is_Cyrillic}) (256)
  376. \p{Block: Cyrillic_Ext_A} \p{Block=Cyrillic_Extended_A} (32)
  377. \p{Block: Cyrillic_Ext_B} \p{Block=Cyrillic_Extended_B} (96)
  378. \p{Block: Cyrillic_Extended_A} (Short: \p{Blk=CyrillicExtA},
  379. \p{InCyrillicExtA}) (32)
  380. \p{Block: Cyrillic_Extended_B} (Short: \p{Blk=CyrillicExtB},
  381. \p{InCyrillicExtB}) (96)
  382. \p{Block: Cyrillic_Sup} \p{Block=Cyrillic_Supplement} (48)
  383. \p{Block: Cyrillic_Supplement} (Short: \p{Blk=CyrillicSup},
  384. \p{InCyrillicSup}) (48)
  385. \p{Block: Cyrillic_Supplementary} \p{Block=Cyrillic_Supplement}
  386. (48)
  387. \p{Block: Deseret} (Single: \p{InDeseret}) (80)
  388. \p{Block: Devanagari} (Single: \p{InDevanagari}; NOT
  389. \p{Devanagari} NOR \p{Is_Devanagari})
  390. (128)
  391. \p{Block: Devanagari_Ext} \p{Block=Devanagari_Extended} (32)
  392. \p{Block: Devanagari_Extended} (Short: \p{Blk=DevanagariExt},
  393. \p{InDevanagariExt}) (32)
  394. \p{Block: Diacriticals} \p{Block=Combining_Diacritical_Marks} (112)
  395. \p{Block: Diacriticals_For_Symbols} \p{Block=
  396. Combining_Diacritical_Marks_For_Symbols}
  397. (48)
  398. \p{Block: Diacriticals_Sup} \p{Block=
  399. Combining_Diacritical_Marks_Supplement}
  400. (64)
  401. \p{Block: Dingbats} (Single: \p{InDingbats}) (192)
  402. \p{Block: Domino} \p{Block=Domino_Tiles} (112)
  403. \p{Block: Domino_Tiles} (Short: \p{Blk=Domino}, \p{InDomino}) (112)
  404. \p{Block: Egyptian_Hieroglyphs} (Single:
  405. \p{InEgyptianHieroglyphs}; NOT
  406. \p{Egyptian_Hieroglyphs} NOR
  407. \p{Is_Egyptian_Hieroglyphs}) (1072)
  408. \p{Block: Emoticons} (Single: \p{InEmoticons}) (80)
  409. \p{Block: Enclosed_Alphanum} \p{Block=Enclosed_Alphanumerics} (160)
  410. \p{Block: Enclosed_Alphanum_Sup} \p{Block=
  411. Enclosed_Alphanumeric_Supplement} (256)
  412. \p{Block: Enclosed_Alphanumeric_Supplement} (Short: \p{Blk=
  413. EnclosedAlphanumSup},
  414. \p{InEnclosedAlphanumSup}) (256)
  415. \p{Block: Enclosed_Alphanumerics} (Short: \p{Blk=
  416. EnclosedAlphanum},
  417. \p{InEnclosedAlphanum}) (160)
  418. \p{Block: Enclosed_CJK} \p{Block=Enclosed_CJK_Letters_And_Months}
  419. (256)
  420. \p{Block: Enclosed_CJK_Letters_And_Months} (Short: \p{Blk=
  421. EnclosedCJK}, \p{InEnclosedCJK}) (256)
  422. \p{Block: Enclosed_Ideographic_Sup} \p{Block=
  423. Enclosed_Ideographic_Supplement} (256)
  424. \p{Block: Enclosed_Ideographic_Supplement} (Short: \p{Blk=
  425. EnclosedIdeographicSup},
  426. \p{InEnclosedIdeographicSup}) (256)
  427. \p{Block: Ethiopic} (Single: \p{InEthiopic}; NOT \p{Ethiopic}
  428. NOR \p{Is_Ethiopic}) (384)
  429. \p{Block: Ethiopic_Ext} \p{Block=Ethiopic_Extended} (96)
  430. \p{Block: Ethiopic_Ext_A} \p{Block=Ethiopic_Extended_A} (48)
  431. \p{Block: Ethiopic_Extended} (Short: \p{Blk=EthiopicExt},
  432. \p{InEthiopicExt}) (96)
  433. \p{Block: Ethiopic_Extended_A} (Short: \p{Blk=EthiopicExtA},
  434. \p{InEthiopicExtA}) (48)
  435. \p{Block: Ethiopic_Sup} \p{Block=Ethiopic_Supplement} (32)
  436. \p{Block: Ethiopic_Supplement} (Short: \p{Blk=EthiopicSup},
  437. \p{InEthiopicSup}) (32)
  438. \p{Block: General_Punctuation} (Short: \p{Blk=Punctuation},
  439. \p{InPunctuation}; NOT \p{Punct} NOR
  440. \p{Is_Punctuation}) (112)
  441. \p{Block: Geometric_Shapes} (Single: \p{InGeometricShapes}) (96)
  442. \p{Block: Georgian} (Single: \p{InGeorgian}; NOT \p{Georgian}
  443. NOR \p{Is_Georgian}) (96)
  444. \p{Block: Georgian_Sup} \p{Block=Georgian_Supplement} (48)
  445. \p{Block: Georgian_Supplement} (Short: \p{Blk=GeorgianSup},
  446. \p{InGeorgianSup}) (48)
  447. \p{Block: Glagolitic} (Single: \p{InGlagolitic}; NOT
  448. \p{Glagolitic} NOR \p{Is_Glagolitic})
  449. (96)
  450. \p{Block: Gothic} (Single: \p{InGothic}; NOT \p{Gothic} NOR
  451. \p{Is_Gothic}) (32)
  452. \p{Block: Greek} \p{Block=Greek_And_Coptic} (NOT \p{Greek}
  453. NOR \p{Is_Greek}) (144)
  454. \p{Block: Greek_And_Coptic} (Short: \p{Blk=Greek}, \p{InGreek};
  455. NOT \p{Greek} NOR \p{Is_Greek}) (144)
  456. \p{Block: Greek_Ext} \p{Block=Greek_Extended} (256)
  457. \p{Block: Greek_Extended} (Short: \p{Blk=GreekExt},
  458. \p{InGreekExt}) (256)
  459. \p{Block: Gujarati} (Single: \p{InGujarati}; NOT \p{Gujarati}
  460. NOR \p{Is_Gujarati}) (128)
  461. \p{Block: Gurmukhi} (Single: \p{InGurmukhi}; NOT \p{Gurmukhi}
  462. NOR \p{Is_Gurmukhi}) (128)
  463. \p{Block: Half_And_Full_Forms} \p{Block=
  464. Halfwidth_And_Fullwidth_Forms} (240)
  465. \p{Block: Half_Marks} \p{Block=Combining_Half_Marks} (16)
  466. \p{Block: Halfwidth_And_Fullwidth_Forms} (Short: \p{Blk=
  467. HalfAndFullForms},
  468. \p{InHalfAndFullForms}) (240)
  469. \p{Block: Hangul} \p{Block=Hangul_Syllables} (NOT \p{Hangul}
  470. NOR \p{Is_Hangul}) (11_184)
  471. \p{Block: Hangul_Compatibility_Jamo} (Short: \p{Blk=CompatJamo},
  472. \p{InCompatJamo}) (96)
  473. \p{Block: Hangul_Jamo} (Short: \p{Blk=Jamo}, \p{InJamo}) (256)
  474. \p{Block: Hangul_Jamo_Extended_A} (Short: \p{Blk=JamoExtA},
  475. \p{InJamoExtA}) (32)
  476. \p{Block: Hangul_Jamo_Extended_B} (Short: \p{Blk=JamoExtB},
  477. \p{InJamoExtB}) (80)
  478. \p{Block: Hangul_Syllables} (Short: \p{Blk=Hangul}, \p{InHangul};
  479. NOT \p{Hangul} NOR \p{Is_Hangul})
  480. (11_184)
  481. \p{Block: Hanunoo} (Single: \p{InHanunoo}; NOT \p{Hanunoo}
  482. NOR \p{Is_Hanunoo}) (32)
  483. \p{Block: Hebrew} (Single: \p{InHebrew}; NOT \p{Hebrew} NOR
  484. \p{Is_Hebrew}) (112)
  485. \p{Block: High_Private_Use_Surrogates} (Short: \p{Blk=
  486. HighPUSurrogates},
  487. \p{InHighPUSurrogates}) (128)
  488. \p{Block: High_PU_Surrogates} \p{Block=
  489. High_Private_Use_Surrogates} (128)
  490. \p{Block: High_Surrogates} (Single: \p{InHighSurrogates}) (896)
  491. \p{Block: Hiragana} (Single: \p{InHiragana}; NOT \p{Hiragana}
  492. NOR \p{Is_Hiragana}) (96)
  493. \p{Block: IDC} \p{Block=
  494. Ideographic_Description_Characters} (NOT
  495. \p{ID_Continue} NOR \p{Is_IDC}) (16)
  496. \p{Block: Ideographic_Description_Characters} (Short: \p{Blk=IDC},
  497. \p{InIDC}; NOT \p{ID_Continue} NOR
  498. \p{Is_IDC}) (16)
  499. \p{Block: Imperial_Aramaic} (Single: \p{InImperialAramaic}; NOT
  500. \p{Imperial_Aramaic} NOR
  501. \p{Is_Imperial_Aramaic}) (32)
  502. \p{Block: Indic_Number_Forms} \p{Block=Common_Indic_Number_Forms}
  503. (16)
  504. \p{Block: Inscriptional_Pahlavi} (Single:
  505. \p{InInscriptionalPahlavi}; NOT
  506. \p{Inscriptional_Pahlavi} NOR
  507. \p{Is_Inscriptional_Pahlavi}) (32)
  508. \p{Block: Inscriptional_Parthian} (Single:
  509. \p{InInscriptionalParthian}; NOT
  510. \p{Inscriptional_Parthian} NOR
  511. \p{Is_Inscriptional_Parthian}) (32)
  512. \p{Block: IPA_Ext} \p{Block=IPA_Extensions} (96)
  513. \p{Block: IPA_Extensions} (Short: \p{Blk=IPAExt}, \p{InIPAExt})
  514. (96)
  515. \p{Block: Jamo} \p{Block=Hangul_Jamo} (256)
  516. \p{Block: Jamo_Ext_A} \p{Block=Hangul_Jamo_Extended_A} (32)
  517. \p{Block: Jamo_Ext_B} \p{Block=Hangul_Jamo_Extended_B} (80)
  518. \p{Block: Javanese} (Single: \p{InJavanese}; NOT \p{Javanese}
  519. NOR \p{Is_Javanese}) (96)
  520. \p{Block: Kaithi} (Single: \p{InKaithi}; NOT \p{Kaithi} NOR
  521. \p{Is_Kaithi}) (80)
  522. \p{Block: Kana_Sup} \p{Block=Kana_Supplement} (256)
  523. \p{Block: Kana_Supplement} (Short: \p{Blk=KanaSup}, \p{InKanaSup})
  524. (256)
  525. \p{Block: Kanbun} (Single: \p{InKanbun}) (16)
  526. \p{Block: Kangxi} \p{Block=Kangxi_Radicals} (224)
  527. \p{Block: Kangxi_Radicals} (Short: \p{Blk=Kangxi}, \p{InKangxi})
  528. (224)
  529. \p{Block: Kannada} (Single: \p{InKannada}; NOT \p{Kannada}
  530. NOR \p{Is_Kannada}) (128)
  531. \p{Block: Katakana} (Single: \p{InKatakana}; NOT \p{Katakana}
  532. NOR \p{Is_Katakana}) (96)
  533. \p{Block: Katakana_Ext} \p{Block=Katakana_Phonetic_Extensions} (16)
  534. \p{Block: Katakana_Phonetic_Extensions} (Short: \p{Blk=
  535. KatakanaExt}, \p{InKatakanaExt}) (16)
  536. \p{Block: Kayah_Li} (Single: \p{InKayahLi}) (48)
  537. \p{Block: Kharoshthi} (Single: \p{InKharoshthi}; NOT
  538. \p{Kharoshthi} NOR \p{Is_Kharoshthi})
  539. (96)
  540. \p{Block: Khmer} (Single: \p{InKhmer}; NOT \p{Khmer} NOR
  541. \p{Is_Khmer}) (128)
  542. \p{Block: Khmer_Symbols} (Single: \p{InKhmerSymbols}) (32)
  543. \p{Block: Lao} (Single: \p{InLao}; NOT \p{Lao} NOR
  544. \p{Is_Lao}) (128)
  545. \p{Block: Latin_1} \p{Block=Latin_1_Supplement} (128)
  546. \p{Block: Latin_1_Sup} \p{Block=Latin_1_Supplement} (128)
  547. \p{Block: Latin_1_Supplement} (Short: \p{Blk=Latin1},
  548. \p{InLatin1}) (128)
  549. \p{Block: Latin_Ext_A} \p{Block=Latin_Extended_A} (128)
  550. \p{Block: Latin_Ext_Additional} \p{Block=
  551. Latin_Extended_Additional} (256)
  552. \p{Block: Latin_Ext_B} \p{Block=Latin_Extended_B} (208)
  553. \p{Block: Latin_Ext_C} \p{Block=Latin_Extended_C} (32)
  554. \p{Block: Latin_Ext_D} \p{Block=Latin_Extended_D} (224)
  555. \p{Block: Latin_Extended_A} (Short: \p{Blk=LatinExtA},
  556. \p{InLatinExtA}) (128)
  557. \p{Block: Latin_Extended_Additional} (Short: \p{Blk=
  558. LatinExtAdditional},
  559. \p{InLatinExtAdditional}) (256)
  560. \p{Block: Latin_Extended_B} (Short: \p{Blk=LatinExtB},
  561. \p{InLatinExtB}) (208)
  562. \p{Block: Latin_Extended_C} (Short: \p{Blk=LatinExtC},
  563. \p{InLatinExtC}) (32)
  564. \p{Block: Latin_Extended_D} (Short: \p{Blk=LatinExtD},
  565. \p{InLatinExtD}) (224)
  566. \p{Block: Lepcha} (Single: \p{InLepcha}; NOT \p{Lepcha} NOR
  567. \p{Is_Lepcha}) (80)
  568. \p{Block: Letterlike_Symbols} (Single: \p{InLetterlikeSymbols})
  569. (80)
  570. \p{Block: Limbu} (Single: \p{InLimbu}; NOT \p{Limbu} NOR
  571. \p{Is_Limbu}) (80)
  572. \p{Block: Linear_B_Ideograms} (Single: \p{InLinearBIdeograms})
  573. (128)
  574. \p{Block: Linear_B_Syllabary} (Single: \p{InLinearBSyllabary})
  575. (128)
  576. \p{Block: Lisu} (Single: \p{InLisu}) (48)
  577. \p{Block: Low_Surrogates} (Single: \p{InLowSurrogates}) (1024)
  578. \p{Block: Lycian} (Single: \p{InLycian}; NOT \p{Lycian} NOR
  579. \p{Is_Lycian}) (32)
  580. \p{Block: Lydian} (Single: \p{InLydian}; NOT \p{Lydian} NOR
  581. \p{Is_Lydian}) (32)
  582. \p{Block: Mahjong} \p{Block=Mahjong_Tiles} (48)
  583. \p{Block: Mahjong_Tiles} (Short: \p{Blk=Mahjong}, \p{InMahjong})
  584. (48)
  585. \p{Block: Malayalam} (Single: \p{InMalayalam}; NOT
  586. \p{Malayalam} NOR \p{Is_Malayalam}) (128)
  587. \p{Block: Mandaic} (Single: \p{InMandaic}; NOT \p{Mandaic}
  588. NOR \p{Is_Mandaic}) (32)
  589. \p{Block: Math_Alphanum} \p{Block=
  590. Mathematical_Alphanumeric_Symbols} (1024)
  591. \p{Block: Math_Operators} \p{Block=Mathematical_Operators} (256)
  592. \p{Block: Mathematical_Alphanumeric_Symbols} (Short: \p{Blk=
  593. MathAlphanum}, \p{InMathAlphanum}) (1024)
  594. \p{Block: Mathematical_Operators} (Short: \p{Blk=MathOperators},
  595. \p{InMathOperators}) (256)
  596. \p{Block: Meetei_Mayek} (Single: \p{InMeeteiMayek}; NOT
  597. \p{Meetei_Mayek} NOR
  598. \p{Is_Meetei_Mayek}) (64)
  599. \p{Block: Meetei_Mayek_Ext} \p{Block=Meetei_Mayek_Extensions} (32)
  600. \p{Block: Meetei_Mayek_Extensions} (Short: \p{Blk=MeeteiMayekExt},
  601. \p{InMeeteiMayekExt}) (32)
  602. \p{Block: Meroitic_Cursive} (Single: \p{InMeroiticCursive}; NOT
  603. \p{Meroitic_Cursive} NOR
  604. \p{Is_Meroitic_Cursive}) (96)
  605. \p{Block: Meroitic_Hieroglyphs} (Single:
  606. \p{InMeroiticHieroglyphs}) (32)
  607. \p{Block: Miao} (Single: \p{InMiao}; NOT \p{Miao} NOR
  608. \p{Is_Miao}) (160)
  609. \p{Block: Misc_Arrows} \p{Block=Miscellaneous_Symbols_And_Arrows}
  610. (256)
  611. \p{Block: Misc_Math_Symbols_A} \p{Block=
  612. Miscellaneous_Mathematical_Symbols_A}
  613. (48)
  614. \p{Block: Misc_Math_Symbols_B} \p{Block=
  615. Miscellaneous_Mathematical_Symbols_B}
  616. (128)
  617. \p{Block: Misc_Pictographs} \p{Block=
  618. Miscellaneous_Symbols_And_Pictographs}
  619. (768)
  620. \p{Block: Misc_Symbols} \p{Block=Miscellaneous_Symbols} (256)
  621. \p{Block: Misc_Technical} \p{Block=Miscellaneous_Technical} (256)
  622. \p{Block: Miscellaneous_Mathematical_Symbols_A} (Short: \p{Blk=
  623. MiscMathSymbolsA},
  624. \p{InMiscMathSymbolsA}) (48)
  625. \p{Block: Miscellaneous_Mathematical_Symbols_B} (Short: \p{Blk=
  626. MiscMathSymbolsB},
  627. \p{InMiscMathSymbolsB}) (128)
  628. \p{Block: Miscellaneous_Symbols} (Short: \p{Blk=MiscSymbols},
  629. \p{InMiscSymbols}) (256)
  630. \p{Block: Miscellaneous_Symbols_And_Arrows} (Short: \p{Blk=
  631. MiscArrows}, \p{InMiscArrows}) (256)
  632. \p{Block: Miscellaneous_Symbols_And_Pictographs} (Short: \p{Blk=
  633. MiscPictographs}, \p{InMiscPictographs})
  634. (768)
  635. \p{Block: Miscellaneous_Technical} (Short: \p{Blk=MiscTechnical},
  636. \p{InMiscTechnical}) (256)
  637. \p{Block: Modifier_Letters} \p{Block=Spacing_Modifier_Letters} (80)
  638. \p{Block: Modifier_Tone_Letters} (Single:
  639. \p{InModifierToneLetters}) (32)
  640. \p{Block: Mongolian} (Single: \p{InMongolian}; NOT
  641. \p{Mongolian} NOR \p{Is_Mongolian}) (176)
  642. \p{Block: Music} \p{Block=Musical_Symbols} (256)
  643. \p{Block: Musical_Symbols} (Short: \p{Blk=Music}, \p{InMusic})
  644. (256)
  645. \p{Block: Myanmar} (Single: \p{InMyanmar}; NOT \p{Myanmar}
  646. NOR \p{Is_Myanmar}) (160)
  647. \p{Block: Myanmar_Ext_A} \p{Block=Myanmar_Extended_A} (32)
  648. \p{Block: Myanmar_Extended_A} (Short: \p{Blk=MyanmarExtA},
  649. \p{InMyanmarExtA}) (32)
  650. \p{Block: NB} \p{Block=No_Block} (860_672)
  651. \p{Block: New_Tai_Lue} (Single: \p{InNewTaiLue}; NOT
  652. \p{New_Tai_Lue} NOR \p{Is_New_Tai_Lue})
  653. (96)
  654. \p{Block: NKo} (Single: \p{InNKo}; NOT \p{Nko} NOR
  655. \p{Is_NKo}) (64)
  656. \p{Block: No_Block} (Short: \p{Blk=NB}, \p{InNB}) (860_672)
  657. \p{Block: Number_Forms} (Single: \p{InNumberForms}) (64)
  658. \p{Block: OCR} \p{Block=Optical_Character_Recognition}
  659. (32)
  660. \p{Block: Ogham} (Single: \p{InOgham}; NOT \p{Ogham} NOR
  661. \p{Is_Ogham}) (32)
  662. \p{Block: Ol_Chiki} (Single: \p{InOlChiki}) (48)
  663. \p{Block: Old_Italic} (Single: \p{InOldItalic}; NOT
  664. \p{Old_Italic} NOR \p{Is_Old_Italic})
  665. (48)
  666. \p{Block: Old_Persian} (Single: \p{InOldPersian}; NOT
  667. \p{Old_Persian} NOR \p{Is_Old_Persian})
  668. (64)
  669. \p{Block: Old_South_Arabian} (Single: \p{InOldSouthArabian}) (32)
  670. \p{Block: Old_Turkic} (Single: \p{InOldTurkic}; NOT
  671. \p{Old_Turkic} NOR \p{Is_Old_Turkic})
  672. (80)
  673. \p{Block: Optical_Character_Recognition} (Short: \p{Blk=OCR},
  674. \p{InOCR}) (32)
  675. \p{Block: Oriya} (Single: \p{InOriya}; NOT \p{Oriya} NOR
  676. \p{Is_Oriya}) (128)
  677. \p{Block: Osmanya} (Single: \p{InOsmanya}; NOT \p{Osmanya}
  678. NOR \p{Is_Osmanya}) (48)
  679. \p{Block: Phags_Pa} (Single: \p{InPhagsPa}; NOT \p{Phags_Pa}
  680. NOR \p{Is_Phags_Pa}) (64)
  681. \p{Block: Phaistos} \p{Block=Phaistos_Disc} (48)
  682. \p{Block: Phaistos_Disc} (Short: \p{Blk=Phaistos}, \p{InPhaistos})
  683. (48)
  684. \p{Block: Phoenician} (Single: \p{InPhoenician}; NOT
  685. \p{Phoenician} NOR \p{Is_Phoenician})
  686. (32)
  687. \p{Block: Phonetic_Ext} \p{Block=Phonetic_Extensions} (128)
  688. \p{Block: Phonetic_Ext_Sup} \p{Block=
  689. Phonetic_Extensions_Supplement} (64)
  690. \p{Block: Phonetic_Extensions} (Short: \p{Blk=PhoneticExt},
  691. \p{InPhoneticExt}) (128)
  692. \p{Block: Phonetic_Extensions_Supplement} (Short: \p{Blk=
  693. PhoneticExtSup}, \p{InPhoneticExtSup})
  694. (64)
  695. \p{Block: Playing_Cards} (Single: \p{InPlayingCards}) (96)
  696. \p{Block: Private_Use} \p{Block=Private_Use_Area} (NOT
  697. \p{Private_Use} NOR \p{Is_Private_Use})
  698. (6400)
  699. \p{Block: Private_Use_Area} (Short: \p{Blk=PUA}, \p{InPUA}; NOT
  700. \p{Private_Use} NOR \p{Is_Private_Use})
  701. (6400)
  702. \p{Block: PUA} \p{Block=Private_Use_Area} (NOT
  703. \p{Private_Use} NOR \p{Is_Private_Use})
  704. (6400)
  705. \p{Block: Punctuation} \p{Block=General_Punctuation} (NOT
  706. \p{Punct} NOR \p{Is_Punctuation}) (112)
  707. \p{Block: Rejang} (Single: \p{InRejang}; NOT \p{Rejang} NOR
  708. \p{Is_Rejang}) (48)
  709. \p{Block: Rumi} \p{Block=Rumi_Numeral_Symbols} (32)
  710. \p{Block: Rumi_Numeral_Symbols} (Short: \p{Blk=Rumi}, \p{InRumi})
  711. (32)
  712. \p{Block: Runic} (Single: \p{InRunic}; NOT \p{Runic} NOR
  713. \p{Is_Runic}) (96)
  714. \p{Block: Samaritan} (Single: \p{InSamaritan}; NOT
  715. \p{Samaritan} NOR \p{Is_Samaritan}) (64)
  716. \p{Block: Saurashtra} (Single: \p{InSaurashtra}; NOT
  717. \p{Saurashtra} NOR \p{Is_Saurashtra})
  718. (96)
  719. \p{Block: Sharada} (Single: \p{InSharada}; NOT \p{Sharada}
  720. NOR \p{Is_Sharada}) (96)
  721. \p{Block: Shavian} (Single: \p{InShavian}) (48)
  722. \p{Block: Sinhala} (Single: \p{InSinhala}; NOT \p{Sinhala}
  723. NOR \p{Is_Sinhala}) (128)
  724. \p{Block: Small_Form_Variants} (Short: \p{Blk=SmallForms},
  725. \p{InSmallForms}) (32)
  726. \p{Block: Small_Forms} \p{Block=Small_Form_Variants} (32)
  727. \p{Block: Sora_Sompeng} (Single: \p{InSoraSompeng}; NOT
  728. \p{Sora_Sompeng} NOR
  729. \p{Is_Sora_Sompeng}) (48)
  730. \p{Block: Spacing_Modifier_Letters} (Short: \p{Blk=
  731. ModifierLetters}, \p{InModifierLetters})
  732. (80)
  733. \p{Block: Specials} (Single: \p{InSpecials}) (16)
  734. \p{Block: Sundanese} (Single: \p{InSundanese}; NOT
  735. \p{Sundanese} NOR \p{Is_Sundanese}) (64)
  736. \p{Block: Sundanese_Sup} \p{Block=Sundanese_Supplement} (16)
  737. \p{Block: Sundanese_Supplement} (Short: \p{Blk=SundaneseSup},
  738. \p{InSundaneseSup}) (16)
  739. \p{Block: Sup_Arrows_A} \p{Block=Supplemental_Arrows_A} (16)
  740. \p{Block: Sup_Arrows_B} \p{Block=Supplemental_Arrows_B} (128)
  741. \p{Block: Sup_Math_Operators} \p{Block=
  742. Supplemental_Mathematical_Operators}
  743. (256)
  744. \p{Block: Sup_PUA_A} \p{Block=Supplementary_Private_Use_Area_A}
  745. (65_536)
  746. \p{Block: Sup_PUA_B} \p{Block=Supplementary_Private_Use_Area_B}
  747. (65_536)
  748. \p{Block: Sup_Punctuation} \p{Block=Supplemental_Punctuation} (128)
  749. \p{Block: Super_And_Sub} \p{Block=Superscripts_And_Subscripts} (48)
  750. \p{Block: Superscripts_And_Subscripts} (Short: \p{Blk=
  751. SuperAndSub}, \p{InSuperAndSub}) (48)
  752. \p{Block: Supplemental_Arrows_A} (Short: \p{Blk=SupArrowsA},
  753. \p{InSupArrowsA}) (16)
  754. \p{Block: Supplemental_Arrows_B} (Short: \p{Blk=SupArrowsB},
  755. \p{InSupArrowsB}) (128)
  756. \p{Block: Supplemental_Mathematical_Operators} (Short: \p{Blk=
  757. SupMathOperators},
  758. \p{InSupMathOperators}) (256)
  759. \p{Block: Supplemental_Punctuation} (Short: \p{Blk=
  760. SupPunctuation}, \p{InSupPunctuation})
  761. (128)
  762. \p{Block: Supplementary_Private_Use_Area_A} (Short: \p{Blk=
  763. SupPUAA}, \p{InSupPUAA}) (65_536)
  764. \p{Block: Supplementary_Private_Use_Area_B} (Short: \p{Blk=
  765. SupPUAB}, \p{InSupPUAB}) (65_536)
  766. \p{Block: Syloti_Nagri} (Single: \p{InSylotiNagri}; NOT
  767. \p{Syloti_Nagri} NOR
  768. \p{Is_Syloti_Nagri}) (48)
  769. \p{Block: Syriac} (Single: \p{InSyriac}; NOT \p{Syriac} NOR
  770. \p{Is_Syriac}) (80)
  771. \p{Block: Tagalog} (Single: \p{InTagalog}; NOT \p{Tagalog}
  772. NOR \p{Is_Tagalog}) (32)
  773. \p{Block: Tagbanwa} (Single: \p{InTagbanwa}; NOT \p{Tagbanwa}
  774. NOR \p{Is_Tagbanwa}) (32)
  775. \p{Block: Tags} (Single: \p{InTags}) (128)
  776. \p{Block: Tai_Le} (Single: \p{InTaiLe}; NOT \p{Tai_Le} NOR
  777. \p{Is_Tai_Le}) (48)
  778. \p{Block: Tai_Tham} (Single: \p{InTaiTham}; NOT \p{Tai_Tham}
  779. NOR \p{Is_Tai_Tham}) (144)
  780. \p{Block: Tai_Viet} (Single: \p{InTaiViet}; NOT \p{Tai_Viet}
  781. NOR \p{Is_Tai_Viet}) (96)
  782. \p{Block: Tai_Xuan_Jing} \p{Block=Tai_Xuan_Jing_Symbols} (96)
  783. \p{Block: Tai_Xuan_Jing_Symbols} (Short: \p{Blk=TaiXuanJing},
  784. \p{InTaiXuanJing}) (96)
  785. \p{Block: Takri} (Single: \p{InTakri}; NOT \p{Takri} NOR
  786. \p{Is_Takri}) (80)
  787. \p{Block: Tamil} (Single: \p{InTamil}; NOT \p{Tamil} NOR
  788. \p{Is_Tamil}) (128)
  789. \p{Block: Telugu} (Single: \p{InTelugu}; NOT \p{Telugu} NOR
  790. \p{Is_Telugu}) (128)
  791. \p{Block: Thaana} (Single: \p{InThaana}; NOT \p{Thaana} NOR
  792. \p{Is_Thaana}) (64)
  793. \p{Block: Thai} (Single: \p{InThai}; NOT \p{Thai} NOR
  794. \p{Is_Thai}) (128)
  795. \p{Block: Tibetan} (Single: \p{InTibetan}; NOT \p{Tibetan}
  796. NOR \p{Is_Tibetan}) (256)
  797. \p{Block: Tifinagh} (Single: \p{InTifinagh}; NOT \p{Tifinagh}
  798. NOR \p{Is_Tifinagh}) (80)
  799. \p{Block: Transport_And_Map} \p{Block=Transport_And_Map_Symbols}
  800. (128)
  801. \p{Block: Transport_And_Map_Symbols} (Short: \p{Blk=
  802. TransportAndMap}, \p{InTransportAndMap})
  803. (128)
  804. \p{Block: UCAS} \p{Block=
  805. Unified_Canadian_Aboriginal_Syllabics}
  806. (640)
  807. \p{Block: UCAS_Ext} \p{Block=
  808. Unified_Canadian_Aboriginal_Syllabics_-
  809. Extended} (80)
  810. \p{Block: Ugaritic} (Single: \p{InUgaritic}; NOT \p{Ugaritic}
  811. NOR \p{Is_Ugaritic}) (32)
  812. \p{Block: Unified_Canadian_Aboriginal_Syllabics} (Short: \p{Blk=
  813. UCAS}, \p{InUCAS}) (640)
  814. \p{Block: Unified_Canadian_Aboriginal_Syllabics_Extended} (Short:
  815. \p{Blk=UCASExt}, \p{InUCASExt}) (80)
  816. \p{Block: Vai} (Single: \p{InVai}; NOT \p{Vai} NOR
  817. \p{Is_Vai}) (320)
  818. \p{Block: Variation_Selectors} (Short: \p{Blk=VS}, \p{InVS}; NOT
  819. \p{Variation_Selector} NOR \p{Is_VS})
  820. (16)
  821. \p{Block: Variation_Selectors_Supplement} (Short: \p{Blk=VSSup},
  822. \p{InVSSup}) (240)
  823. \p{Block: Vedic_Ext} \p{Block=Vedic_Extensions} (48)
  824. \p{Block: Vedic_Extensions} (Short: \p{Blk=VedicExt},
  825. \p{InVedicExt}) (48)
  826. \p{Block: Vertical_Forms} (Single: \p{InVerticalForms}) (16)
  827. \p{Block: VS} \p{Block=Variation_Selectors} (NOT
  828. \p{Variation_Selector} NOR \p{Is_VS})
  829. (16)
  830. \p{Block: VS_Sup} \p{Block=Variation_Selectors_Supplement}
  831. (240)
  832. \p{Block: Yi_Radicals} (Single: \p{InYiRadicals}) (64)
  833. \p{Block: Yi_Syllables} (Single: \p{InYiSyllables}) (1168)
  834. \p{Block: Yijing} \p{Block=Yijing_Hexagram_Symbols} (64)
  835. \p{Block: Yijing_Hexagram_Symbols} (Short: \p{Blk=Yijing},
  836. \p{InYijing}) (64)
  837. X \p{Block_Elements} \p{Block=Block_Elements} (32)
  838. \p{Bopo} \p{Bopomofo} (= \p{Script=Bopomofo}) (NOT
  839. \p{Block=Bopomofo}) (70)
  840. \p{Bopomofo} \p{Script=Bopomofo} (Short: \p{Bopo}; NOT
  841. \p{Block=Bopomofo}) (70)
  842. X \p{Bopomofo_Ext} \p{Bopomofo_Extended} (= \p{Block=
  843. Bopomofo_Extended}) (32)
  844. X \p{Bopomofo_Extended} \p{Block=Bopomofo_Extended} (Short:
  845. \p{InBopomofoExt}) (32)
  846. X \p{Box_Drawing} \p{Block=Box_Drawing} (128)
  847. \p{Brah} \p{Brahmi} (= \p{Script=Brahmi}) (NOT
  848. \p{Block=Brahmi}) (108)
  849. \p{Brahmi} \p{Script=Brahmi} (Short: \p{Brah}; NOT
  850. \p{Block=Brahmi}) (108)
  851. \p{Brai} \p{Braille} (= \p{Script=Braille}) (256)
  852. \p{Braille} \p{Script=Braille} (Short: \p{Brai}) (256)
  853. X \p{Braille_Patterns} \p{Block=Braille_Patterns} (Short:
  854. \p{InBraille}) (256)
  855. \p{Bugi} \p{Buginese} (= \p{Script=Buginese}) (NOT
  856. \p{Block=Buginese}) (30)
  857. \p{Buginese} \p{Script=Buginese} (Short: \p{Bugi}; NOT
  858. \p{Block=Buginese}) (30)
  859. \p{Buhd} \p{Buhid} (= \p{Script=Buhid}) (NOT
  860. \p{Block=Buhid}) (20)
  861. \p{Buhid} \p{Script=Buhid} (Short: \p{Buhd}; NOT
  862. \p{Block=Buhid}) (20)
  863. X \p{Byzantine_Music} \p{Byzantine_Musical_Symbols} (= \p{Block=
  864. Byzantine_Musical_Symbols}) (256)
  865. X \p{Byzantine_Musical_Symbols} \p{Block=Byzantine_Musical_Symbols}
  866. (Short: \p{InByzantineMusic}) (256)
  867. \p{C} \p{Other} (= \p{General_Category=Other})
  868. (1_004_135)
  869. \p{Cakm} \p{Chakma} (= \p{Script=Chakma}) (NOT
  870. \p{Block=Chakma}) (67)
  871. \p{Canadian_Aboriginal} \p{Script=Canadian_Aboriginal} (Short:
  872. \p{Cans}) (710)
  873. X \p{Canadian_Syllabics} \p{Unified_Canadian_Aboriginal_Syllabics}
  874. (= \p{Block=
  875. Unified_Canadian_Aboriginal_Syllabics})
  876. (640)
  877. T \p{Canonical_Combining_Class: 0} \p{Canonical_Combining_Class=
  878. Not_Reordered} (1_113_459)
  879. T \p{Canonical_Combining_Class: 1} \p{Canonical_Combining_Class=
  880. Overlay} (26)
  881. T \p{Canonical_Combining_Class: 7} \p{Canonical_Combining_Class=
  882. Nukta} (13)
  883. T \p{Canonical_Combining_Class: 8} \p{Canonical_Combining_Class=
  884. Kana_Voicing} (2)
  885. T \p{Canonical_Combining_Class: 9} \p{Canonical_Combining_Class=
  886. Virama} (37)
  887. T \p{Canonical_Combining_Class: 10} \p{Canonical_Combining_Class=
  888. CCC10} (1)
  889. T \p{Canonical_Combining_Class: 11} \p{Canonical_Combining_Class=
  890. CCC11} (1)
  891. T \p{Canonical_Combining_Class: 12} \p{Canonical_Combining_Class=
  892. CCC12} (1)
  893. T \p{Canonical_Combining_Class: 13} \p{Canonical_Combining_Class=
  894. CCC13} (1)
  895. T \p{Canonical_Combining_Class: 14} \p{Canonical_Combining_Class=
  896. CCC14} (1)
  897. T \p{Canonical_Combining_Class: 15} \p{Canonical_Combining_Class=
  898. CCC15} (1)
  899. T \p{Canonical_Combining_Class: 16} \p{Canonical_Combining_Class=
  900. CCC16} (1)
  901. T \p{Canonical_Combining_Class: 17} \p{Canonical_Combining_Class=
  902. CCC17} (1)
  903. T \p{Canonical_Combining_Class: 18} \p{Canonical_Combining_Class=
  904. CCC18} (2)
  905. T \p{Canonical_Combining_Class: 19} \p{Canonical_Combining_Class=
  906. CCC19} (2)
  907. T \p{Canonical_Combining_Class: 20} \p{Canonical_Combining_Class=
  908. CCC20} (1)
  909. T \p{Canonical_Combining_Class: 21} \p{Canonical_Combining_Class=
  910. CCC21} (1)
  911. T \p{Canonical_Combining_Class: 22} \p{Canonical_Combining_Class=
  912. CCC22} (1)
  913. T \p{Canonical_Combining_Class: 23} \p{Canonical_Combining_Class=
  914. CCC23} (1)
  915. T \p{Canonical_Combining_Class: 24} \p{Canonical_Combining_Class=
  916. CCC24} (1)
  917. T \p{Canonical_Combining_Class: 25} \p{Canonical_Combining_Class=
  918. CCC25} (1)
  919. T \p{Canonical_Combining_Class: 26} \p{Canonical_Combining_Class=
  920. CCC26} (1)
  921. T \p{Canonical_Combining_Class: 27} \p{Canonical_Combining_Class=
  922. CCC27} (2)
  923. T \p{Canonical_Combining_Class: 28} \p{Canonical_Combining_Class=
  924. CCC28} (2)
  925. T \p{Canonical_Combining_Class: 29} \p{Canonical_Combining_Class=
  926. CCC29} (2)
  927. T \p{Canonical_Combining_Class: 30} \p{Canonical_Combining_Class=
  928. CCC30} (2)
  929. T \p{Canonical_Combining_Class: 31} \p{Canonical_Combining_Class=
  930. CCC31} (2)
  931. T \p{Canonical_Combining_Class: 32} \p{Canonical_Combining_Class=
  932. CCC32} (2)
  933. T \p{Canonical_Combining_Class: 33} \p{Canonical_Combining_Class=
  934. CCC33} (1)
  935. T \p{Canonical_Combining_Class: 34} \p{Canonical_Combining_Class=
  936. CCC34} (1)
  937. T \p{Canonical_Combining_Class: 35} \p{Canonical_Combining_Class=
  938. CCC35} (1)
  939. T \p{Canonical_Combining_Class: 36} \p{Canonical_Combining_Class=
  940. CCC36} (1)
  941. T \p{Canonical_Combining_Class: 84} \p{Canonical_Combining_Class=
  942. CCC84} (1)
  943. T \p{Canonical_Combining_Class: 91} \p{Canonical_Combining_Class=
  944. CCC91} (1)
  945. T \p{Canonical_Combining_Class: 103} \p{Canonical_Combining_Class=
  946. CCC103} (2)
  947. T \p{Canonical_Combining_Class: 107} \p{Canonical_Combining_Class=
  948. CCC107} (4)
  949. T \p{Canonical_Combining_Class: 118} \p{Canonical_Combining_Class=
  950. CCC118} (2)
  951. T \p{Canonical_Combining_Class: 122} \p{Canonical_Combining_Class=
  952. CCC122} (4)
  953. T \p{Canonical_Combining_Class: 129} \p{Canonical_Combining_Class=
  954. CCC129} (1)
  955. T \p{Canonical_Combining_Class: 130} \p{Canonical_Combining_Class=
  956. CCC130} (6)
  957. T \p{Canonical_Combining_Class: 132} \p{Canonical_Combining_Class=
  958. CCC132} (1)
  959. T \p{Canonical_Combining_Class: 200} \p{Canonical_Combining_Class=
  960. Attached_Below_Left} (0)
  961. T \p{Canonical_Combining_Class: 202} \p{Canonical_Combining_Class=
  962. Attached_Below} (5)
  963. T \p{Canonical_Combining_Class: 214} \p{Canonical_Combining_Class=
  964. Attached_Above} (1)
  965. T \p{Canonical_Combining_Class: 216} \p{Canonical_Combining_Class=
  966. Attached_Above_Right} (9)
  967. T \p{Canonical_Combining_Class: 218} \p{Canonical_Combining_Class=
  968. Below_Left} (1)
  969. T \p{Canonical_Combining_Class: 220} \p{Canonical_Combining_Class=
  970. Below} (129)
  971. T \p{Canonical_Combining_Class: 222} \p{Canonical_Combining_Class=
  972. Below_Right} (4)
  973. T \p{Canonical_Combining_Class: 224} \p{Canonical_Combining_Class=
  974. Left} (2)
  975. T \p{Canonical_Combining_Class: 226} \p{Canonical_Combining_Class=
  976. Right} (1)
  977. T \p{Canonical_Combining_Class: 228} \p{Canonical_Combining_Class=
  978. Above_Left} (3)
  979. T \p{Canonical_Combining_Class: 230} \p{Canonical_Combining_Class=
  980. Above} (349)
  981. T \p{Canonical_Combining_Class: 232} \p{Canonical_Combining_Class=
  982. Above_Right} (4)
  983. T \p{Canonical_Combining_Class: 233} \p{Canonical_Combining_Class=
  984. Double_Below} (4)
  985. T \p{Canonical_Combining_Class: 234} \p{Canonical_Combining_Class=
  986. Double_Above} (5)
  987. T \p{Canonical_Combining_Class: 240} \p{Canonical_Combining_Class=
  988. Iota_Subscript} (1)
  989. \p{Canonical_Combining_Class: A} \p{Canonical_Combining_Class=
  990. Above} (349)
  991. \p{Canonical_Combining_Class: Above} (Short: \p{Ccc=A}) (349)
  992. \p{Canonical_Combining_Class: Above_Left} (Short: \p{Ccc=AL}) (3)
  993. \p{Canonical_Combining_Class: Above_Right} (Short: \p{Ccc=AR}) (4)
  994. \p{Canonical_Combining_Class: AL} \p{Canonical_Combining_Class=
  995. Above_Left} (3)
  996. \p{Canonical_Combining_Class: AR} \p{Canonical_Combining_Class=
  997. Above_Right} (4)
  998. \p{Canonical_Combining_Class: ATA} \p{Canonical_Combining_Class=
  999. Attached_Above} (1)
  1000. \p{Canonical_Combining_Class: ATAR} \p{Canonical_Combining_Class=
  1001. Attached_Above_Right} (9)
  1002. \p{Canonical_Combining_Class: ATB} \p{Canonical_Combining_Class=
  1003. Attached_Below} (5)
  1004. \p{Canonical_Combining_Class: ATBL} \p{Canonical_Combining_Class=
  1005. Attached_Below_Left} (0)
  1006. \p{Canonical_Combining_Class: Attached_Above} (Short: \p{Ccc=ATA})
  1007. (1)
  1008. \p{Canonical_Combining_Class: Attached_Above_Right} (Short:
  1009. \p{Ccc=ATAR}) (9)
  1010. \p{Canonical_Combining_Class: Attached_Below} (Short: \p{Ccc=ATB})
  1011. (5)
  1012. \p{Canonical_Combining_Class: Attached_Below_Left} (Short: \p{Ccc=
  1013. ATBL}) (0)
  1014. \p{Canonical_Combining_Class: B} \p{Canonical_Combining_Class=
  1015. Below} (129)
  1016. \p{Canonical_Combining_Class: Below} (Short: \p{Ccc=B}) (129)
  1017. \p{Canonical_Combining_Class: Below_Left} (Short: \p{Ccc=BL}) (1)
  1018. \p{Canonical_Combining_Class: Below_Right} (Short: \p{Ccc=BR}) (4)
  1019. \p{Canonical_Combining_Class: BL} \p{Canonical_Combining_Class=
  1020. Below_Left} (1)
  1021. \p{Canonical_Combining_Class: BR} \p{Canonical_Combining_Class=
  1022. Below_Right} (4)
  1023. \p{Canonical_Combining_Class: CCC10} (Short: \p{Ccc=CCC10}) (1)
  1024. \p{Canonical_Combining_Class: CCC103} (Short: \p{Ccc=CCC103}) (2)
  1025. \p{Canonical_Combining_Class: CCC107} (Short: \p{Ccc=CCC107}) (4)
  1026. \p{Canonical_Combining_Class: CCC11} (Short: \p{Ccc=CCC11}) (1)
  1027. \p{Canonical_Combining_Class: CCC118} (Short: \p{Ccc=CCC118}) (2)
  1028. \p{Canonical_Combining_Class: CCC12} (Short: \p{Ccc=CCC12}) (1)
  1029. \p{Canonical_Combining_Class: CCC122} (Short: \p{Ccc=CCC122}) (4)
  1030. \p{Canonical_Combining_Class: CCC129} (Short: \p{Ccc=CCC129}) (1)
  1031. \p{Canonical_Combining_Class: CCC13} (Short: \p{Ccc=CCC13}) (1)
  1032. \p{Canonical_Combining_Class: CCC130} (Short: \p{Ccc=CCC130}) (6)
  1033. \p{Canonical_Combining_Class: CCC132} (Short: \p{Ccc=CCC132}) (1)
  1034. \p{Canonical_Combining_Class: CCC14} (Short: \p{Ccc=CCC14}) (1)
  1035. \p{Canonical_Combining_Class: CCC15} (Short: \p{Ccc=CCC15}) (1)
  1036. \p{Canonical_Combining_Class: CCC16} (Short: \p{Ccc=CCC16}) (1)
  1037. \p{Canonical_Combining_Class: CCC17} (Short: \p{Ccc=CCC17}) (1)
  1038. \p{Canonical_Combining_Class: CCC18} (Short: \p{Ccc=CCC18}) (2)
  1039. \p{Canonical_Combining_Class: CCC19} (Short: \p{Ccc=CCC19}) (2)
  1040. \p{Canonical_Combining_Class: CCC20} (Short: \p{Ccc=CCC20}) (1)
  1041. \p{Canonical_Combining_Class: CCC21} (Short: \p{Ccc=CCC21}) (1)
  1042. \p{Canonical_Combining_Class: CCC22} (Short: \p{Ccc=CCC22}) (1)
  1043. \p{Canonical_Combining_Class: CCC23} (Short: \p{Ccc=CCC23}) (1)
  1044. \p{Canonical_Combining_Class: CCC24} (Short: \p{Ccc=CCC24}) (1)
  1045. \p{Canonical_Combining_Class: CCC25} (Short: \p{Ccc=CCC25}) (1)
  1046. \p{Canonical_Combining_Class: CCC26} (Short: \p{Ccc=CCC26}) (1)
  1047. \p{Canonical_Combining_Class: CCC27} (Short: \p{Ccc=CCC27}) (2)
  1048. \p{Canonical_Combining_Class: CCC28} (Short: \p{Ccc=CCC28}) (2)
  1049. \p{Canonical_Combining_Class: CCC29} (Short: \p{Ccc=CCC29}) (2)
  1050. \p{Canonical_Combining_Class: CCC30} (Short: \p{Ccc=CCC30}) (2)
  1051. \p{Canonical_Combining_Class: CCC31} (Short: \p{Ccc=CCC31}) (2)
  1052. \p{Canonical_Combining_Class: CCC32} (Short: \p{Ccc=CCC32}) (2)
  1053. \p{Canonical_Combining_Class: CCC33} (Short: \p{Ccc=CCC33}) (1)
  1054. \p{Canonical_Combining_Class: CCC34} (Short: \p{Ccc=CCC34}) (1)
  1055. \p{Canonical_Combining_Class: CCC35} (Short: \p{Ccc=CCC35}) (1)
  1056. \p{Canonical_Combining_Class: CCC36} (Short: \p{Ccc=CCC36}) (1)
  1057. \p{Canonical_Combining_Class: CCC84} (Short: \p{Ccc=CCC84}) (1)
  1058. \p{Canonical_Combining_Class: CCC91} (Short: \p{Ccc=CCC91}) (1)
  1059. \p{Canonical_Combining_Class: DA} \p{Canonical_Combining_Class=
  1060. Double_Above} (5)
  1061. \p{Canonical_Combining_Class: DB} \p{Canonical_Combining_Class=
  1062. Double_Below} (4)
  1063. \p{Canonical_Combining_Class: Double_Above} (Short: \p{Ccc=DA}) (5)
  1064. \p{Canonical_Combining_Class: Double_Below} (Short: \p{Ccc=DB}) (4)
  1065. \p{Canonical_Combining_Class: Iota_Subscript} (Short: \p{Ccc=IS})
  1066. (1)
  1067. \p{Canonical_Combining_Class: IS} \p{Canonical_Combining_Class=
  1068. Iota_Subscript} (1)
  1069. \p{Canonical_Combining_Class: Kana_Voicing} (Short: \p{Ccc=KV}) (2)
  1070. \p{Canonical_Combining_Class: KV} \p{Canonical_Combining_Class=
  1071. Kana_Voicing} (2)
  1072. \p{Canonical_Combining_Class: L} \p{Canonical_Combining_Class=
  1073. Left} (2)
  1074. \p{Canonical_Combining_Class: Left} (Short: \p{Ccc=L}) (2)
  1075. \p{Canonical_Combining_Class: NK} \p{Canonical_Combining_Class=
  1076. Nukta} (13)
  1077. \p{Canonical_Combining_Class: Not_Reordered} (Short: \p{Ccc=NR})
  1078. (1_113_459)
  1079. \p{Canonical_Combining_Class: NR} \p{Canonical_Combining_Class=
  1080. Not_Reordered} (1_113_459)
  1081. \p{Canonical_Combining_Class: Nukta} (Short: \p{Ccc=NK}) (13)
  1082. \p{Canonical_Combining_Class: OV} \p{Canonical_Combining_Class=
  1083. Overlay} (26)
  1084. \p{Canonical_Combining_Class: Overlay} (Short: \p{Ccc=OV}) (26)
  1085. \p{Canonical_Combining_Class: R} \p{Canonical_Combining_Class=
  1086. Right} (1)
  1087. \p{Canonical_Combining_Class: Right} (Short: \p{Ccc=R}) (1)
  1088. \p{Canonical_Combining_Class: Virama} (Short: \p{Ccc=VR}) (37)
  1089. \p{Canonical_Combining_Class: VR} \p{Canonical_Combining_Class=
  1090. Virama} (37)
  1091. \p{Cans} \p{Canadian_Aboriginal} (= \p{Script=
  1092. Canadian_Aboriginal}) (710)
  1093. \p{Cari} \p{Carian} (= \p{Script=Carian}) (NOT
  1094. \p{Block=Carian}) (49)
  1095. \p{Carian} \p{Script=Carian} (Short: \p{Cari}; NOT
  1096. \p{Block=Carian}) (49)
  1097. \p{Case_Ignorable} \p{Case_Ignorable=Y} (Short: \p{CI}) (1799)
  1098. \p{Case_Ignorable: N*} (Short: \p{CI=N}, \P{CI}) (1_112_313)
  1099. \p{Case_Ignorable: Y*} (Short: \p{CI=Y}, \p{CI}) (1799)
  1100. \p{Cased} \p{Cased=Y} (3448)
  1101. \p{Cased: N*} (Single: \P{Cased}) (1_110_664)
  1102. \p{Cased: Y*} (Single: \p{Cased}) (3448)
  1103. \p{Cased_Letter} \p{General_Category=Cased_Letter} (Short:
  1104. \p{LC}) (3223)
  1105. \p{Category: *} \p{General_Category: *}
  1106. \p{Cc} \p{Cntrl} (= \p{General_Category=Control})
  1107. (65)
  1108. \p{Ccc: *} \p{Canonical_Combining_Class: *}
  1109. \p{CE} \p{Composition_Exclusion} (=
  1110. \p{Composition_Exclusion=Y}) (81)
  1111. \p{CE: *} \p{Composition_Exclusion: *}
  1112. \p{Cf} \p{Format} (= \p{General_Category=Format})
  1113. (139)
  1114. \p{Chakma} \p{Script=Chakma} (Short: \p{Cakm}; NOT
  1115. \p{Block=Chakma}) (67)
  1116. \p{Cham} \p{Script=Cham} (NOT \p{Block=Cham}) (83)
  1117. \p{Changes_When_Casefolded} \p{Changes_When_Casefolded=Y} (Short:
  1118. \p{CWCF}) (1107)
  1119. \p{Changes_When_Casefolded: N*} (Short: \p{CWCF=N}, \P{CWCF})
  1120. (1_113_005)
  1121. \p{Changes_When_Casefolded: Y*} (Short: \p{CWCF=Y}, \p{CWCF})
  1122. (1107)
  1123. \p{Changes_When_Casemapped} \p{Changes_When_Casemapped=Y} (Short:
  1124. \p{CWCM}) (2138)
  1125. \p{Changes_When_Casemapped: N*} (Short: \p{CWCM=N}, \P{CWCM})
  1126. (1_111_974)
  1127. \p{Changes_When_Casemapped: Y*} (Short: \p{CWCM=Y}, \p{CWCM})
  1128. (2138)
  1129. \p{Changes_When_Lowercased} \p{Changes_When_Lowercased=Y} (Short:
  1130. \p{CWL}) (1043)
  1131. \p{Changes_When_Lowercased: N*} (Short: \p{CWL=N}, \P{CWL})
  1132. (1_113_069)
  1133. \p{Changes_When_Lowercased: Y*} (Short: \p{CWL=Y}, \p{CWL}) (1043)
  1134. \p{Changes_When_NFKC_Casefolded} \p{Changes_When_NFKC_Casefolded=
  1135. Y} (Short: \p{CWKCF}) (9944)
  1136. \p{Changes_When_NFKC_Casefolded: N*} (Short: \p{CWKCF=N},
  1137. \P{CWKCF}) (1_104_168)
  1138. \p{Changes_When_NFKC_Casefolded: Y*} (Short: \p{CWKCF=Y},
  1139. \p{CWKCF}) (9944)
  1140. \p{Changes_When_Titlecased} \p{Changes_When_Titlecased=Y} (Short:
  1141. \p{CWT}) (1099)
  1142. \p{Changes_When_Titlecased: N*} (Short: \p{CWT=N}, \P{CWT})
  1143. (1_113_013)
  1144. \p{Changes_When_Titlecased: Y*} (Short: \p{CWT=Y}, \p{CWT}) (1099)
  1145. \p{Changes_When_Uppercased} \p{Changes_When_Uppercased=Y} (Short:
  1146. \p{CWU}) (1126)
  1147. \p{Changes_When_Uppercased: N*} (Short: \p{CWU=N}, \P{CWU})
  1148. (1_112_986)
  1149. \p{Changes_When_Uppercased: Y*} (Short: \p{CWU=Y}, \p{CWU}) (1126)
  1150. \p{Cher} \p{Cherokee} (= \p{Script=Cherokee}) (NOT
  1151. \p{Block=Cherokee}) (85)
  1152. \p{Cherokee} \p{Script=Cherokee} (Short: \p{Cher}; NOT
  1153. \p{Block=Cherokee}) (85)
  1154. \p{CI} \p{Case_Ignorable} (= \p{Case_Ignorable=
  1155. Y}) (1799)
  1156. \p{CI: *} \p{Case_Ignorable: *}
  1157. X \p{CJK} \p{CJK_Unified_Ideographs} (= \p{Block=
  1158. CJK_Unified_Ideographs}) (20_992)
  1159. X \p{CJK_Compat} \p{CJK_Compatibility} (= \p{Block=
  1160. CJK_Compatibility}) (256)
  1161. X \p{CJK_Compat_Forms} \p{CJK_Compatibility_Forms} (= \p{Block=
  1162. CJK_Compatibility_Forms}) (32)
  1163. X \p{CJK_Compat_Ideographs} \p{CJK_Compatibility_Ideographs} (=
  1164. \p{Block=CJK_Compatibility_Ideographs})
  1165. (512)
  1166. X \p{CJK_Compat_Ideographs_Sup}
  1167. \p{CJK_Compatibility_Ideographs_-
  1168. Supplement} (= \p{Block=
  1169. CJK_Compatibility_Ideographs_-
  1170. Supplement}) (544)
  1171. X \p{CJK_Compatibility} \p{Block=CJK_Compatibility} (Short:
  1172. \p{InCJKCompat}) (256)
  1173. X \p{CJK_Compatibility_Forms} \p{Block=CJK_Compatibility_Forms}
  1174. (Short: \p{InCJKCompatForms}) (32)
  1175. X \p{CJK_Compatibility_Ideographs} \p{Block=
  1176. CJK_Compatibility_Ideographs} (Short:
  1177. \p{InCJKCompatIdeographs}) (512)
  1178. X \p{CJK_Compatibility_Ideographs_Supplement} \p{Block=
  1179. CJK_Compatibility_Ideographs_Supplement}
  1180. (Short: \p{InCJKCompatIdeographsSup})
  1181. (544)
  1182. X \p{CJK_Ext_A} \p{CJK_Unified_Ideographs_Extension_A} (=
  1183. \p{Block=
  1184. CJK_Unified_Ideographs_Extension_A})
  1185. (6592)
  1186. X \p{CJK_Ext_B} \p{CJK_Unified_Ideographs_Extension_B} (=
  1187. \p{Block=
  1188. CJK_Unified_Ideographs_Extension_B})
  1189. (42_720)
  1190. X \p{CJK_Ext_C} \p{CJK_Unified_Ideographs_Extension_C} (=
  1191. \p{Block=
  1192. CJK_Unified_Ideographs_Extension_C})
  1193. (4160)
  1194. X \p{CJK_Ext_D} \p{CJK_Unified_Ideographs_Extension_D} (=
  1195. \p{Block=
  1196. CJK_Unified_Ideographs_Extension_D})
  1197. (224)
  1198. X \p{CJK_Radicals_Sup} \p{CJK_Radicals_Supplement} (= \p{Block=
  1199. CJK_Radicals_Supplement}) (128)
  1200. X \p{CJK_Radicals_Supplement} \p{Block=CJK_Radicals_Supplement}
  1201. (Short: \p{InCJKRadicalsSup}) (128)
  1202. X \p{CJK_Strokes} \p{Block=CJK_Strokes} (48)
  1203. X \p{CJK_Symbols} \p{CJK_Symbols_And_Punctuation} (=
  1204. \p{Block=CJK_Symbols_And_Punctuation})
  1205. (64)
  1206. X \p{CJK_Symbols_And_Punctuation} \p{Block=
  1207. CJK_Symbols_And_Punctuation} (Short:
  1208. \p{InCJKSymbols}) (64)
  1209. X \p{CJK_Unified_Ideographs} \p{Block=CJK_Unified_Ideographs}
  1210. (Short: \p{InCJK}) (20_992)
  1211. X \p{CJK_Unified_Ideographs_Extension_A} \p{Block=
  1212. CJK_Unified_Ideographs_Extension_A}
  1213. (Short: \p{InCJKExtA}) (6592)
  1214. X \p{CJK_Unified_Ideographs_Extension_B} \p{Block=
  1215. CJK_Unified_Ideographs_Extension_B}
  1216. (Short: \p{InCJKExtB}) (42_720)
  1217. X \p{CJK_Unified_Ideographs_Extension_C} \p{Block=
  1218. CJK_Unified_Ideographs_Extension_C}
  1219. (Short: \p{InCJKExtC}) (4160)
  1220. X \p{CJK_Unified_Ideographs_Extension_D} \p{Block=
  1221. CJK_Unified_Ideographs_Extension_D}
  1222. (Short: \p{InCJKExtD}) (224)
  1223. \p{Close_Punctuation} \p{General_Category=Close_Punctuation}
  1224. (Short: \p{Pe}) (71)
  1225. \p{Cn} \p{Unassigned} (= \p{General_Category=
  1226. Unassigned}) (864_415)
  1227. \p{Cntrl} \p{General_Category=Control} Control
  1228. characters (Short: \p{Cc}) (65)
  1229. \p{Co} \p{Private_Use} (= \p{General_Category=
  1230. Private_Use}) (NOT \p{Private_Use_Area})
  1231. (137_468)
  1232. X \p{Combining_Diacritical_Marks} \p{Block=
  1233. Combining_Diacritical_Marks} (Short:
  1234. \p{InDiacriticals}) (112)
  1235. X \p{Combining_Diacritical_Marks_For_Symbols} \p{Block=
  1236. Combining_Diacritical_Marks_For_Symbols}
  1237. (Short: \p{InDiacriticalsForSymbols})
  1238. (48)
  1239. X \p{Combining_Diacritical_Marks_Supplement} \p{Block=
  1240. Combining_Diacritical_Marks_Supplement}
  1241. (Short: \p{InDiacriticalsSup}) (64)
  1242. X \p{Combining_Half_Marks} \p{Block=Combining_Half_Marks} (Short:
  1243. \p{InHalfMarks}) (16)
  1244. \p{Combining_Mark} \p{Mark} (= \p{General_Category=Mark})
  1245. (1645)
  1246. X \p{Combining_Marks_For_Symbols}
  1247. \p{Combining_Diacritical_Marks_For_-
  1248. Symbols} (= \p{Block=
  1249. Combining_Diacritical_Marks_For_-
  1250. Symbols}) (48)
  1251. \p{Common} \p{Script=Common} (Short: \p{Zyyy}) (6412)
  1252. X \p{Common_Indic_Number_Forms} \p{Block=Common_Indic_Number_Forms}
  1253. (Short: \p{InIndicNumberForms}) (16)
  1254. \p{Comp_Ex} \p{Full_Composition_Exclusion} (=
  1255. \p{Full_Composition_Exclusion=Y}) (1120)
  1256. \p{Comp_Ex: *} \p{Full_Composition_Exclusion: *}
  1257. X \p{Compat_Jamo} \p{Hangul_Compatibility_Jamo} (= \p{Block=
  1258. Hangul_Compatibility_Jamo}) (96)
  1259. \p{Composition_Exclusion} \p{Composition_Exclusion=Y} (Short:
  1260. \p{CE}) (81)
  1261. \p{Composition_Exclusion: N*} (Short: \p{CE=N}, \P{CE}) (1_114_031)
  1262. \p{Composition_Exclusion: Y*} (Short: \p{CE=Y}, \p{CE}) (81)
  1263. \p{Connector_Punctuation} \p{General_Category=
  1264. Connector_Punctuation} (Short: \p{Pc})
  1265. (10)
  1266. \p{Control} \p{Cntrl} (= \p{General_Category=Control})
  1267. (65)
  1268. X \p{Control_Pictures} \p{Block=Control_Pictures} (64)
  1269. \p{Copt} \p{Coptic} (= \p{Script=Coptic}) (NOT
  1270. \p{Block=Coptic}) (137)
  1271. \p{Coptic} \p{Script=Coptic} (Short: \p{Copt}; NOT
  1272. \p{Block=Coptic}) (137)
  1273. X \p{Counting_Rod} \p{Counting_Rod_Numerals} (= \p{Block=
  1274. Counting_Rod_Numerals}) (32)
  1275. X \p{Counting_Rod_Numerals} \p{Block=Counting_Rod_Numerals} (Short:
  1276. \p{InCountingRod}) (32)
  1277. \p{Cprt} \p{Cypriot} (= \p{Script=Cypriot}) (55)
  1278. \p{Cs} \p{Surrogate} (= \p{General_Category=
  1279. Surrogate}) (2048)
  1280. \p{Cuneiform} \p{Script=Cuneiform} (Short: \p{Xsux}; NOT
  1281. \p{Block=Cuneiform}) (982)
  1282. X \p{Cuneiform_Numbers} \p{Cuneiform_Numbers_And_Punctuation} (=
  1283. \p{Block=
  1284. Cuneiform_Numbers_And_Punctuation}) (128)
  1285. X \p{Cuneiform_Numbers_And_Punctuation} \p{Block=
  1286. Cuneiform_Numbers_And_Punctuation}
  1287. (Short: \p{InCuneiformNumbers}) (128)
  1288. \p{Currency_Symbol} \p{General_Category=Currency_Symbol}
  1289. (Short: \p{Sc}) (48)
  1290. X \p{Currency_Symbols} \p{Block=Currency_Symbols} (48)
  1291. \p{CWCF} \p{Changes_When_Casefolded} (=
  1292. \p{Changes_When_Casefolded=Y}) (1107)
  1293. \p{CWCF: *} \p{Changes_When_Casefolded: *}
  1294. \p{CWCM} \p{Changes_When_Casemapped} (=
  1295. \p{Changes_When_Casemapped=Y}) (2138)
  1296. \p{CWCM: *} \p{Changes_When_Casemapped: *}
  1297. \p{CWKCF} \p{Changes_When_NFKC_Casefolded} (=
  1298. \p{Changes_When_NFKC_Casefolded=Y})
  1299. (9944)
  1300. \p{CWKCF: *} \p{Changes_When_NFKC_Casefolded: *}
  1301. \p{CWL} \p{Changes_When_Lowercased} (=
  1302. \p{Changes_When_Lowercased=Y}) (1043)
  1303. \p{CWL: *} \p{Changes_When_Lowercased: *}
  1304. \p{CWT} \p{Changes_When_Titlecased} (=
  1305. \p{Changes_When_Titlecased=Y}) (1099)
  1306. \p{CWT: *} \p{Changes_When_Titlecased: *}
  1307. \p{CWU} \p{Changes_When_Uppercased} (=
  1308. \p{Changes_When_Uppercased=Y}) (1126)
  1309. \p{CWU: *} \p{Changes_When_Uppercased: *}
  1310. \p{Cypriot} \p{Script=Cypriot} (Short: \p{Cprt}) (55)
  1311. X \p{Cypriot_Syllabary} \p{Block=Cypriot_Syllabary} (64)
  1312. \p{Cyrillic} \p{Script=Cyrillic} (Short: \p{Cyrl}; NOT
  1313. \p{Block=Cyrillic}) (417)
  1314. X \p{Cyrillic_Ext_A} \p{Cyrillic_Extended_A} (= \p{Block=
  1315. Cyrillic_Extended_A}) (32)
  1316. X \p{Cyrillic_Ext_B} \p{Cyrillic_Extended_B} (= \p{Block=
  1317. Cyrillic_Extended_B}) (96)
  1318. X \p{Cyrillic_Extended_A} \p{Block=Cyrillic_Extended_A} (Short:
  1319. \p{InCyrillicExtA}) (32)
  1320. X \p{Cyrillic_Extended_B} \p{Block=Cyrillic_Extended_B} (Short:
  1321. \p{InCyrillicExtB}) (96)
  1322. X \p{Cyrillic_Sup} \p{Cyrillic_Supplement} (= \p{Block=
  1323. Cyrillic_Supplement}) (48)
  1324. X \p{Cyrillic_Supplement} \p{Block=Cyrillic_Supplement} (Short:
  1325. \p{InCyrillicSup}) (48)
  1326. X \p{Cyrillic_Supplementary} \p{Cyrillic_Supplement} (= \p{Block=
  1327. Cyrillic_Supplement}) (48)
  1328. \p{Cyrl} \p{Cyrillic} (= \p{Script=Cyrillic}) (NOT
  1329. \p{Block=Cyrillic}) (417)
  1330. \p{Dash} \p{Dash=Y} (27)
  1331. \p{Dash: N*} (Single: \P{Dash}) (1_114_085)
  1332. \p{Dash: Y*} (Single: \p{Dash}) (27)
  1333. \p{Dash_Punctuation} \p{General_Category=Dash_Punctuation}
  1334. (Short: \p{Pd}) (23)
  1335. \p{Decimal_Number} \p{Digit} (= \p{General_Category=
  1336. Decimal_Number}) (460)
  1337. \p{Decomposition_Type: Can} \p{Decomposition_Type=Canonical}
  1338. (13_225)
  1339. \p{Decomposition_Type: Canonical} (Short: \p{Dt=Can}) (13_225)
  1340. \p{Decomposition_Type: Circle} (Short: \p{Dt=Enc}) (240)
  1341. \p{Decomposition_Type: Com} \p{Decomposition_Type=Compat} (720)
  1342. \p{Decomposition_Type: Compat} (Short: \p{Dt=Com}) (720)
  1343. \p{Decomposition_Type: Enc} \p{Decomposition_Type=Circle} (240)
  1344. \p{Decomposition_Type: Fin} \p{Decomposition_Type=Final} (240)
  1345. \p{Decomposition_Type: Final} (Short: \p{Dt=Fin}) (240)
  1346. \p{Decomposition_Type: Font} (Short: \p{Dt=Font}) (1184)
  1347. \p{Decomposition_Type: Fra} \p{Decomposition_Type=Fraction} (20)
  1348. \p{Decomposition_Type: Fraction} (Short: \p{Dt=Fra}) (20)
  1349. \p{Decomposition_Type: Init} \p{Decomposition_Type=Initial} (171)
  1350. \p{Decomposition_Type: Initial} (Short: \p{Dt=Init}) (171)
  1351. \p{Decomposition_Type: Iso} \p{Decomposition_Type=Isolated} (238)
  1352. \p{Decomposition_Type: Isolated} (Short: \p{Dt=Iso}) (238)
  1353. \p{Decomposition_Type: Med} \p{Decomposition_Type=Medial} (82)
  1354. \p{Decomposition_Type: Medial} (Short: \p{Dt=Med}) (82)
  1355. \p{Decomposition_Type: Nar} \p{Decomposition_Type=Narrow} (122)
  1356. \p{Decomposition_Type: Narrow} (Short: \p{Dt=Nar}) (122)
  1357. \p{Decomposition_Type: Nb} \p{Decomposition_Type=Nobreak} (5)
  1358. \p{Decomposition_Type: Nobreak} (Short: \p{Dt=Nb}) (5)
  1359. \p{Decomposition_Type: Non_Canon} \p{Decomposition_Type=
  1360. Non_Canonical} (Perl extension) (3655)
  1361. \p{Decomposition_Type: Non_Canonical} Union of all non-canonical
  1362. decompositions (Short: \p{Dt=NonCanon})
  1363. (Perl extension) (3655)
  1364. \p{Decomposition_Type: None} (Short: \p{Dt=None}) (1_097_232)
  1365. \p{Decomposition_Type: Small} (Short: \p{Dt=Sml}) (26)
  1366. \p{Decomposition_Type: Sml} \p{Decomposition_Type=Small} (26)
  1367. \p{Decomposition_Type: Sqr} \p{Decomposition_Type=Square} (284)
  1368. \p{Decomposition_Type: Square} (Short: \p{Dt=Sqr}) (284)
  1369. \p{Decomposition_Type: Sub} (Short: \p{Dt=Sub}) (38)
  1370. \p{Decomposition_Type: Sup} \p{Decomposition_Type=Super} (146)
  1371. \p{Decomposition_Type: Super} (Short: \p{Dt=Sup}) (146)
  1372. \p{Decomposition_Type: Vert} \p{Decomposition_Type=Vertical} (35)
  1373. \p{Decomposition_Type: Vertical} (Short: \p{Dt=Vert}) (35)
  1374. \p{Decomposition_Type: Wide} (Short: \p{Dt=Wide}) (104)
  1375. \p{Default_Ignorable_Code_Point} \p{Default_Ignorable_Code_Point=
  1376. Y} (Short: \p{DI}) (4167)
  1377. \p{Default_Ignorable_Code_Point: N*} (Short: \p{DI=N}, \P{DI})
  1378. (1_109_945)
  1379. \p{Default_Ignorable_Code_Point: Y*} (Short: \p{DI=Y}, \p{DI})
  1380. (4167)
  1381. \p{Dep} \p{Deprecated} (= \p{Deprecated=Y}) (111)
  1382. \p{Dep: *} \p{Deprecated: *}
  1383. \p{Deprecated} \p{Deprecated=Y} (Short: \p{Dep}) (111)
  1384. \p{Deprecated: N*} (Short: \p{Dep=N}, \P{Dep}) (1_114_001)
  1385. \p{Deprecated: Y*} (Short: \p{Dep=Y}, \p{Dep}) (111)
  1386. \p{Deseret} \p{Script=Deseret} (Short: \p{Dsrt}) (80)
  1387. \p{Deva} \p{Devanagari} (= \p{Script=Devanagari})
  1388. (NOT \p{Block=Devanagari}) (151)
  1389. \p{Devanagari} \p{Script=Devanagari} (Short: \p{Deva};
  1390. NOT \p{Block=Devanagari}) (151)
  1391. X \p{Devanagari_Ext} \p{Devanagari_Extended} (= \p{Block=
  1392. Devanagari_Extended}) (32)
  1393. X \p{Devanagari_Extended} \p{Block=Devanagari_Extended} (Short:
  1394. \p{InDevanagariExt}) (32)
  1395. \p{DI} \p{Default_Ignorable_Code_Point} (=
  1396. \p{Default_Ignorable_Code_Point=Y})
  1397. (4167)
  1398. \p{DI: *} \p{Default_Ignorable_Code_Point: *}
  1399. \p{Dia} \p{Diacritic} (= \p{Diacritic=Y}) (693)
  1400. \p{Dia: *} \p{Diacritic: *}
  1401. \p{Diacritic} \p{Diacritic=Y} (Short: \p{Dia}) (693)
  1402. \p{Diacritic: N*} (Short: \p{Dia=N}, \P{Dia}) (1_113_419)
  1403. \p{Diacritic: Y*} (Short: \p{Dia=Y}, \p{Dia}) (693)
  1404. X \p{Diacriticals} \p{Combining_Diacritical_Marks} (=
  1405. \p{Block=Combining_Diacritical_Marks})
  1406. (112)
  1407. X \p{Diacriticals_For_Symbols}
  1408. \p{Combining_Diacritical_Marks_For_-
  1409. Symbols} (= \p{Block=
  1410. Combining_Diacritical_Marks_For_-
  1411. Symbols}) (48)
  1412. X \p{Diacriticals_Sup} \p{Combining_Diacritical_Marks_Supplement}
  1413. (= \p{Block=
  1414. Combining_Diacritical_Marks_Supplement})
  1415. (64)
  1416. \p{Digit} \p{General_Category=Decimal_Number} [0-9]
  1417. + all other decimal digits (Short:
  1418. \p{Nd}) (460)
  1419. X \p{Dingbats} \p{Block=Dingbats} (192)
  1420. X \p{Domino} \p{Domino_Tiles} (= \p{Block=
  1421. Domino_Tiles}) (112)
  1422. X \p{Domino_Tiles} \p{Block=Domino_Tiles} (Short:
  1423. \p{InDomino}) (112)
  1424. \p{Dsrt} \p{Deseret} (= \p{Script=Deseret}) (80)
  1425. \p{Dt: *} \p{Decomposition_Type: *}
  1426. \p{Ea: *} \p{East_Asian_Width: *}
  1427. \p{East_Asian_Width: A} \p{East_Asian_Width=Ambiguous} (138_746)
  1428. \p{East_Asian_Width: Ambiguous} (Short: \p{Ea=A}) (138_746)
  1429. \p{East_Asian_Width: F} \p{East_Asian_Width=Fullwidth} (104)
  1430. \p{East_Asian_Width: Fullwidth} (Short: \p{Ea=F}) (104)
  1431. \p{East_Asian_Width: H} \p{East_Asian_Width=Halfwidth} (123)
  1432. \p{East_Asian_Width: Halfwidth} (Short: \p{Ea=H}) (123)
  1433. \p{East_Asian_Width: N} \p{East_Asian_Width=Neutral} (801_811)
  1434. \p{East_Asian_Width: Na} \p{East_Asian_Width=Narrow} (111)
  1435. \p{East_Asian_Width: Narrow} (Short: \p{Ea=Na}) (111)
  1436. \p{East_Asian_Width: Neutral} (Short: \p{Ea=N}) (801_811)
  1437. \p{East_Asian_Width: W} \p{East_Asian_Width=Wide} (173_217)
  1438. \p{East_Asian_Width: Wide} (Short: \p{Ea=W}) (173_217)
  1439. \p{Egyp} \p{Egyptian_Hieroglyphs} (= \p{Script=
  1440. Egyptian_Hieroglyphs}) (NOT \p{Block=
  1441. Egyptian_Hieroglyphs}) (1071)
  1442. \p{Egyptian_Hieroglyphs} \p{Script=Egyptian_Hieroglyphs} (Short:
  1443. \p{Egyp}; NOT \p{Block=
  1444. Egyptian_Hieroglyphs}) (1071)
  1445. X \p{Emoticons} \p{Block=Emoticons} (80)
  1446. X \p{Enclosed_Alphanum} \p{Enclosed_Alphanumerics} (= \p{Block=
  1447. Enclosed_Alphanumerics}) (160)
  1448. X \p{Enclosed_Alphanum_Sup} \p{Enclosed_Alphanumeric_Supplement} (=
  1449. \p{Block=
  1450. Enclosed_Alphanumeric_Supplement}) (256)
  1451. X \p{Enclosed_Alphanumeric_Supplement} \p{Block=
  1452. Enclosed_Alphanumeric_Supplement}
  1453. (Short: \p{InEnclosedAlphanumSup}) (256)
  1454. X \p{Enclosed_Alphanumerics} \p{Block=Enclosed_Alphanumerics}
  1455. (Short: \p{InEnclosedAlphanum}) (160)
  1456. X \p{Enclosed_CJK} \p{Enclosed_CJK_Letters_And_Months} (=
  1457. \p{Block=
  1458. Enclosed_CJK_Letters_And_Months}) (256)
  1459. X \p{Enclosed_CJK_Letters_And_Months} \p{Block=
  1460. Enclosed_CJK_Letters_And_Months} (Short:
  1461. \p{InEnclosedCJK}) (256)
  1462. X \p{Enclosed_Ideographic_Sup} \p{Enclosed_Ideographic_Supplement}
  1463. (= \p{Block=
  1464. Enclosed_Ideographic_Supplement}) (256)
  1465. X \p{Enclosed_Ideographic_Supplement} \p{Block=
  1466. Enclosed_Ideographic_Supplement} (Short:
  1467. \p{InEnclosedIdeographicSup}) (256)
  1468. \p{Enclosing_Mark} \p{General_Category=Enclosing_Mark}
  1469. (Short: \p{Me}) (12)
  1470. \p{Ethi} \p{Ethiopic} (= \p{Script=Ethiopic}) (NOT
  1471. \p{Block=Ethiopic}) (495)
  1472. \p{Ethiopic} \p{Script=Ethiopic} (Short: \p{Ethi}; NOT
  1473. \p{Block=Ethiopic}) (495)
  1474. X \p{Ethiopic_Ext} \p{Ethiopic_Extended} (= \p{Block=
  1475. Ethiopic_Extended}) (96)
  1476. X \p{Ethiopic_Ext_A} \p{Ethiopic_Extended_A} (= \p{Block=
  1477. Ethiopic_Extended_A}) (48)
  1478. X \p{Ethiopic_Extended} \p{Block=Ethiopic_Extended} (Short:
  1479. \p{InEthiopicExt}) (96)
  1480. X \p{Ethiopic_Extended_A} \p{Block=Ethiopic_Extended_A} (Short:
  1481. \p{InEthiopicExtA}) (48)
  1482. X \p{Ethiopic_Sup} \p{Ethiopic_Supplement} (= \p{Block=
  1483. Ethiopic_Supplement}) (32)
  1484. X \p{Ethiopic_Supplement} \p{Block=Ethiopic_Supplement} (Short:
  1485. \p{InEthiopicSup}) (32)
  1486. \p{Ext} \p{Extender} (= \p{Extender=Y}) (31)
  1487. \p{Ext: *} \p{Extender: *}
  1488. \p{Extender} \p{Extender=Y} (Short: \p{Ext}) (31)
  1489. \p{Extender: N*} (Short: \p{Ext=N}, \P{Ext}) (1_114_081)
  1490. \p{Extender: Y*} (Short: \p{Ext=Y}, \p{Ext}) (31)
  1491. \p{Final_Punctuation} \p{General_Category=Final_Punctuation}
  1492. (Short: \p{Pf}) (10)
  1493. \p{Format} \p{General_Category=Format} (Short:
  1494. \p{Cf}) (139)
  1495. \p{Full_Composition_Exclusion} \p{Full_Composition_Exclusion=Y}
  1496. (Short: \p{CompEx}) (1120)
  1497. \p{Full_Composition_Exclusion: N*} (Short: \p{CompEx=N},
  1498. \P{CompEx}) (1_112_992)
  1499. \p{Full_Composition_Exclusion: Y*} (Short: \p{CompEx=Y},
  1500. \p{CompEx}) (1120)
  1501. \p{Gc: *} \p{General_Category: *}
  1502. \p{GCB: *} \p{Grapheme_Cluster_Break: *}
  1503. \p{General_Category: C} \p{General_Category=Other} (1_004_135)
  1504. \p{General_Category: Cased_Letter} [\p{Ll}\p{Lu}\p{Lt}] (Short:
  1505. \p{Gc=LC}, \p{LC}) (3223)
  1506. \p{General_Category: Cc} \p{General_Category=Control} (65)
  1507. \p{General_Category: Cf} \p{General_Category=Format} (139)
  1508. \p{General_Category: Close_Punctuation} (Short: \p{Gc=Pe}, \p{Pe})
  1509. (71)
  1510. \p{General_Category: Cn} \p{General_Category=Unassigned} (864_415)
  1511. \p{General_Category: Cntrl} \p{General_Category=Control} (65)
  1512. \p{General_Category: Co} \p{General_Category=Private_Use} (137_468)
  1513. \p{General_Category: Combining_Mark} \p{General_Category=Mark}
  1514. (1645)
  1515. \p{General_Category: Connector_Punctuation} (Short: \p{Gc=Pc},
  1516. \p{Pc}) (10)
  1517. \p{General_Category: Control} (Short: \p{Gc=Cc}, \p{Cc}) (65)
  1518. \p{General_Category: Cs} \p{General_Category=Surrogate} (2048)
  1519. \p{General_Category: Currency_Symbol} (Short: \p{Gc=Sc}, \p{Sc})
  1520. (48)
  1521. \p{General_Category: Dash_Punctuation} (Short: \p{Gc=Pd}, \p{Pd})
  1522. (23)
  1523. \p{General_Category: Decimal_Number} (Short: \p{Gc=Nd}, \p{Nd})
  1524. (460)
  1525. \p{General_Category: Digit} \p{General_Category=Decimal_Number}
  1526. (460)
  1527. \p{General_Category: Enclosing_Mark} (Short: \p{Gc=Me}, \p{Me})
  1528. (12)
  1529. \p{General_Category: Final_Punctuation} (Short: \p{Gc=Pf}, \p{Pf})
  1530. (10)
  1531. \p{General_Category: Format} (Short: \p{Gc=Cf}, \p{Cf}) (139)
  1532. \p{General_Category: Initial_Punctuation} (Short: \p{Gc=Pi},
  1533. \p{Pi}) (12)
  1534. \p{General_Category: L} \p{General_Category=Letter} (101_013)
  1535. X \p{General_Category: L&} \p{General_Category=Cased_Letter} (3223)
  1536. X \p{General_Category: L_} \p{General_Category=Cased_Letter} Note
  1537. the trailing '_' matters in spite of
  1538. loose matching rules. (3223)
  1539. \p{General_Category: LC} \p{General_Category=Cased_Letter} (3223)
  1540. \p{General_Category: Letter} (Short: \p{Gc=L}, \p{L}) (101_013)
  1541. \p{General_Category: Letter_Number} (Short: \p{Gc=Nl}, \p{Nl})
  1542. (224)
  1543. \p{General_Category: Line_Separator} (Short: \p{Gc=Zl}, \p{Zl}) (1)
  1544. \p{General_Category: Ll} \p{General_Category=Lowercase_Letter}
  1545. (/i= General_Category=Cased_Letter)
  1546. (1751)
  1547. \p{General_Category: Lm} \p{General_Category=Modifier_Letter} (237)
  1548. \p{General_Category: Lo} \p{General_Category=Other_Letter} (97_553)
  1549. \p{General_Category: Lowercase_Letter} (Short: \p{Gc=Ll}, \p{Ll};
  1550. /i= General_Category=Cased_Letter) (1751)
  1551. \p{General_Category: Lt} \p{General_Category=Titlecase_Letter}
  1552. (/i= General_Category=Cased_Letter) (31)
  1553. \p{General_Category: Lu} \p{General_Category=Uppercase_Letter}
  1554. (/i= General_Category=Cased_Letter)
  1555. (1441)
  1556. \p{General_Category: M} \p{General_Category=Mark} (1645)
  1557. \p{General_Category: Mark} (Short: \p{Gc=M}, \p{M}) (1645)
  1558. \p{General_Category: Math_Symbol} (Short: \p{Gc=Sm}, \p{Sm}) (952)
  1559. \p{General_Category: Mc} \p{General_Category=Spacing_Mark} (353)
  1560. \p{General_Category: Me} \p{General_Category=Enclosing_Mark} (12)
  1561. \p{General_Category: Mn} \p{General_Category=Nonspacing_Mark}
  1562. (1280)
  1563. \p{General_Category: Modifier_Letter} (Short: \p{Gc=Lm}, \p{Lm})
  1564. (237)
  1565. \p{General_Category: Modifier_Symbol} (Short: \p{Gc=Sk}, \p{Sk})
  1566. (115)
  1567. \p{General_Category: N} \p{General_Category=Number} (1148)
  1568. \p{General_Category: Nd} \p{General_Category=Decimal_Number} (460)
  1569. \p{General_Category: Nl} \p{General_Category=Letter_Number} (224)
  1570. \p{General_Category: No} \p{General_Category=Other_Number} (464)
  1571. \p{General_Category: Nonspacing_Mark} (Short: \p{Gc=Mn}, \p{Mn})
  1572. (1280)
  1573. \p{General_Category: Number} (Short: \p{Gc=N}, \p{N}) (1148)
  1574. \p{General_Category: Open_Punctuation} (Short: \p{Gc=Ps}, \p{Ps})
  1575. (72)
  1576. \p{General_Category: Other} (Short: \p{Gc=C}, \p{C}) (1_004_135)
  1577. \p{General_Category: Other_Letter} (Short: \p{Gc=Lo}, \p{Lo})
  1578. (97_553)
  1579. \p{General_Category: Other_Number} (Short: \p{Gc=No}, \p{No}) (464)
  1580. \p{General_Category: Other_Punctuation} (Short: \p{Gc=Po}, \p{Po})
  1581. (434)
  1582. \p{General_Category: Other_Symbol} (Short: \p{Gc=So}, \p{So})
  1583. (4404)
  1584. \p{General_Category: P} \p{General_Category=Punctuation} (632)
  1585. \p{General_Category: Paragraph_Separator} (Short: \p{Gc=Zp},
  1586. \p{Zp}) (1)
  1587. \p{General_Category: Pc} \p{General_Category=
  1588. Connector_Punctuation} (10)
  1589. \p{General_Category: Pd} \p{General_Category=Dash_Punctuation} (23)
  1590. \p{General_Category: Pe} \p{General_Category=Close_Punctuation}
  1591. (71)
  1592. \p{General_Category: Pf} \p{General_Category=Final_Punctuation}
  1593. (10)
  1594. \p{General_Category: Pi} \p{General_Category=Initial_Punctuation}
  1595. (12)
  1596. \p{General_Category: Po} \p{General_Category=Other_Punctuation}
  1597. (434)
  1598. \p{General_Category: Private_Use} (Short: \p{Gc=Co}, \p{Co})
  1599. (137_468)
  1600. \p{General_Category: Ps} \p{General_Category=Open_Punctuation} (72)
  1601. \p{General_Category: Punct} \p{General_Category=Punctuation} (632)
  1602. \p{General_Category: Punctuation} (Short: \p{Gc=P}, \p{P}) (632)
  1603. \p{General_Category: S} \p{General_Category=Symbol} (5519)
  1604. \p{General_Category: Sc} \p{General_Category=Currency_Symbol} (48)
  1605. \p{General_Category: Separator} (Short: \p{Gc=Z}, \p{Z}) (20)
  1606. \p{General_Category: Sk} \p{General_Category=Modifier_Symbol} (115)
  1607. \p{General_Category: Sm} \p{General_Category=Math_Symbol} (952)
  1608. \p{General_Category: So} \p{General_Category=Other_Symbol} (4404)
  1609. \p{General_Category: Space_Separator} (Short: \p{Gc=Zs}, \p{Zs})
  1610. (18)
  1611. \p{General_Category: Spacing_Mark} (Short: \p{Gc=Mc}, \p{Mc}) (353)
  1612. \p{General_Category: Surrogate} (Short: \p{Gc=Cs}, \p{Cs}) (2048)
  1613. \p{General_Category: Symbol} (Short: \p{Gc=S}, \p{S}) (5519)
  1614. \p{General_Category: Titlecase_Letter} (Short: \p{Gc=Lt}, \p{Lt};
  1615. /i= General_Category=Cased_Letter) (31)
  1616. \p{General_Category: Unassigned} (Short: \p{Gc=Cn}, \p{Cn})
  1617. (864_415)
  1618. \p{General_Category: Uppercase_Letter} (Short: \p{Gc=Lu}, \p{Lu};
  1619. /i= General_Category=Cased_Letter) (1441)
  1620. \p{General_Category: Z} \p{General_Category=Separator} (20)
  1621. \p{General_Category: Zl} \p{General_Category=Line_Separator} (1)
  1622. \p{General_Category: Zp} \p{General_Category=Paragraph_Separator}
  1623. (1)
  1624. \p{General_Category: Zs} \p{General_Category=Space_Separator} (18)
  1625. X \p{General_Punctuation} \p{Block=General_Punctuation} (Short:
  1626. \p{InPunctuation}) (112)
  1627. X \p{Geometric_Shapes} \p{Block=Geometric_Shapes} (96)
  1628. \p{Geor} \p{Georgian} (= \p{Script=Georgian}) (NOT
  1629. \p{Block=Georgian}) (127)
  1630. \p{Georgian} \p{Script=Georgian} (Short: \p{Geor}; NOT
  1631. \p{Block=Georgian}) (127)
  1632. X \p{Georgian_Sup} \p{Georgian_Supplement} (= \p{Block=
  1633. Georgian_Supplement}) (48)
  1634. X \p{Georgian_Supplement} \p{Block=Georgian_Supplement} (Short:
  1635. \p{InGeorgianSup}) (48)
  1636. \p{Glag} \p{Glagolitic} (= \p{Script=Glagolitic})
  1637. (NOT \p{Block=Glagolitic}) (94)
  1638. \p{Glagolitic} \p{Script=Glagolitic} (Short: \p{Glag};
  1639. NOT \p{Block=Glagolitic}) (94)
  1640. \p{Goth} \p{Gothic} (= \p{Script=Gothic}) (NOT
  1641. \p{Block=Gothic}) (27)
  1642. \p{Gothic} \p{Script=Gothic} (Short: \p{Goth}; NOT
  1643. \p{Block=Gothic}) (27)
  1644. \p{Gr_Base} \p{Grapheme_Base} (= \p{Grapheme_Base=Y})
  1645. (108_660)
  1646. \p{Gr_Base: *} \p{Grapheme_Base: *}
  1647. \p{Gr_Ext} \p{Grapheme_Extend} (= \p{Grapheme_Extend=
  1648. Y}) (1317)
  1649. \p{Gr_Ext: *} \p{Grapheme_Extend: *}
  1650. \p{Graph} Characters that are graphical (247_564)
  1651. \p{Grapheme_Base} \p{Grapheme_Base=Y} (Short: \p{GrBase})
  1652. (108_660)
  1653. \p{Grapheme_Base: N*} (Short: \p{GrBase=N}, \P{GrBase})
  1654. (1_005_452)
  1655. \p{Grapheme_Base: Y*} (Short: \p{GrBase=Y}, \p{GrBase}) (108_660)
  1656. \p{Grapheme_Cluster_Break: CN} \p{Grapheme_Cluster_Break=Control}
  1657. (6023)
  1658. \p{Grapheme_Cluster_Break: Control} (Short: \p{GCB=CN}) (6023)
  1659. \p{Grapheme_Cluster_Break: CR} (Short: \p{GCB=CR}) (1)
  1660. \p{Grapheme_Cluster_Break: EX} \p{Grapheme_Cluster_Break=Extend}
  1661. (1317)
  1662. \p{Grapheme_Cluster_Break: Extend} (Short: \p{GCB=EX}) (1317)
  1663. \p{Grapheme_Cluster_Break: L} (Short: \p{GCB=L}) (125)
  1664. \p{Grapheme_Cluster_Break: LF} (Short: \p{GCB=LF}) (1)
  1665. \p{Grapheme_Cluster_Break: LV} (Short: \p{GCB=LV}) (399)
  1666. \p{Grapheme_Cluster_Break: LVT} (Short: \p{GCB=LVT}) (10_773)
  1667. \p{Grapheme_Cluster_Break: Other} (Short: \p{GCB=XX}) (1_094_950)
  1668. \p{Grapheme_Cluster_Break: PP} \p{Grapheme_Cluster_Break=Prepend}
  1669. (0)
  1670. \p{Grapheme_Cluster_Break: Prepend} (Short: \p{GCB=PP}) (0)
  1671. \p{Grapheme_Cluster_Break: SM} \p{Grapheme_Cluster_Break=
  1672. SpacingMark} (291)
  1673. \p{Grapheme_Cluster_Break: SpacingMark} (Short: \p{GCB=SM}) (291)
  1674. \p{Grapheme_Cluster_Break: T} (Short: \p{GCB=T}) (137)
  1675. \p{Grapheme_Cluster_Break: V} (Short: \p{GCB=V}) (95)
  1676. \p{Grapheme_Cluster_Break: XX} \p{Grapheme_Cluster_Break=Other}
  1677. (1_094_950)
  1678. \p{Grapheme_Extend} \p{Grapheme_Extend=Y} (Short: \p{GrExt})
  1679. (1317)
  1680. \p{Grapheme_Extend: N*} (Short: \p{GrExt=N}, \P{GrExt}) (1_112_795)
  1681. \p{Grapheme_Extend: Y*} (Short: \p{GrExt=Y}, \p{GrExt}) (1317)
  1682. \p{Greek} \p{Script=Greek} (Short: \p{Grek}; NOT
  1683. \p{Greek_And_Coptic}) (511)
  1684. X \p{Greek_And_Coptic} \p{Block=Greek_And_Coptic} (Short:
  1685. \p{InGreek}) (144)
  1686. X \p{Greek_Ext} \p{Greek_Extended} (= \p{Block=
  1687. Greek_Extended}) (256)
  1688. X \p{Greek_Extended} \p{Block=Greek_Extended} (Short:
  1689. \p{InGreekExt}) (256)
  1690. \p{Grek} \p{Greek} (= \p{Script=Greek}) (NOT
  1691. \p{Greek_And_Coptic}) (511)
  1692. \p{Gujarati} \p{Script=Gujarati} (Short: \p{Gujr}; NOT
  1693. \p{Block=Gujarati}) (84)
  1694. \p{Gujr} \p{Gujarati} (= \p{Script=Gujarati}) (NOT
  1695. \p{Block=Gujarati}) (84)
  1696. \p{Gurmukhi} \p{Script=Gurmukhi} (Short: \p{Guru}; NOT
  1697. \p{Block=Gurmukhi}) (79)
  1698. \p{Guru} \p{Gurmukhi} (= \p{Script=Gurmukhi}) (NOT
  1699. \p{Block=Gurmukhi}) (79)
  1700. X \p{Half_And_Full_Forms} \p{Halfwidth_And_Fullwidth_Forms} (=
  1701. \p{Block=Halfwidth_And_Fullwidth_Forms})
  1702. (240)
  1703. X \p{Half_Marks} \p{Combining_Half_Marks} (= \p{Block=
  1704. Combining_Half_Marks}) (16)
  1705. X \p{Halfwidth_And_Fullwidth_Forms} \p{Block=
  1706. Halfwidth_And_Fullwidth_Forms} (Short:
  1707. \p{InHalfAndFullForms}) (240)
  1708. \p{Han} \p{Script=Han} (75_963)
  1709. \p{Hang} \p{Hangul} (= \p{Script=Hangul}) (NOT
  1710. \p{Hangul_Syllables}) (11_739)
  1711. \p{Hangul} \p{Script=Hangul} (Short: \p{Hang}; NOT
  1712. \p{Hangul_Syllables}) (11_739)
  1713. X \p{Hangul_Compatibility_Jamo} \p{Block=Hangul_Compatibility_Jamo}
  1714. (Short: \p{InCompatJamo}) (96)
  1715. X \p{Hangul_Jamo} \p{Block=Hangul_Jamo} (Short: \p{InJamo})
  1716. (256)
  1717. X \p{Hangul_Jamo_Extended_A} \p{Block=Hangul_Jamo_Extended_A}
  1718. (Short: \p{InJamoExtA}) (32)
  1719. X \p{Hangul_Jamo_Extended_B} \p{Block=Hangul_Jamo_Extended_B}
  1720. (Short: \p{InJamoExtB}) (80)
  1721. \p{Hangul_Syllable_Type: L} \p{Hangul_Syllable_Type=Leading_Jamo}
  1722. (125)
  1723. \p{Hangul_Syllable_Type: Leading_Jamo} (Short: \p{Hst=L}) (125)
  1724. \p{Hangul_Syllable_Type: LV} \p{Hangul_Syllable_Type=LV_Syllable}
  1725. (399)
  1726. \p{Hangul_Syllable_Type: LV_Syllable} (Short: \p{Hst=LV}) (399)
  1727. \p{Hangul_Syllable_Type: LVT} \p{Hangul_Syllable_Type=
  1728. LVT_Syllable} (10_773)
  1729. \p{Hangul_Syllable_Type: LVT_Syllable} (Short: \p{Hst=LVT})
  1730. (10_773)
  1731. \p{Hangul_Syllable_Type: NA} \p{Hangul_Syllable_Type=
  1732. Not_Applicable} (1_102_583)
  1733. \p{Hangul_Syllable_Type: Not_Applicable} (Short: \p{Hst=NA})
  1734. (1_102_583)
  1735. \p{Hangul_Syllable_Type: T} \p{Hangul_Syllable_Type=Trailing_Jamo}
  1736. (137)
  1737. \p{Hangul_Syllable_Type: Trailing_Jamo} (Short: \p{Hst=T}) (137)
  1738. \p{Hangul_Syllable_Type: V} \p{Hangul_Syllable_Type=Vowel_Jamo}
  1739. (95)
  1740. \p{Hangul_Syllable_Type: Vowel_Jamo} (Short: \p{Hst=V}) (95)
  1741. X \p{Hangul_Syllables} \p{Block=Hangul_Syllables} (Short:
  1742. \p{InHangul}) (11_184)
  1743. \p{Hani} \p{Han} (= \p{Script=Han}) (75_963)
  1744. \p{Hano} \p{Hanunoo} (= \p{Script=Hanunoo}) (NOT
  1745. \p{Block=Hanunoo}) (21)
  1746. \p{Hanunoo} \p{Script=Hanunoo} (Short: \p{Hano}; NOT
  1747. \p{Block=Hanunoo}) (21)
  1748. \p{Hebr} \p{Hebrew} (= \p{Script=Hebrew}) (NOT
  1749. \p{Block=Hebrew}) (133)
  1750. \p{Hebrew} \p{Script=Hebrew} (Short: \p{Hebr}; NOT
  1751. \p{Block=Hebrew}) (133)
  1752. \p{Hex} \p{XDigit} (= \p{Hex_Digit=Y}) (44)
  1753. \p{Hex: *} \p{Hex_Digit: *}
  1754. \p{Hex_Digit} \p{XDigit} (= \p{Hex_Digit=Y}) (44)
  1755. \p{Hex_Digit: N*} (Short: \p{Hex=N}, \P{Hex}) (1_114_068)
  1756. \p{Hex_Digit: Y*} (Short: \p{Hex=Y}, \p{Hex}) (44)
  1757. X \p{High_Private_Use_Surrogates} \p{Block=
  1758. High_Private_Use_Surrogates} (Short:
  1759. \p{InHighPUSurrogates}) (128)
  1760. X \p{High_PU_Surrogates} \p{High_Private_Use_Surrogates} (=
  1761. \p{Block=High_Private_Use_Surrogates})
  1762. (128)
  1763. X \p{High_Surrogates} \p{Block=High_Surrogates} (896)
  1764. \p{Hira} \p{Hiragana} (= \p{Script=Hiragana}) (NOT
  1765. \p{Block=Hiragana}) (91)
  1766. \p{Hiragana} \p{Script=Hiragana} (Short: \p{Hira}; NOT
  1767. \p{Block=Hiragana}) (91)
  1768. \p{HorizSpace} \p{Blank} (19)
  1769. \p{Hst: *} \p{Hangul_Syllable_Type: *}
  1770. D \p{Hyphen} \p{Hyphen=Y} (11)
  1771. D \p{Hyphen: N*} Supplanted by Line_Break property values;
  1772. see www.unicode.org/reports/tr14
  1773. (Single: \P{Hyphen}) (1_114_101)
  1774. D \p{Hyphen: Y*} Supplanted by Line_Break property values;
  1775. see www.unicode.org/reports/tr14
  1776. (Single: \p{Hyphen}) (11)
  1777. \p{ID_Continue} \p{ID_Continue=Y} (Short: \p{IDC}; NOT
  1778. \p{Ideographic_Description_Characters})
  1779. (103_355)
  1780. \p{ID_Continue: N*} (Short: \p{IDC=N}, \P{IDC}) (1_010_757)
  1781. \p{ID_Continue: Y*} (Short: \p{IDC=Y}, \p{IDC}) (103_355)
  1782. \p{ID_Start} \p{ID_Start=Y} (Short: \p{IDS}) (101_240)
  1783. \p{ID_Start: N*} (Short: \p{IDS=N}, \P{IDS}) (1_012_872)
  1784. \p{ID_Start: Y*} (Short: \p{IDS=Y}, \p{IDS}) (101_240)
  1785. \p{IDC} \p{ID_Continue} (= \p{ID_Continue=Y}) (NOT
  1786. \p{Ideographic_Description_Characters})
  1787. (103_355)
  1788. \p{IDC: *} \p{ID_Continue: *}
  1789. \p{Ideo} \p{Ideographic} (= \p{Ideographic=Y})
  1790. (75_633)
  1791. \p{Ideo: *} \p{Ideographic: *}
  1792. \p{Ideographic} \p{Ideographic=Y} (Short: \p{Ideo})
  1793. (75_633)
  1794. \p{Ideographic: N*} (Short: \p{Ideo=N}, \P{Ideo}) (1_038_479)
  1795. \p{Ideographic: Y*} (Short: \p{Ideo=Y}, \p{Ideo}) (75_633)
  1796. X \p{Ideographic_Description_Characters} \p{Block=
  1797. Ideographic_Description_Characters}
  1798. (Short: \p{InIDC}) (16)
  1799. \p{IDS} \p{ID_Start} (= \p{ID_Start=Y}) (101_240)
  1800. \p{IDS: *} \p{ID_Start: *}
  1801. \p{IDS_Binary_Operator} \p{IDS_Binary_Operator=Y} (Short:
  1802. \p{IDSB}) (10)
  1803. \p{IDS_Binary_Operator: N*} (Short: \p{IDSB=N}, \P{IDSB})
  1804. (1_114_102)
  1805. \p{IDS_Binary_Operator: Y*} (Short: \p{IDSB=Y}, \p{IDSB}) (10)
  1806. \p{IDS_Trinary_Operator} \p{IDS_Trinary_Operator=Y} (Short:
  1807. \p{IDST}) (2)
  1808. \p{IDS_Trinary_Operator: N*} (Short: \p{IDST=N}, \P{IDST})
  1809. (1_114_110)
  1810. \p{IDS_Trinary_Operator: Y*} (Short: \p{IDST=Y}, \p{IDST}) (2)
  1811. \p{IDSB} \p{IDS_Binary_Operator} (=
  1812. \p{IDS_Binary_Operator=Y}) (10)
  1813. \p{IDSB: *} \p{IDS_Binary_Operator: *}
  1814. \p{IDST} \p{IDS_Trinary_Operator} (=
  1815. \p{IDS_Trinary_Operator=Y}) (2)
  1816. \p{IDST: *} \p{IDS_Trinary_Operator: *}
  1817. \p{Imperial_Aramaic} \p{Script=Imperial_Aramaic} (Short:
  1818. \p{Armi}; NOT \p{Block=
  1819. Imperial_Aramaic}) (31)
  1820. \p{In: *} \p{Present_In: *} (Perl extension)
  1821. \p{In_*} \p{Block: *}
  1822. X \p{Indic_Number_Forms} \p{Common_Indic_Number_Forms} (= \p{Block=
  1823. Common_Indic_Number_Forms}) (16)
  1824. \p{Inherited} \p{Script=Inherited} (Short: \p{Zinh})
  1825. (524)
  1826. \p{Initial_Punctuation} \p{General_Category=Initial_Punctuation}
  1827. (Short: \p{Pi}) (12)
  1828. \p{Inscriptional_Pahlavi} \p{Script=Inscriptional_Pahlavi} (Short:
  1829. \p{Phli}; NOT \p{Block=
  1830. Inscriptional_Pahlavi}) (27)
  1831. \p{Inscriptional_Parthian} \p{Script=Inscriptional_Parthian}
  1832. (Short: \p{Prti}; NOT \p{Block=
  1833. Inscriptional_Parthian}) (30)
  1834. X \p{IPA_Ext} \p{IPA_Extensions} (= \p{Block=
  1835. IPA_Extensions}) (96)
  1836. X \p{IPA_Extensions} \p{Block=IPA_Extensions} (Short:
  1837. \p{InIPAExt}) (96)
  1838. \p{Is_*} \p{*} (Any exceptions are individually
  1839. noted beginning with the word NOT.) If
  1840. an entry has flag(s) at its beginning,
  1841. like "D", the "Is_" form has the same
  1842. flag(s)
  1843. \p{Ital} \p{Old_Italic} (= \p{Script=Old_Italic})
  1844. (NOT \p{Block=Old_Italic}) (35)
  1845. X \p{Jamo} \p{Hangul_Jamo} (= \p{Block=Hangul_Jamo})
  1846. (256)
  1847. X \p{Jamo_Ext_A} \p{Hangul_Jamo_Extended_A} (= \p{Block=
  1848. Hangul_Jamo_Extended_A}) (32)
  1849. X \p{Jamo_Ext_B} \p{Hangul_Jamo_Extended_B} (= \p{Block=
  1850. Hangul_Jamo_Extended_B}) (80)
  1851. \p{Java} \p{Javanese} (= \p{Script=Javanese}) (NOT
  1852. \p{Block=Javanese}) (91)
  1853. \p{Javanese} \p{Script=Javanese} (Short: \p{Java}; NOT
  1854. \p{Block=Javanese}) (91)
  1855. \p{Jg: *} \p{Joining_Group: *}
  1856. \p{Join_C} \p{Join_Control} (= \p{Join_Control=Y}) (2)
  1857. \p{Join_C: *} \p{Join_Control: *}
  1858. \p{Join_Control} \p{Join_Control=Y} (Short: \p{JoinC}) (2)
  1859. \p{Join_Control: N*} (Short: \p{JoinC=N}, \P{JoinC}) (1_114_110)
  1860. \p{Join_Control: Y*} (Short: \p{JoinC=Y}, \p{JoinC}) (2)
  1861. \p{Joining_Group: Ain} (Short: \p{Jg=Ain}) (7)
  1862. \p{Joining_Group: Alaph} (Short: \p{Jg=Alaph}) (1)
  1863. \p{Joining_Group: Alef} (Short: \p{Jg=Alef}) (10)
  1864. \p{Joining_Group: Beh} (Short: \p{Jg=Beh}) (20)
  1865. \p{Joining_Group: Beth} (Short: \p{Jg=Beth}) (2)
  1866. \p{Joining_Group: Burushaski_Yeh_Barree} (Short: \p{Jg=
  1867. BurushaskiYehBarree}) (2)
  1868. \p{Joining_Group: Dal} (Short: \p{Jg=Dal}) (14)
  1869. \p{Joining_Group: Dalath_Rish} (Short: \p{Jg=DalathRish}) (4)
  1870. \p{Joining_Group: E} (Short: \p{Jg=E}) (1)
  1871. \p{Joining_Group: Farsi_Yeh} (Short: \p{Jg=FarsiYeh}) (7)
  1872. \p{Joining_Group: Fe} (Short: \p{Jg=Fe}) (1)
  1873. \p{Joining_Group: Feh} (Short: \p{Jg=Feh}) (10)
  1874. \p{Joining_Group: Final_Semkath} (Short: \p{Jg=FinalSemkath}) (1)
  1875. \p{Joining_Group: Gaf} (Short: \p{Jg=Gaf}) (13)
  1876. \p{Joining_Group: Gamal} (Short: \p{Jg=Gamal}) (3)
  1877. \p{Joining_Group: Hah} (Short: \p{Jg=Hah}) (18)
  1878. \p{Joining_Group: Hamza_On_Heh_Goal} (Short: \p{Jg=
  1879. HamzaOnHehGoal}) (1)
  1880. \p{Joining_Group: He} (Short: \p{Jg=He}) (1)
  1881. \p{Joining_Group: Heh} (Short: \p{Jg=Heh}) (1)
  1882. \p{Joining_Group: Heh_Goal} (Short: \p{Jg=HehGoal}) (2)
  1883. \p{Joining_Group: Heth} (Short: \p{Jg=Heth}) (1)
  1884. \p{Joining_Group: Kaf} (Short: \p{Jg=Kaf}) (5)
  1885. \p{Joining_Group: Kaph} (Short: \p{Jg=Kaph}) (1)
  1886. \p{Joining_Group: Khaph} (Short: \p{Jg=Khaph}) (1)
  1887. \p{Joining_Group: Knotted_Heh} (Short: \p{Jg=KnottedHeh}) (2)
  1888. \p{Joining_Group: Lam} (Short: \p{Jg=Lam}) (7)
  1889. \p{Joining_Group: Lamadh} (Short: \p{Jg=Lamadh}) (1)
  1890. \p{Joining_Group: Meem} (Short: \p{Jg=Meem}) (4)
  1891. \p{Joining_Group: Mim} (Short: \p{Jg=Mim}) (1)
  1892. \p{Joining_Group: No_Joining_Group} (Short: \p{Jg=NoJoiningGroup})
  1893. (1_113_870)
  1894. \p{Joining_Group: Noon} (Short: \p{Jg=Noon}) (8)
  1895. \p{Joining_Group: Nun} (Short: \p{Jg=Nun}) (1)
  1896. \p{Joining_Group: Nya} (Short: \p{Jg=Nya}) (1)
  1897. \p{Joining_Group: Pe} (Short: \p{Jg=Pe}) (1)
  1898. \p{Joining_Group: Qaf} (Short: \p{Jg=Qaf}) (5)
  1899. \p{Joining_Group: Qaph} (Short: \p{Jg=Qaph}) (1)
  1900. \p{Joining_Group: Reh} (Short: \p{Jg=Reh}) (17)
  1901. \p{Joining_Group: Reversed_Pe} (Short: \p{Jg=ReversedPe}) (1)
  1902. \p{Joining_Group: Rohingya_Yeh} (Short: \p{Jg=RohingyaYeh}) (1)
  1903. \p{Joining_Group: Sad} (Short: \p{Jg=Sad}) (5)
  1904. \p{Joining_Group: Sadhe} (Short: \p{Jg=Sadhe}) (1)
  1905. \p{Joining_Group: Seen} (Short: \p{Jg=Seen}) (11)
  1906. \p{Joining_Group: Semkath} (Short: \p{Jg=Semkath}) (1)
  1907. \p{Joining_Group: Shin} (Short: \p{Jg=Shin}) (1)
  1908. \p{Joining_Group: Swash_Kaf} (Short: \p{Jg=SwashKaf}) (1)
  1909. \p{Joining_Group: Syriac_Waw} (Short: \p{Jg=SyriacWaw}) (1)
  1910. \p{Joining_Group: Tah} (Short: \p{Jg=Tah}) (4)
  1911. \p{Joining_Group: Taw} (Short: \p{Jg=Taw}) (1)
  1912. \p{Joining_Group: Teh_Marbuta} (Short: \p{Jg=TehMarbuta}) (3)
  1913. \p{Joining_Group: Teh_Marbuta_Goal} \p{Joining_Group=
  1914. Hamza_On_Heh_Goal} (1)
  1915. \p{Joining_Group: Teth} (Short: \p{Jg=Teth}) (2)
  1916. \p{Joining_Group: Waw} (Short: \p{Jg=Waw}) (16)
  1917. \p{Joining_Group: Yeh} (Short: \p{Jg=Yeh}) (10)
  1918. \p{Joining_Group: Yeh_Barree} (Short: \p{Jg=YehBarree}) (2)
  1919. \p{Joining_Group: Yeh_With_Tail} (Short: \p{Jg=YehWithTail}) (1)
  1920. \p{Joining_Group: Yudh} (Short: \p{Jg=Yudh}) (1)
  1921. \p{Joining_Group: Yudh_He} (Short: \p{Jg=YudhHe}) (1)
  1922. \p{Joining_Group: Zain} (Short: \p{Jg=Zain}) (1)
  1923. \p{Joining_Group: Zhain} (Short: \p{Jg=Zhain}) (1)
  1924. \p{Joining_Type: C} \p{Joining_Type=Join_Causing} (3)
  1925. \p{Joining_Type: D} \p{Joining_Type=Dual_Joining} (215)
  1926. \p{Joining_Type: Dual_Joining} (Short: \p{Jt=D}) (215)
  1927. \p{Joining_Type: Join_Causing} (Short: \p{Jt=C}) (3)
  1928. \p{Joining_Type: L} \p{Joining_Type=Left_Joining} (0)
  1929. \p{Joining_Type: Left_Joining} (Short: \p{Jt=L}) (0)
  1930. \p{Joining_Type: Non_Joining} (Short: \p{Jt=U}) (1_112_389)
  1931. \p{Joining_Type: R} \p{Joining_Type=Right_Joining} (82)
  1932. \p{Joining_Type: Right_Joining} (Short: \p{Jt=R}) (82)
  1933. \p{Joining_Type: T} \p{Joining_Type=Transparent} (1423)
  1934. \p{Joining_Type: Transparent} (Short: \p{Jt=T}) (1423)
  1935. \p{Joining_Type: U} \p{Joining_Type=Non_Joining} (1_112_389)
  1936. \p{Jt: *} \p{Joining_Type: *}
  1937. \p{Kaithi} \p{Script=Kaithi} (Short: \p{Kthi}; NOT
  1938. \p{Block=Kaithi}) (66)
  1939. \p{Kali} \p{Kayah_Li} (= \p{Script=Kayah_Li}) (48)
  1940. \p{Kana} \p{Katakana} (= \p{Script=Katakana}) (NOT
  1941. \p{Block=Katakana}) (300)
  1942. X \p{Kana_Sup} \p{Kana_Supplement} (= \p{Block=
  1943. Kana_Supplement}) (256)
  1944. X \p{Kana_Supplement} \p{Block=Kana_Supplement} (Short:
  1945. \p{InKanaSup}) (256)
  1946. X \p{Kanbun} \p{Block=Kanbun} (16)
  1947. X \p{Kangxi} \p{Kangxi_Radicals} (= \p{Block=
  1948. Kangxi_Radicals}) (224)
  1949. X \p{Kangxi_Radicals} \p{Block=Kangxi_Radicals} (Short:
  1950. \p{InKangxi}) (224)
  1951. \p{Kannada} \p{Script=Kannada} (Short: \p{Knda}; NOT
  1952. \p{Block=Kannada}) (86)
  1953. \p{Katakana} \p{Script=Katakana} (Short: \p{Kana}; NOT
  1954. \p{Block=Katakana}) (300)
  1955. X \p{Katakana_Ext} \p{Katakana_Phonetic_Extensions} (=
  1956. \p{Block=Katakana_Phonetic_Extensions})
  1957. (16)
  1958. X \p{Katakana_Phonetic_Extensions} \p{Block=
  1959. Katakana_Phonetic_Extensions} (Short:
  1960. \p{InKatakanaExt}) (16)
  1961. \p{Kayah_Li} \p{Script=Kayah_Li} (Short: \p{Kali}) (48)
  1962. \p{Khar} \p{Kharoshthi} (= \p{Script=Kharoshthi})
  1963. (NOT \p{Block=Kharoshthi}) (65)
  1964. \p{Kharoshthi} \p{Script=Kharoshthi} (Short: \p{Khar};
  1965. NOT \p{Block=Kharoshthi}) (65)
  1966. \p{Khmer} \p{Script=Khmer} (Short: \p{Khmr}; NOT
  1967. \p{Block=Khmer}) (146)
  1968. X \p{Khmer_Symbols} \p{Block=Khmer_Symbols} (32)
  1969. \p{Khmr} \p{Khmer} (= \p{Script=Khmer}) (NOT
  1970. \p{Block=Khmer}) (146)
  1971. \p{Knda} \p{Kannada} (= \p{Script=Kannada}) (NOT
  1972. \p{Block=Kannada}) (86)
  1973. \p{Kthi} \p{Kaithi} (= \p{Script=Kaithi}) (NOT
  1974. \p{Block=Kaithi}) (66)
  1975. \p{L} \p{Letter} (= \p{General_Category=Letter})
  1976. (101_013)
  1977. X \p{L&} \p{Cased_Letter} (= \p{General_Category=
  1978. Cased_Letter}) (3223)
  1979. X \p{L_} \p{Cased_Letter} (= \p{General_Category=
  1980. Cased_Letter}) Note the trailing '_'
  1981. matters in spite of loose matching
  1982. rules. (3223)
  1983. \p{Lana} \p{Tai_Tham} (= \p{Script=Tai_Tham}) (NOT
  1984. \p{Block=Tai_Tham}) (127)
  1985. \p{Lao} \p{Script=Lao} (NOT \p{Block=Lao}) (67)
  1986. \p{Laoo} \p{Lao} (= \p{Script=Lao}) (NOT \p{Block=
  1987. Lao}) (67)
  1988. \p{Latin} \p{Script=Latin} (Short: \p{Latn}) (1272)
  1989. X \p{Latin_1} \p{Latin_1_Supplement} (= \p{Block=
  1990. Latin_1_Supplement}) (128)
  1991. X \p{Latin_1_Sup} \p{Latin_1_Supplement} (= \p{Block=
  1992. Latin_1_Supplement}) (128)
  1993. X \p{Latin_1_Supplement} \p{Block=Latin_1_Supplement} (Short:
  1994. \p{InLatin1}) (128)
  1995. X \p{Latin_Ext_A} \p{Latin_Extended_A} (= \p{Block=
  1996. Latin_Extended_A}) (128)
  1997. X \p{Latin_Ext_Additional} \p{Latin_Extended_Additional} (=
  1998. \p{Block=Latin_Extended_Additional})
  1999. (256)
  2000. X \p{Latin_Ext_B} \p{Latin_Extended_B} (= \p{Block=
  2001. Latin_Extended_B}) (208)
  2002. X \p{Latin_Ext_C} \p{Latin_Extended_C} (= \p{Block=
  2003. Latin_Extended_C}) (32)
  2004. X \p{Latin_Ext_D} \p{Latin_Extended_D} (= \p{Block=
  2005. Latin_Extended_D}) (224)
  2006. X \p{Latin_Extended_A} \p{Block=Latin_Extended_A} (Short:
  2007. \p{InLatinExtA}) (128)
  2008. X \p{Latin_Extended_Additional} \p{Block=Latin_Extended_Additional}
  2009. (Short: \p{InLatinExtAdditional}) (256)
  2010. X \p{Latin_Extended_B} \p{Block=Latin_Extended_B} (Short:
  2011. \p{InLatinExtB}) (208)
  2012. X \p{Latin_Extended_C} \p{Block=Latin_Extended_C} (Short:
  2013. \p{InLatinExtC}) (32)
  2014. X \p{Latin_Extended_D} \p{Block=Latin_Extended_D} (Short:
  2015. \p{InLatinExtD}) (224)
  2016. \p{Latn} \p{Latin} (= \p{Script=Latin}) (1272)
  2017. \p{Lb: *} \p{Line_Break: *}
  2018. \p{LC} \p{Cased_Letter} (= \p{General_Category=
  2019. Cased_Letter}) (3223)
  2020. \p{Lepc} \p{Lepcha} (= \p{Script=Lepcha}) (NOT
  2021. \p{Block=Lepcha}) (74)
  2022. \p{Lepcha} \p{Script=Lepcha} (Short: \p{Lepc}; NOT
  2023. \p{Block=Lepcha}) (74)
  2024. \p{Letter} \p{General_Category=Letter} (Short: \p{L})
  2025. (101_013)
  2026. \p{Letter_Number} \p{General_Category=Letter_Number} (Short:
  2027. \p{Nl}) (224)
  2028. X \p{Letterlike_Symbols} \p{Block=Letterlike_Symbols} (80)
  2029. \p{Limb} \p{Limbu} (= \p{Script=Limbu}) (NOT
  2030. \p{Block=Limbu}) (66)
  2031. \p{Limbu} \p{Script=Limbu} (Short: \p{Limb}; NOT
  2032. \p{Block=Limbu}) (66)
  2033. \p{Linb} \p{Linear_B} (= \p{Script=Linear_B}) (211)
  2034. \p{Line_Break: AI} \p{Line_Break=Ambiguous} (724)
  2035. \p{Line_Break: AL} \p{Line_Break=Alphabetic} (16_251)
  2036. \p{Line_Break: Alphabetic} (Short: \p{Lb=AL}) (16_251)
  2037. \p{Line_Break: Ambiguous} (Short: \p{Lb=AI}) (724)
  2038. \p{Line_Break: B2} \p{Line_Break=Break_Both} (3)
  2039. \p{Line_Break: BA} \p{Line_Break=Break_After} (151)
  2040. \p{Line_Break: BB} \p{Line_Break=Break_Before} (19)
  2041. \p{Line_Break: BK} \p{Line_Break=Mandatory_Break} (4)
  2042. \p{Line_Break: Break_After} (Short: \p{Lb=BA}) (151)
  2043. \p{Line_Break: Break_Before} (Short: \p{Lb=BB}) (19)
  2044. \p{Line_Break: Break_Both} (Short: \p{Lb=B2}) (3)
  2045. \p{Line_Break: Break_Symbols} (Short: \p{Lb=SY}) (1)
  2046. \p{Line_Break: Carriage_Return} (Short: \p{Lb=CR}) (1)
  2047. \p{Line_Break: CB} \p{Line_Break=Contingent_Break} (1)
  2048. \p{Line_Break: CJ} \p{Line_Break=
  2049. Conditional_Japanese_Starter} (51)
  2050. \p{Line_Break: CL} \p{Line_Break=Close_Punctuation} (87)
  2051. \p{Line_Break: Close_Parenthesis} (Short: \p{Lb=CP}) (2)
  2052. \p{Line_Break: Close_Punctuation} (Short: \p{Lb=CL}) (87)
  2053. \p{Line_Break: CM} \p{Line_Break=Combining_Mark} (1628)
  2054. \p{Line_Break: Combining_Mark} (Short: \p{Lb=CM}) (1628)
  2055. \p{Line_Break: Complex_Context} (Short: \p{Lb=SA}) (665)
  2056. \p{Line_Break: Conditional_Japanese_Starter} (Short: \p{Lb=CJ})
  2057. (51)
  2058. \p{Line_Break: Contingent_Break} (Short: \p{Lb=CB}) (1)
  2059. \p{Line_Break: CP} \p{Line_Break=Close_Parenthesis} (2)
  2060. \p{Line_Break: CR} \p{Line_Break=Carriage_Return} (1)
  2061. \p{Line_Break: EX} \p{Line_Break=Exclamation} (34)
  2062. \p{Line_Break: Exclamation} (Short: \p{Lb=EX}) (34)
  2063. \p{Line_Break: GL} \p{Line_Break=Glue} (18)
  2064. \p{Line_Break: Glue} (Short: \p{Lb=GL}) (18)
  2065. \p{Line_Break: H2} (Short: \p{Lb=H2}) (399)
  2066. \p{Line_Break: H3} (Short: \p{Lb=H3}) (10_773)
  2067. \p{Line_Break: Hebrew_Letter} (Short: \p{Lb=HL}) (74)
  2068. \p{Line_Break: HL} \p{Line_Break=Hebrew_Letter} (74)
  2069. \p{Line_Break: HY} \p{Line_Break=Hyphen} (1)
  2070. \p{Line_Break: Hyphen} (Short: \p{Lb=HY}) (1)
  2071. \p{Line_Break: ID} \p{Line_Break=Ideographic} (161_793)
  2072. \p{Line_Break: Ideographic} (Short: \p{Lb=ID}) (161_793)
  2073. \p{Line_Break: IN} \p{Line_Break=Inseparable} (4)
  2074. \p{Line_Break: Infix_Numeric} (Short: \p{Lb=IS}) (13)
  2075. \p{Line_Break: Inseparable} (Short: \p{Lb=IN}) (4)
  2076. \p{Line_Break: Inseperable} \p{Line_Break=Inseparable} (4)
  2077. \p{Line_Break: IS} \p{Line_Break=Infix_Numeric} (13)
  2078. \p{Line_Break: JL} (Short: \p{Lb=JL}) (125)
  2079. \p{Line_Break: JT} (Short: \p{Lb=JT}) (137)
  2080. \p{Line_Break: JV} (Short: \p{Lb=JV}) (95)
  2081. \p{Line_Break: LF} \p{Line_Break=Line_Feed} (1)
  2082. \p{Line_Break: Line_Feed} (Short: \p{Lb=LF}) (1)
  2083. \p{Line_Break: Mandatory_Break} (Short: \p{Lb=BK}) (4)
  2084. \p{Line_Break: Next_Line} (Short: \p{Lb=NL}) (1)
  2085. \p{Line_Break: NL} \p{Line_Break=Next_Line} (1)
  2086. \p{Line_Break: Nonstarter} (Short: \p{Lb=NS}) (26)
  2087. \p{Line_Break: NS} \p{Line_Break=Nonstarter} (26)
  2088. \p{Line_Break: NU} \p{Line_Break=Numeric} (452)
  2089. \p{Line_Break: Numeric} (Short: \p{Lb=NU}) (452)
  2090. \p{Line_Break: OP} \p{Line_Break=Open_Punctuation} (81)
  2091. \p{Line_Break: Open_Punctuation} (Short: \p{Lb=OP}) (81)
  2092. \p{Line_Break: PO} \p{Line_Break=Postfix_Numeric} (28)
  2093. \p{Line_Break: Postfix_Numeric} (Short: \p{Lb=PO}) (28)
  2094. \p{Line_Break: PR} \p{Line_Break=Prefix_Numeric} (45)
  2095. \p{Line_Break: Prefix_Numeric} (Short: \p{Lb=PR}) (45)
  2096. \p{Line_Break: QU} \p{Line_Break=Quotation} (34)
  2097. \p{Line_Break: Quotation} (Short: \p{Lb=QU}) (34)
  2098. \p{Line_Break: SA} \p{Line_Break=Complex_Context} (665)
  2099. D \p{Line_Break: SG} \p{Line_Break=Surrogate} (2048)
  2100. \p{Line_Break: SP} \p{Line_Break=Space} (1)
  2101. \p{Line_Break: Space} (Short: \p{Lb=SP}) (1)
  2102. D \p{Line_Break: Surrogate} Deprecated by Unicode because surrogates
  2103. should never appear in well-formed text,
  2104. and therefore shouldn't be the basis for
  2105. line breaking (Short: \p{Lb=SG}) (2048)
  2106. \p{Line_Break: SY} \p{Line_Break=Break_Symbols} (1)
  2107. \p{Line_Break: Unknown} (Short: \p{Lb=XX}) (918_338)
  2108. \p{Line_Break: WJ} \p{Line_Break=Word_Joiner} (2)
  2109. \p{Line_Break: Word_Joiner} (Short: \p{Lb=WJ}) (2)
  2110. \p{Line_Break: XX} \p{Line_Break=Unknown} (918_338)
  2111. \p{Line_Break: ZW} \p{Line_Break=ZWSpace} (1)
  2112. \p{Line_Break: ZWSpace} (Short: \p{Lb=ZW}) (1)
  2113. \p{Line_Separator} \p{General_Category=Line_Separator}
  2114. (Short: \p{Zl}) (1)
  2115. \p{Linear_B} \p{Script=Linear_B} (Short: \p{Linb}) (211)
  2116. X \p{Linear_B_Ideograms} \p{Block=Linear_B_Ideograms} (128)
  2117. X \p{Linear_B_Syllabary} \p{Block=Linear_B_Syllabary} (128)
  2118. \p{Lisu} \p{Script=Lisu} (48)
  2119. \p{Ll} \p{Lowercase_Letter} (=
  2120. \p{General_Category=Lowercase_Letter})
  2121. (/i= General_Category=Cased_Letter)
  2122. (1751)
  2123. \p{Lm} \p{Modifier_Letter} (=
  2124. \p{General_Category=Modifier_Letter})
  2125. (237)
  2126. \p{Lo} \p{Other_Letter} (= \p{General_Category=
  2127. Other_Letter}) (97_553)
  2128. \p{LOE} \p{Logical_Order_Exception} (=
  2129. \p{Logical_Order_Exception=Y}) (15)
  2130. \p{LOE: *} \p{Logical_Order_Exception: *}
  2131. \p{Logical_Order_Exception} \p{Logical_Order_Exception=Y} (Short:
  2132. \p{LOE}) (15)
  2133. \p{Logical_Order_Exception: N*} (Short: \p{LOE=N}, \P{LOE})
  2134. (1_114_097)
  2135. \p{Logical_Order_Exception: Y*} (Short: \p{LOE=Y}, \p{LOE}) (15)
  2136. X \p{Low_Surrogates} \p{Block=Low_Surrogates} (1024)
  2137. \p{Lower} \p{Lowercase=Y} (/i= Cased=Yes) (1934)
  2138. \p{Lower: *} \p{Lowercase: *}
  2139. \p{Lowercase} \p{Lower} (= \p{Lowercase=Y}) (/i= Cased=
  2140. Yes) (1934)
  2141. \p{Lowercase: N*} (Short: \p{Lower=N}, \P{Lower}; /i= Cased=
  2142. No) (1_112_178)
  2143. \p{Lowercase: Y*} (Short: \p{Lower=Y}, \p{Lower}; /i= Cased=
  2144. Yes) (1934)
  2145. \p{Lowercase_Letter} \p{General_Category=Lowercase_Letter}
  2146. (Short: \p{Ll}; /i= General_Category=
  2147. Cased_Letter) (1751)
  2148. \p{Lt} \p{Titlecase_Letter} (=
  2149. \p{General_Category=Titlecase_Letter})
  2150. (/i= General_Category=Cased_Letter) (31)
  2151. \p{Lu} \p{Uppercase_Letter} (=
  2152. \p{General_Category=Uppercase_Letter})
  2153. (/i= General_Category=Cased_Letter)
  2154. (1441)
  2155. \p{Lyci} \p{Lycian} (= \p{Script=Lycian}) (NOT
  2156. \p{Block=Lycian}) (29)
  2157. \p{Lycian} \p{Script=Lycian} (Short: \p{Lyci}; NOT
  2158. \p{Block=Lycian}) (29)
  2159. \p{Lydi} \p{Lydian} (= \p{Script=Lydian}) (NOT
  2160. \p{Block=Lydian}) (27)
  2161. \p{Lydian} \p{Script=Lydian} (Short: \p{Lydi}; NOT
  2162. \p{Block=Lydian}) (27)
  2163. \p{M} \p{Mark} (= \p{General_Category=Mark})
  2164. (1645)
  2165. X \p{Mahjong} \p{Mahjong_Tiles} (= \p{Block=
  2166. Mahjong_Tiles}) (48)
  2167. X \p{Mahjong_Tiles} \p{Block=Mahjong_Tiles} (Short:
  2168. \p{InMahjong}) (48)
  2169. \p{Malayalam} \p{Script=Malayalam} (Short: \p{Mlym}; NOT
  2170. \p{Block=Malayalam}) (98)
  2171. \p{Mand} \p{Mandaic} (= \p{Script=Mandaic}) (NOT
  2172. \p{Block=Mandaic}) (29)
  2173. \p{Mandaic} \p{Script=Mandaic} (Short: \p{Mand}; NOT
  2174. \p{Block=Mandaic}) (29)
  2175. \p{Mark} \p{General_Category=Mark} (Short: \p{M})
  2176. (1645)
  2177. \p{Math} \p{Math=Y} (2310)
  2178. \p{Math: N*} (Single: \P{Math}) (1_111_802)
  2179. \p{Math: Y*} (Single: \p{Math}) (2310)
  2180. X \p{Math_Alphanum} \p{Mathematical_Alphanumeric_Symbols} (=
  2181. \p{Block=
  2182. Mathematical_Alphanumeric_Symbols})
  2183. (1024)
  2184. X \p{Math_Operators} \p{Mathematical_Operators} (= \p{Block=
  2185. Mathematical_Operators}) (256)
  2186. \p{Math_Symbol} \p{General_Category=Math_Symbol} (Short:
  2187. \p{Sm}) (952)
  2188. X \p{Mathematical_Alphanumeric_Symbols} \p{Block=
  2189. Mathematical_Alphanumeric_Symbols}
  2190. (Short: \p{InMathAlphanum}) (1024)
  2191. X \p{Mathematical_Operators} \p{Block=Mathematical_Operators}
  2192. (Short: \p{InMathOperators}) (256)
  2193. \p{Mc} \p{Spacing_Mark} (= \p{General_Category=
  2194. Spacing_Mark}) (353)
  2195. \p{Me} \p{Enclosing_Mark} (= \p{General_Category=
  2196. Enclosing_Mark}) (12)
  2197. \p{Meetei_Mayek} \p{Script=Meetei_Mayek} (Short: \p{Mtei};
  2198. NOT \p{Block=Meetei_Mayek}) (79)
  2199. X \p{Meetei_Mayek_Ext} \p{Meetei_Mayek_Extensions} (= \p{Block=
  2200. Meetei_Mayek_Extensions}) (32)
  2201. X \p{Meetei_Mayek_Extensions} \p{Block=Meetei_Mayek_Extensions}
  2202. (Short: \p{InMeeteiMayekExt}) (32)
  2203. \p{Merc} \p{Meroitic_Cursive} (= \p{Script=
  2204. Meroitic_Cursive}) (NOT \p{Block=
  2205. Meroitic_Cursive}) (26)
  2206. \p{Mero} \p{Meroitic_Hieroglyphs} (= \p{Script=
  2207. Meroitic_Hieroglyphs}) (32)
  2208. \p{Meroitic_Cursive} \p{Script=Meroitic_Cursive} (Short:
  2209. \p{Merc}; NOT \p{Block=
  2210. Meroitic_Cursive}) (26)
  2211. \p{Meroitic_Hieroglyphs} \p{Script=Meroitic_Hieroglyphs} (Short:
  2212. \p{Mero}) (32)
  2213. \p{Miao} \p{Script=Miao} (NOT \p{Block=Miao}) (133)
  2214. X \p{Misc_Arrows} \p{Miscellaneous_Symbols_And_Arrows} (=
  2215. \p{Block=
  2216. Miscellaneous_Symbols_And_Arrows}) (256)
  2217. X \p{Misc_Math_Symbols_A} \p{Miscellaneous_Mathematical_Symbols_A}
  2218. (= \p{Block=
  2219. Miscellaneous_Mathematical_Symbols_A})
  2220. (48)
  2221. X \p{Misc_Math_Symbols_B} \p{Miscellaneous_Mathematical_Symbols_B}
  2222. (= \p{Block=
  2223. Miscellaneous_Mathematical_Symbols_B})
  2224. (128)
  2225. X \p{Misc_Pictographs} \p{Miscellaneous_Symbols_And_Pictographs}
  2226. (= \p{Block=
  2227. Miscellaneous_Symbols_And_Pictographs})
  2228. (768)
  2229. X \p{Misc_Symbols} \p{Miscellaneous_Symbols} (= \p{Block=
  2230. Miscellaneous_Symbols}) (256)
  2231. X \p{Misc_Technical} \p{Miscellaneous_Technical} (= \p{Block=
  2232. Miscellaneous_Technical}) (256)
  2233. X \p{Miscellaneous_Mathematical_Symbols_A} \p{Block=
  2234. Miscellaneous_Mathematical_Symbols_A}
  2235. (Short: \p{InMiscMathSymbolsA}) (48)
  2236. X \p{Miscellaneous_Mathematical_Symbols_B} \p{Block=
  2237. Miscellaneous_Mathematical_Symbols_B}
  2238. (Short: \p{InMiscMathSymbolsB}) (128)
  2239. X \p{Miscellaneous_Symbols} \p{Block=Miscellaneous_Symbols} (Short:
  2240. \p{InMiscSymbols}) (256)
  2241. X \p{Miscellaneous_Symbols_And_Arrows} \p{Block=
  2242. Miscellaneous_Symbols_And_Arrows}
  2243. (Short: \p{InMiscArrows}) (256)
  2244. X \p{Miscellaneous_Symbols_And_Pictographs} \p{Block=
  2245. Miscellaneous_Symbols_And_Pictographs}
  2246. (Short: \p{InMiscPictographs}) (768)
  2247. X \p{Miscellaneous_Technical} \p{Block=Miscellaneous_Technical}
  2248. (Short: \p{InMiscTechnical}) (256)
  2249. \p{Mlym} \p{Malayalam} (= \p{Script=Malayalam})
  2250. (NOT \p{Block=Malayalam}) (98)
  2251. \p{Mn} \p{Nonspacing_Mark} (=
  2252. \p{General_Category=Nonspacing_Mark})
  2253. (1280)
  2254. \p{Modifier_Letter} \p{General_Category=Modifier_Letter}
  2255. (Short: \p{Lm}) (237)
  2256. X \p{Modifier_Letters} \p{Spacing_Modifier_Letters} (= \p{Block=
  2257. Spacing_Modifier_Letters}) (80)
  2258. \p{Modifier_Symbol} \p{General_Category=Modifier_Symbol}
  2259. (Short: \p{Sk}) (115)
  2260. X \p{Modifier_Tone_Letters} \p{Block=Modifier_Tone_Letters} (32)
  2261. \p{Mong} \p{Mongolian} (= \p{Script=Mongolian})
  2262. (NOT \p{Block=Mongolian}) (153)
  2263. \p{Mongolian} \p{Script=Mongolian} (Short: \p{Mong}; NOT
  2264. \p{Block=Mongolian}) (153)
  2265. \p{Mtei} \p{Meetei_Mayek} (= \p{Script=
  2266. Meetei_Mayek}) (NOT \p{Block=
  2267. Meetei_Mayek}) (79)
  2268. X \p{Music} \p{Musical_Symbols} (= \p{Block=
  2269. Musical_Symbols}) (256)
  2270. X \p{Musical_Symbols} \p{Block=Musical_Symbols} (Short:
  2271. \p{InMusic}) (256)
  2272. \p{Myanmar} \p{Script=Myanmar} (Short: \p{Mymr}; NOT
  2273. \p{Block=Myanmar}) (188)
  2274. X \p{Myanmar_Ext_A} \p{Myanmar_Extended_A} (= \p{Block=
  2275. Myanmar_Extended_A}) (32)
  2276. X \p{Myanmar_Extended_A} \p{Block=Myanmar_Extended_A} (Short:
  2277. \p{InMyanmarExtA}) (32)
  2278. \p{Mymr} \p{Myanmar} (= \p{Script=Myanmar}) (NOT
  2279. \p{Block=Myanmar}) (188)
  2280. \p{N} \p{Number} (= \p{General_Category=Number})
  2281. (1148)
  2282. X \p{NB} \p{No_Block} (= \p{Block=No_Block})
  2283. (860_672)
  2284. \p{NChar} \p{Noncharacter_Code_Point} (=
  2285. \p{Noncharacter_Code_Point=Y}) (66)
  2286. \p{NChar: *} \p{Noncharacter_Code_Point: *}
  2287. \p{Nd} \p{Digit} (= \p{General_Category=
  2288. Decimal_Number}) (460)
  2289. \p{New_Tai_Lue} \p{Script=New_Tai_Lue} (Short: \p{Talu};
  2290. NOT \p{Block=New_Tai_Lue}) (83)
  2291. \p{NFC_QC: *} \p{NFC_Quick_Check: *}
  2292. \p{NFC_Quick_Check: M} \p{NFC_Quick_Check=Maybe} (104)
  2293. \p{NFC_Quick_Check: Maybe} (Short: \p{NFCQC=M}) (104)
  2294. \p{NFC_Quick_Check: N} \p{NFC_Quick_Check=No} (NOT
  2295. \P{NFC_Quick_Check} NOR \P{NFC_QC})
  2296. (1120)
  2297. \p{NFC_Quick_Check: No} (Short: \p{NFCQC=N}; NOT
  2298. \P{NFC_Quick_Check} NOR \P{NFC_QC})
  2299. (1120)
  2300. \p{NFC_Quick_Check: Y} \p{NFC_Quick_Check=Yes} (NOT
  2301. \p{NFC_Quick_Check} NOR \p{NFC_QC})
  2302. (1_112_888)
  2303. \p{NFC_Quick_Check: Yes} (Short: \p{NFCQC=Y}; NOT
  2304. \p{NFC_Quick_Check} NOR \p{NFC_QC})
  2305. (1_112_888)
  2306. \p{NFD_QC: *} \p{NFD_Quick_Check: *}
  2307. \p{NFD_Quick_Check: N} \p{NFD_Quick_Check=No} (NOT
  2308. \P{NFD_Quick_Check} NOR \P{NFD_QC})
  2309. (13_225)
  2310. \p{NFD_Quick_Check: No} (Short: \p{NFDQC=N}; NOT
  2311. \P{NFD_Quick_Check} NOR \P{NFD_QC})
  2312. (13_225)
  2313. \p{NFD_Quick_Check: Y} \p{NFD_Quick_Check=Yes} (NOT
  2314. \p{NFD_Quick_Check} NOR \p{NFD_QC})
  2315. (1_100_887)
  2316. \p{NFD_Quick_Check: Yes} (Short: \p{NFDQC=Y}; NOT
  2317. \p{NFD_Quick_Check} NOR \p{NFD_QC})
  2318. (1_100_887)
  2319. \p{NFKC_QC: *} \p{NFKC_Quick_Check: *}
  2320. \p{NFKC_Quick_Check: M} \p{NFKC_Quick_Check=Maybe} (104)
  2321. \p{NFKC_Quick_Check: Maybe} (Short: \p{NFKCQC=M}) (104)
  2322. \p{NFKC_Quick_Check: N} \p{NFKC_Quick_Check=No} (NOT
  2323. \P{NFKC_Quick_Check} NOR \P{NFKC_QC})
  2324. (4787)
  2325. \p{NFKC_Quick_Check: No} (Short: \p{NFKCQC=N}; NOT
  2326. \P{NFKC_Quick_Check} NOR \P{NFKC_QC})
  2327. (4787)
  2328. \p{NFKC_Quick_Check: Y} \p{NFKC_Quick_Check=Yes} (NOT
  2329. \p{NFKC_Quick_Check} NOR \p{NFKC_QC})
  2330. (1_109_221)
  2331. \p{NFKC_Quick_Check: Yes} (Short: \p{NFKCQC=Y}; NOT
  2332. \p{NFKC_Quick_Check} NOR \p{NFKC_QC})
  2333. (1_109_221)
  2334. \p{NFKD_QC: *} \p{NFKD_Quick_Check: *}
  2335. \p{NFKD_Quick_Check: N} \p{NFKD_Quick_Check=No} (NOT
  2336. \P{NFKD_Quick_Check} NOR \P{NFKD_QC})
  2337. (16_880)
  2338. \p{NFKD_Quick_Check: No} (Short: \p{NFKDQC=N}; NOT
  2339. \P{NFKD_Quick_Check} NOR \P{NFKD_QC})
  2340. (16_880)
  2341. \p{NFKD_Quick_Check: Y} \p{NFKD_Quick_Check=Yes} (NOT
  2342. \p{NFKD_Quick_Check} NOR \p{NFKD_QC})
  2343. (1_097_232)
  2344. \p{NFKD_Quick_Check: Yes} (Short: \p{NFKDQC=Y}; NOT
  2345. \p{NFKD_Quick_Check} NOR \p{NFKD_QC})
  2346. (1_097_232)
  2347. \p{Nko} \p{Script=Nko} (NOT \p{NKo}) (59)
  2348. \p{Nkoo} \p{Nko} (= \p{Script=Nko}) (NOT \p{NKo})
  2349. (59)
  2350. \p{Nl} \p{Letter_Number} (= \p{General_Category=
  2351. Letter_Number}) (224)
  2352. \p{No} \p{Other_Number} (= \p{General_Category=
  2353. Other_Number}) (464)
  2354. X \p{No_Block} \p{Block=No_Block} (Short: \p{InNB})
  2355. (860_672)
  2356. \p{Noncharacter_Code_Point} \p{Noncharacter_Code_Point=Y} (Short:
  2357. \p{NChar}) (66)
  2358. \p{Noncharacter_Code_Point: N*} (Short: \p{NChar=N}, \P{NChar})
  2359. (1_114_046)
  2360. \p{Noncharacter_Code_Point: Y*} (Short: \p{NChar=Y}, \p{NChar})
  2361. (66)
  2362. \p{Nonspacing_Mark} \p{General_Category=Nonspacing_Mark}
  2363. (Short: \p{Mn}) (1280)
  2364. \p{Nt: *} \p{Numeric_Type: *}
  2365. \p{Number} \p{General_Category=Number} (Short: \p{N})
  2366. (1148)
  2367. X \p{Number_Forms} \p{Block=Number_Forms} (64)
  2368. \p{Numeric_Type: De} \p{Numeric_Type=Decimal} (460)
  2369. \p{Numeric_Type: Decimal} (Short: \p{Nt=De}) (460)
  2370. \p{Numeric_Type: Di} \p{Numeric_Type=Digit} (128)
  2371. \p{Numeric_Type: Digit} (Short: \p{Nt=Di}) (128)
  2372. \p{Numeric_Type: None} (Short: \p{Nt=None}) (1_112_887)
  2373. \p{Numeric_Type: Nu} \p{Numeric_Type=Numeric} (637)
  2374. \p{Numeric_Type: Numeric} (Short: \p{Nt=Nu}) (637)
  2375. T \p{Numeric_Value: -1/2} (Short: \p{Nv=-1/2}) (1)
  2376. T \p{Numeric_Value: 0} (Short: \p{Nv=0}) (60)
  2377. T \p{Numeric_Value: 1/16} (Short: \p{Nv=1/16}) (3)
  2378. T \p{Numeric_Value: 1/10} (Short: \p{Nv=1/10}) (1)
  2379. T \p{Numeric_Value: 1/9} (Short: \p{Nv=1/9}) (1)
  2380. T \p{Numeric_Value: 1/8} (Short: \p{Nv=1/8}) (5)
  2381. T \p{Numeric_Value: 1/7} (Short: \p{Nv=1/7}) (1)
  2382. T \p{Numeric_Value: 1/6} (Short: \p{Nv=1/6}) (2)
  2383. T \p{Numeric_Value: 3/16} (Short: \p{Nv=3/16}) (3)
  2384. T \p{Numeric_Value: 1/5} (Short: \p{Nv=1/5}) (1)
  2385. T \p{Numeric_Value: 1/4} (Short: \p{Nv=1/4}) (9)
  2386. T \p{Numeric_Value: 1/3} (Short: \p{Nv=1/3}) (4)
  2387. T \p{Numeric_Value: 3/8} (Short: \p{Nv=3/8}) (1)
  2388. T \p{Numeric_Value: 2/5} (Short: \p{Nv=2/5}) (1)
  2389. T \p{Numeric_Value: 1/2} (Short: \p{Nv=1/2}) (10)
  2390. T \p{Numeric_Value: 3/5} (Short: \p{Nv=3/5}) (1)
  2391. T \p{Numeric_Value: 5/8} (Short: \p{Nv=5/8}) (1)
  2392. T \p{Numeric_Value: 2/3} (Short: \p{Nv=2/3}) (5)
  2393. T \p{Numeric_Value: 3/4} (Short: \p{Nv=3/4}) (6)
  2394. T \p{Numeric_Value: 4/5} (Short: \p{Nv=4/5}) (1)
  2395. T \p{Numeric_Value: 5/6} (Short: \p{Nv=5/6}) (2)
  2396. T \p{Numeric_Value: 7/8} (Short: \p{Nv=7/8}) (1)
  2397. T \p{Numeric_Value: 1} (Short: \p{Nv=1}) (97)
  2398. T \p{Numeric_Value: 3/2} (Short: \p{Nv=3/2}) (1)
  2399. T \p{Numeric_Value: 2} (Short: \p{Nv=2}) (100)
  2400. T \p{Numeric_Value: 5/2} (Short: \p{Nv=5/2}) (1)
  2401. T \p{Numeric_Value: 3} (Short: \p{Nv=3}) (102)
  2402. T \p{Numeric_Value: 7/2} (Short: \p{Nv=7/2}) (1)
  2403. T \p{Numeric_Value: 4} (Short: \p{Nv=4}) (93)
  2404. T \p{Numeric_Value: 9/2} (Short: \p{Nv=9/2}) (1)
  2405. T \p{Numeric_Value: 5} (Short: \p{Nv=5}) (90)
  2406. T \p{Numeric_Value: 11/2} (Short: \p{Nv=11/2}) (1)
  2407. T \p{Numeric_Value: 6} (Short: \p{Nv=6}) (82)
  2408. T \p{Numeric_Value: 13/2} (Short: \p{Nv=13/2}) (1)
  2409. T \p{Numeric_Value: 7} (Short: \p{Nv=7}) (81)
  2410. T \p{Numeric_Value: 15/2} (Short: \p{Nv=15/2}) (1)
  2411. T \p{Numeric_Value: 8} (Short: \p{Nv=8}) (77)
  2412. T \p{Numeric_Value: 17/2} (Short: \p{Nv=17/2}) (1)
  2413. T \p{Numeric_Value: 9} (Short: \p{Nv=9}) (81)
  2414. T \p{Numeric_Value: 10} (Short: \p{Nv=10}) (40)
  2415. T \p{Numeric_Value: 11} (Short: \p{Nv=11}) (6)
  2416. T \p{Numeric_Value: 12} (Short: \p{Nv=12}) (6)
  2417. T \p{Numeric_Value: 13} (Short: \p{Nv=13}) (4)
  2418. T \p{Numeric_Value: 14} (Short: \p{Nv=14}) (4)
  2419. T \p{Numeric_Value: 15} (Short: \p{Nv=15}) (4)
  2420. T \p{Numeric_Value: 16} (Short: \p{Nv=16}) (5)
  2421. T \p{Numeric_Value: 17} (Short: \p{Nv=17}) (5)
  2422. T \p{Numeric_Value: 18} (Short: \p{Nv=18}) (5)
  2423. T \p{Numeric_Value: 19} (Short: \p{Nv=19}) (5)
  2424. T \p{Numeric_Value: 20} (Short: \p{Nv=20}) (19)
  2425. T \p{Numeric_Value: 21} (Short: \p{Nv=21}) (1)
  2426. T \p{Numeric_Value: 22} (Short: \p{Nv=22}) (1)
  2427. T \p{Numeric_Value: 23} (Short: \p{Nv=23}) (1)
  2428. T \p{Numeric_Value: 24} (Short: \p{Nv=24}) (1)
  2429. T \p{Numeric_Value: 25} (Short: \p{Nv=25}) (1)
  2430. T \p{Numeric_Value: 26} (Short: \p{Nv=26}) (1)
  2431. T \p{Numeric_Value: 27} (Short: \p{Nv=27}) (1)
  2432. T \p{Numeric_Value: 28} (Short: \p{Nv=28}) (1)
  2433. T \p{Numeric_Value: 29} (Short: \p{Nv=29}) (1)
  2434. T \p{Numeric_Value: 30} (Short: \p{Nv=30}) (11)
  2435. T \p{Numeric_Value: 31} (Short: \p{Nv=31}) (1)
  2436. T \p{Numeric_Value: 32} (Short: \p{Nv=32}) (1)
  2437. T \p{Numeric_Value: 33} (Short: \p{Nv=33}) (1)
  2438. T \p{Numeric_Value: 34} (Short: \p{Nv=34}) (1)
  2439. T \p{Numeric_Value: 35} (Short: \p{Nv=35}) (1)
  2440. T \p{Numeric_Value: 36} (Short: \p{Nv=36}) (1)
  2441. T \p{Numeric_Value: 37} (Short: \p{Nv=37}) (1)
  2442. T \p{Numeric_Value: 38} (Short: \p{Nv=38}) (1)
  2443. T \p{Numeric_Value: 39} (Short: \p{Nv=39}) (1)
  2444. T \p{Numeric_Value: 40} (Short: \p{Nv=40}) (10)
  2445. T \p{Numeric_Value: 41} (Short: \p{Nv=41}) (1)
  2446. T \p{Numeric_Value: 42} (Short: \p{Nv=42}) (1)
  2447. T \p{Numeric_Value: 43} (Short: \p{Nv=43}) (1)
  2448. T \p{Numeric_Value: 44} (Short: \p{Nv=44}) (1)
  2449. T \p{Numeric_Value: 45} (Short: \p{Nv=45}) (1)
  2450. T \p{Numeric_Value: 46} (Short: \p{Nv=46}) (1)
  2451. T \p{Numeric_Value: 47} (Short: \p{Nv=47}) (1)
  2452. T \p{Numeric_Value: 48} (Short: \p{Nv=48}) (1)
  2453. T \p{Numeric_Value: 49} (Short: \p{Nv=49}) (1)
  2454. T \p{Numeric_Value: 50} (Short: \p{Nv=50}) (20)
  2455. T \p{Numeric_Value: 60} (Short: \p{Nv=60}) (6)
  2456. T \p{Numeric_Value: 70} (Short: \p{Nv=70}) (6)
  2457. T \p{Numeric_Value: 80} (Short: \p{Nv=80}) (6)
  2458. T \p{Numeric_Value: 90} (Short: \p{Nv=90}) (6)
  2459. T \p{Numeric_Value: 100} (Short: \p{Nv=100}) (20)
  2460. T \p{Numeric_Value: 200} (Short: \p{Nv=200}) (2)
  2461. T \p{Numeric_Value: 300} (Short: \p{Nv=300}) (3)
  2462. T \p{Numeric_Value: 400} (Short: \p{Nv=400}) (2)
  2463. T \p{Numeric_Value: 500} (Short: \p{Nv=500}) (12)
  2464. T \p{Numeric_Value: 600} (Short: \p{Nv=600}) (2)
  2465. T \p{Numeric_Value: 700} (Short: \p{Nv=700}) (2)
  2466. T \p{Numeric_Value: 800} (Short: \p{Nv=800}) (2)
  2467. T \p{Numeric_Value: 900} (Short: \p{Nv=900}) (3)
  2468. T \p{Numeric_Value: 1000} (Short: \p{Nv=1000}) (17)
  2469. T \p{Numeric_Value: 2000} (Short: \p{Nv=2000}) (1)
  2470. T \p{Numeric_Value: 3000} (Short: \p{Nv=3000}) (1)
  2471. T \p{Numeric_Value: 4000} (Short: \p{Nv=4000}) (1)
  2472. T \p{Numeric_Value: 5000} (Short: \p{Nv=5000}) (5)
  2473. T \p{Numeric_Value: 6000} (Short: \p{Nv=6000}) (1)
  2474. T \p{Numeric_Value: 7000} (Short: \p{Nv=7000}) (1)
  2475. T \p{Numeric_Value: 8000} (Short: \p{Nv=8000}) (1)
  2476. T \p{Numeric_Value: 9000} (Short: \p{Nv=9000}) (1)
  2477. T \p{Numeric_Value: 10000} (= 1.0e+04) (Short: \p{Nv=10000}) (7)
  2478. T \p{Numeric_Value: 20000} (= 2.0e+04) (Short: \p{Nv=20000}) (1)
  2479. T \p{Numeric_Value: 30000} (= 3.0e+04) (Short: \p{Nv=30000}) (1)
  2480. T \p{Numeric_Value: 40000} (= 4.0e+04) (Short: \p{Nv=40000}) (1)
  2481. T \p{Numeric_Value: 50000} (= 5.0e+04) (Short: \p{Nv=50000}) (4)
  2482. T \p{Numeric_Value: 60000} (= 6.0e+04) (Short: \p{Nv=60000}) (1)
  2483. T \p{Numeric_Value: 70000} (= 7.0e+04) (Short: \p{Nv=70000}) (1)
  2484. T \p{Numeric_Value: 80000} (= 8.0e+04) (Short: \p{Nv=80000}) (1)
  2485. T \p{Numeric_Value: 90000} (= 9.0e+04) (Short: \p{Nv=90000}) (1)
  2486. T \p{Numeric_Value: 100000} (= 1.0e+05) (Short: \p{Nv=100000}) (1)
  2487. T \p{Numeric_Value: 100000000} (= 1.0e+08) (Short: \p{Nv=100000000})
  2488. (2)
  2489. T \p{Numeric_Value: 1000000000000} (= 1.0e+12) (Short: \p{Nv=
  2490. 1000000000000}) (1)
  2491. \p{Numeric_Value: NaN} (Short: \p{Nv=NaN}) (1_112_887)
  2492. \p{Nv: *} \p{Numeric_Value: *}
  2493. X \p{OCR} \p{Optical_Character_Recognition} (=
  2494. \p{Block=Optical_Character_Recognition})
  2495. (32)
  2496. \p{Ogam} \p{Ogham} (= \p{Script=Ogham}) (NOT
  2497. \p{Block=Ogham}) (29)
  2498. \p{Ogham} \p{Script=Ogham} (Short: \p{Ogam}; NOT
  2499. \p{Block=Ogham}) (29)
  2500. \p{Ol_Chiki} \p{Script=Ol_Chiki} (Short: \p{Olck}) (48)
  2501. \p{Olck} \p{Ol_Chiki} (= \p{Script=Ol_Chiki}) (48)
  2502. \p{Old_Italic} \p{Script=Old_Italic} (Short: \p{Ital};
  2503. NOT \p{Block=Old_Italic}) (35)
  2504. \p{Old_Persian} \p{Script=Old_Persian} (Short: \p{Xpeo};
  2505. NOT \p{Block=Old_Persian}) (50)
  2506. \p{Old_South_Arabian} \p{Script=Old_South_Arabian} (Short:
  2507. \p{Sarb}) (32)
  2508. \p{Old_Turkic} \p{Script=Old_Turkic} (Short: \p{Orkh};
  2509. NOT \p{Block=Old_Turkic}) (73)
  2510. \p{Open_Punctuation} \p{General_Category=Open_Punctuation}
  2511. (Short: \p{Ps}) (72)
  2512. X \p{Optical_Character_Recognition} \p{Block=
  2513. Optical_Character_Recognition} (Short:
  2514. \p{InOCR}) (32)
  2515. \p{Oriya} \p{Script=Oriya} (Short: \p{Orya}; NOT
  2516. \p{Block=Oriya}) (90)
  2517. \p{Orkh} \p{Old_Turkic} (= \p{Script=Old_Turkic})
  2518. (NOT \p{Block=Old_Turkic}) (73)
  2519. \p{Orya} \p{Oriya} (= \p{Script=Oriya}) (NOT
  2520. \p{Block=Oriya}) (90)
  2521. \p{Osma} \p{Osmanya} (= \p{Script=Osmanya}) (NOT
  2522. \p{Block=Osmanya}) (40)
  2523. \p{Osmanya} \p{Script=Osmanya} (Short: \p{Osma}; NOT
  2524. \p{Block=Osmanya}) (40)
  2525. \p{Other} \p{General_Category=Other} (Short: \p{C})
  2526. (1_004_135)
  2527. \p{Other_Letter} \p{General_Category=Other_Letter} (Short:
  2528. \p{Lo}) (97_553)
  2529. \p{Other_Number} \p{General_Category=Other_Number} (Short:
  2530. \p{No}) (464)
  2531. \p{Other_Punctuation} \p{General_Category=Other_Punctuation}
  2532. (Short: \p{Po}) (434)
  2533. \p{Other_Symbol} \p{General_Category=Other_Symbol} (Short:
  2534. \p{So}) (4404)
  2535. \p{P} \p{Punct} (= \p{General_Category=
  2536. Punctuation}) (NOT
  2537. \p{General_Punctuation}) (632)
  2538. \p{Paragraph_Separator} \p{General_Category=Paragraph_Separator}
  2539. (Short: \p{Zp}) (1)
  2540. \p{Pat_Syn} \p{Pattern_Syntax} (= \p{Pattern_Syntax=
  2541. Y}) (2760)
  2542. \p{Pat_Syn: *} \p{Pattern_Syntax: *}
  2543. \p{Pat_WS} \p{Pattern_White_Space} (=
  2544. \p{Pattern_White_Space=Y}) (11)
  2545. \p{Pat_WS: *} \p{Pattern_White_Space: *}
  2546. \p{Pattern_Syntax} \p{Pattern_Syntax=Y} (Short: \p{PatSyn})
  2547. (2760)
  2548. \p{Pattern_Syntax: N*} (Short: \p{PatSyn=N}, \P{PatSyn})
  2549. (1_111_352)
  2550. \p{Pattern_Syntax: Y*} (Short: \p{PatSyn=Y}, \p{PatSyn}) (2760)
  2551. \p{Pattern_White_Space} \p{Pattern_White_Space=Y} (Short:
  2552. \p{PatWS}) (11)
  2553. \p{Pattern_White_Space: N*} (Short: \p{PatWS=N}, \P{PatWS})
  2554. (1_114_101)
  2555. \p{Pattern_White_Space: Y*} (Short: \p{PatWS=Y}, \p{PatWS}) (11)
  2556. \p{Pc} \p{Connector_Punctuation} (=
  2557. \p{General_Category=
  2558. Connector_Punctuation}) (10)
  2559. \p{Pd} \p{Dash_Punctuation} (=
  2560. \p{General_Category=Dash_Punctuation})
  2561. (23)
  2562. \p{Pe} \p{Close_Punctuation} (=
  2563. \p{General_Category=Close_Punctuation})
  2564. (71)
  2565. \p{PerlSpace} \s, restricted to ASCII = [ \f\n\r\t] (5)
  2566. \p{PerlWord} \w, restricted to ASCII = [A-Za-z0-9_] (63)
  2567. \p{Pf} \p{Final_Punctuation} (=
  2568. \p{General_Category=Final_Punctuation})
  2569. (10)
  2570. \p{Phag} \p{Phags_Pa} (= \p{Script=Phags_Pa}) (NOT
  2571. \p{Block=Phags_Pa}) (56)
  2572. \p{Phags_Pa} \p{Script=Phags_Pa} (Short: \p{Phag}; NOT
  2573. \p{Block=Phags_Pa}) (56)
  2574. X \p{Phaistos} \p{Phaistos_Disc} (= \p{Block=
  2575. Phaistos_Disc}) (48)
  2576. X \p{Phaistos_Disc} \p{Block=Phaistos_Disc} (Short:
  2577. \p{InPhaistos}) (48)
  2578. \p{Phli} \p{Inscriptional_Pahlavi} (= \p{Script=
  2579. Inscriptional_Pahlavi}) (NOT \p{Block=
  2580. Inscriptional_Pahlavi}) (27)
  2581. \p{Phnx} \p{Phoenician} (= \p{Script=Phoenician})
  2582. (NOT \p{Block=Phoenician}) (29)
  2583. \p{Phoenician} \p{Script=Phoenician} (Short: \p{Phnx};
  2584. NOT \p{Block=Phoenician}) (29)
  2585. X \p{Phonetic_Ext} \p{Phonetic_Extensions} (= \p{Block=
  2586. Phonetic_Extensions}) (128)
  2587. X \p{Phonetic_Ext_Sup} \p{Phonetic_Extensions_Supplement} (=
  2588. \p{Block=
  2589. Phonetic_Extensions_Supplement}) (64)
  2590. X \p{Phonetic_Extensions} \p{Block=Phonetic_Extensions} (Short:
  2591. \p{InPhoneticExt}) (128)
  2592. X \p{Phonetic_Extensions_Supplement} \p{Block=
  2593. Phonetic_Extensions_Supplement} (Short:
  2594. \p{InPhoneticExtSup}) (64)
  2595. \p{Pi} \p{Initial_Punctuation} (=
  2596. \p{General_Category=
  2597. Initial_Punctuation}) (12)
  2598. X \p{Playing_Cards} \p{Block=Playing_Cards} (96)
  2599. \p{Plrd} \p{Miao} (= \p{Script=Miao}) (NOT
  2600. \p{Block=Miao}) (133)
  2601. \p{Po} \p{Other_Punctuation} (=
  2602. \p{General_Category=Other_Punctuation})
  2603. (434)
  2604. \p{PosixAlnum} [A-Za-z0-9] (62)
  2605. \p{PosixAlpha} [A-Za-z] (52)
  2606. \p{PosixBlank} \t and ' ' (2)
  2607. \p{PosixCntrl} ASCII control characters: NUL, SOH, STX,
  2608. ETX, EOT, ENQ, ACK, BEL, BS, HT, LF, VT,
  2609. FF, CR, SO, SI, DLE, DC1, DC2, DC3, DC4,
  2610. NAK, SYN, ETB, CAN, EOM, SUB, ESC, FS,
  2611. GS, RS, US, and DEL (33)
  2612. \p{PosixDigit} [0-9] (10)
  2613. \p{PosixGraph} [-!"#$%&'()*+,./:;<>?@[\\]^_`{|}~0-9A-Za-
  2614. z] (94)
  2615. \p{PosixLower} [a-z] (/i= PosixAlpha) (26)
  2616. \p{PosixPrint} [- 0-9A-Za-
  2617. z!"#$%&'()*+,./:;<>?@[\\]^_`{|}~] (95)
  2618. \p{PosixPunct} [-!"#$%&'()*+,./:;<>?@[\\]^_`{|}~] (32)
  2619. \p{PosixSpace} \t, \n, \cK, \f, \r, and ' '. (\cK is
  2620. vertical tab) (6)
  2621. \p{PosixUpper} [A-Z] (/i= PosixAlpha) (26)
  2622. \p{PosixWord} \p{PerlWord} (63)
  2623. \p{PosixXDigit} \p{ASCII_Hex_Digit=Y} [0-9A-Fa-f] (Short:
  2624. \p{AHex}) (22)
  2625. T \p{Present_In: 1.1} \p{Age=V1_1} (Short: \p{In=1.1}) (Perl
  2626. extension) (33_979)
  2627. T \p{Present_In: 2.0} Code point's usage introduced in version
  2628. 2.0 or earlier (Short: \p{In=2.0}) (Perl
  2629. extension) (178_500)
  2630. T \p{Present_In: 2.1} Code point's usage introduced in version
  2631. 2.1 or earlier (Short: \p{In=2.1}) (Perl
  2632. extension) (178_502)
  2633. T \p{Present_In: 3.0} Code point's usage introduced in version
  2634. 3.0 or earlier (Short: \p{In=3.0}) (Perl
  2635. extension) (188_809)
  2636. T \p{Present_In: 3.1} Code point's usage introduced in version
  2637. 3.1 or earlier (Short: \p{In=3.1}) (Perl
  2638. extension) (233_787)
  2639. T \p{Present_In: 3.2} Code point's usage introduced in version
  2640. 3.2 or earlier (Short: \p{In=3.2}) (Perl
  2641. extension) (234_803)
  2642. T \p{Present_In: 4.0} Code point's usage introduced in version
  2643. 4.0 or earlier (Short: \p{In=4.0}) (Perl
  2644. extension) (236_029)
  2645. T \p{Present_In: 4.1} Code point's usage introduced in version
  2646. 4.1 or earlier (Short: \p{In=4.1}) (Perl
  2647. extension) (237_302)
  2648. T \p{Present_In: 5.0} Code point's usage introduced in version
  2649. 5.0 or earlier (Short: \p{In=5.0}) (Perl
  2650. extension) (238_671)
  2651. T \p{Present_In: 5.1} Code point's usage introduced in version
  2652. 5.1 or earlier (Short: \p{In=5.1}) (Perl
  2653. extension) (240_295)
  2654. T \p{Present_In: 5.2} Code point's usage introduced in version
  2655. 5.2 or earlier (Short: \p{In=5.2}) (Perl
  2656. extension) (246_943)
  2657. T \p{Present_In: 6.0} Code point's usage introduced in version
  2658. 6.0 or earlier (Short: \p{In=6.0}) (Perl
  2659. extension) (249_031)
  2660. T \p{Present_In: 6.1} Code point's usage introduced in version
  2661. 6.1 or earlier (Short: \p{In=6.1}) (Perl
  2662. extension) (249_763)
  2663. \p{Present_In: Unassigned} \p{Age=Unassigned} (Short: \p{In=
  2664. Unassigned}) (Perl extension) (864_349)
  2665. \p{Print} Characters that are graphical plus space
  2666. characters (but no controls) (247_582)
  2667. \p{Private_Use} \p{General_Category=Private_Use} (Short:
  2668. \p{Co}; NOT \p{Private_Use_Area})
  2669. (137_468)
  2670. X \p{Private_Use_Area} \p{Block=Private_Use_Area} (Short:
  2671. \p{InPUA}) (6400)
  2672. \p{Prti} \p{Inscriptional_Parthian} (= \p{Script=
  2673. Inscriptional_Parthian}) (NOT \p{Block=
  2674. Inscriptional_Parthian}) (30)
  2675. \p{Ps} \p{Open_Punctuation} (=
  2676. \p{General_Category=Open_Punctuation})
  2677. (72)
  2678. X \p{PUA} \p{Private_Use_Area} (= \p{Block=
  2679. Private_Use_Area}) (6400)
  2680. \p{Punct} \p{General_Category=Punctuation} (Short:
  2681. \p{P}; NOT \p{General_Punctuation}) (632)
  2682. \p{Punctuation} \p{Punct} (= \p{General_Category=
  2683. Punctuation}) (NOT
  2684. \p{General_Punctuation}) (632)
  2685. \p{Qaac} \p{Coptic} (= \p{Script=Coptic}) (NOT
  2686. \p{Block=Coptic}) (137)
  2687. \p{Qaai} \p{Inherited} (= \p{Script=Inherited})
  2688. (524)
  2689. \p{QMark} \p{Quotation_Mark} (= \p{Quotation_Mark=
  2690. Y}) (29)
  2691. \p{QMark: *} \p{Quotation_Mark: *}
  2692. \p{Quotation_Mark} \p{Quotation_Mark=Y} (Short: \p{QMark})
  2693. (29)
  2694. \p{Quotation_Mark: N*} (Short: \p{QMark=N}, \P{QMark}) (1_114_083)
  2695. \p{Quotation_Mark: Y*} (Short: \p{QMark=Y}, \p{QMark}) (29)
  2696. \p{Radical} \p{Radical=Y} (329)
  2697. \p{Radical: N*} (Single: \P{Radical}) (1_113_783)
  2698. \p{Radical: Y*} (Single: \p{Radical}) (329)
  2699. \p{Rejang} \p{Script=Rejang} (Short: \p{Rjng}; NOT
  2700. \p{Block=Rejang}) (37)
  2701. \p{Rjng} \p{Rejang} (= \p{Script=Rejang}) (NOT
  2702. \p{Block=Rejang}) (37)
  2703. X \p{Rumi} \p{Rumi_Numeral_Symbols} (= \p{Block=
  2704. Rumi_Numeral_Symbols}) (32)
  2705. X \p{Rumi_Numeral_Symbols} \p{Block=Rumi_Numeral_Symbols} (Short:
  2706. \p{InRumi}) (32)
  2707. \p{Runic} \p{Script=Runic} (Short: \p{Runr}; NOT
  2708. \p{Block=Runic}) (78)
  2709. \p{Runr} \p{Runic} (= \p{Script=Runic}) (NOT
  2710. \p{Block=Runic}) (78)
  2711. \p{S} \p{Symbol} (= \p{General_Category=Symbol})
  2712. (5519)
  2713. \p{Samaritan} \p{Script=Samaritan} (Short: \p{Samr}; NOT
  2714. \p{Block=Samaritan}) (61)
  2715. \p{Samr} \p{Samaritan} (= \p{Script=Samaritan})
  2716. (NOT \p{Block=Samaritan}) (61)
  2717. \p{Sarb} \p{Old_South_Arabian} (= \p{Script=
  2718. Old_South_Arabian}) (32)
  2719. \p{Saur} \p{Saurashtra} (= \p{Script=Saurashtra})
  2720. (NOT \p{Block=Saurashtra}) (81)
  2721. \p{Saurashtra} \p{Script=Saurashtra} (Short: \p{Saur};
  2722. NOT \p{Block=Saurashtra}) (81)
  2723. \p{SB: *} \p{Sentence_Break: *}
  2724. \p{Sc} \p{Currency_Symbol} (=
  2725. \p{General_Category=Currency_Symbol})
  2726. (48)
  2727. \p{Sc: *} \p{Script: *}
  2728. \p{Script: Arab} \p{Script=Arabic} (1234)
  2729. \p{Script: Arabic} (Short: \p{Sc=Arab}, \p{Arab}) (1234)
  2730. \p{Script: Armenian} (Short: \p{Sc=Armn}, \p{Armn}) (91)
  2731. \p{Script: Armi} \p{Script=Imperial_Aramaic} (31)
  2732. \p{Script: Armn} \p{Script=Armenian} (91)
  2733. \p{Script: Avestan} (Short: \p{Sc=Avst}, \p{Avst}) (61)
  2734. \p{Script: Avst} \p{Script=Avestan} (61)
  2735. \p{Script: Bali} \p{Script=Balinese} (121)
  2736. \p{Script: Balinese} (Short: \p{Sc=Bali}, \p{Bali}) (121)
  2737. \p{Script: Bamu} \p{Script=Bamum} (657)
  2738. \p{Script: Bamum} (Short: \p{Sc=Bamu}, \p{Bamu}) (657)
  2739. \p{Script: Batak} (Short: \p{Sc=Batk}, \p{Batk}) (56)
  2740. \p{Script: Batk} \p{Script=Batak} (56)
  2741. \p{Script: Beng} \p{Script=Bengali} (92)
  2742. \p{Script: Bengali} (Short: \p{Sc=Beng}, \p{Beng}) (92)
  2743. \p{Script: Bopo} \p{Script=Bopomofo} (70)
  2744. \p{Script: Bopomofo} (Short: \p{Sc=Bopo}, \p{Bopo}) (70)
  2745. \p{Script: Brah} \p{Script=Brahmi} (108)
  2746. \p{Script: Brahmi} (Short: \p{Sc=Brah}, \p{Brah}) (108)
  2747. \p{Script: Brai} \p{Script=Braille} (256)
  2748. \p{Script: Braille} (Short: \p{Sc=Brai}, \p{Brai}) (256)
  2749. \p{Script: Bugi} \p{Script=Buginese} (30)
  2750. \p{Script: Buginese} (Short: \p{Sc=Bugi}, \p{Bugi}) (30)
  2751. \p{Script: Buhd} \p{Script=Buhid} (20)
  2752. \p{Script: Buhid} (Short: \p{Sc=Buhd}, \p{Buhd}) (20)
  2753. \p{Script: Cakm} \p{Script=Chakma} (67)
  2754. \p{Script: Canadian_Aboriginal} (Short: \p{Sc=Cans}, \p{Cans})
  2755. (710)
  2756. \p{Script: Cans} \p{Script=Canadian_Aboriginal} (710)
  2757. \p{Script: Cari} \p{Script=Carian} (49)
  2758. \p{Script: Carian} (Short: \p{Sc=Cari}, \p{Cari}) (49)
  2759. \p{Script: Chakma} (Short: \p{Sc=Cakm}, \p{Cakm}) (67)
  2760. \p{Script: Cham} (Short: \p{Sc=Cham}, \p{Cham}) (83)
  2761. \p{Script: Cher} \p{Script=Cherokee} (85)
  2762. \p{Script: Cherokee} (Short: \p{Sc=Cher}, \p{Cher}) (85)
  2763. \p{Script: Common} (Short: \p{Sc=Zyyy}, \p{Zyyy}) (6412)
  2764. \p{Script: Copt} \p{Script=Coptic} (137)
  2765. \p{Script: Coptic} (Short: \p{Sc=Copt}, \p{Copt}) (137)
  2766. \p{Script: Cprt} \p{Script=Cypriot} (55)
  2767. \p{Script: Cuneiform} (Short: \p{Sc=Xsux}, \p{Xsux}) (982)
  2768. \p{Script: Cypriot} (Short: \p{Sc=Cprt}, \p{Cprt}) (55)
  2769. \p{Script: Cyrillic} (Short: \p{Sc=Cyrl}, \p{Cyrl}) (417)
  2770. \p{Script: Cyrl} \p{Script=Cyrillic} (417)
  2771. \p{Script: Deseret} (Short: \p{Sc=Dsrt}, \p{Dsrt}) (80)
  2772. \p{Script: Deva} \p{Script=Devanagari} (151)
  2773. \p{Script: Devanagari} (Short: \p{Sc=Deva}, \p{Deva}) (151)
  2774. \p{Script: Dsrt} \p{Script=Deseret} (80)
  2775. \p{Script: Egyp} \p{Script=Egyptian_Hieroglyphs} (1071)
  2776. \p{Script: Egyptian_Hieroglyphs} (Short: \p{Sc=Egyp}, \p{Egyp})
  2777. (1071)
  2778. \p{Script: Ethi} \p{Script=Ethiopic} (495)
  2779. \p{Script: Ethiopic} (Short: \p{Sc=Ethi}, \p{Ethi}) (495)
  2780. \p{Script: Geor} \p{Script=Georgian} (127)
  2781. \p{Script: Georgian} (Short: \p{Sc=Geor}, \p{Geor}) (127)
  2782. \p{Script: Glag} \p{Script=Glagolitic} (94)
  2783. \p{Script: Glagolitic} (Short: \p{Sc=Glag}, \p{Glag}) (94)
  2784. \p{Script: Goth} \p{Script=Gothic} (27)
  2785. \p{Script: Gothic} (Short: \p{Sc=Goth}, \p{Goth}) (27)
  2786. \p{Script: Greek} (Short: \p{Sc=Grek}, \p{Grek}) (511)
  2787. \p{Script: Grek} \p{Script=Greek} (511)
  2788. \p{Script: Gujarati} (Short: \p{Sc=Gujr}, \p{Gujr}) (84)
  2789. \p{Script: Gujr} \p{Script=Gujarati} (84)
  2790. \p{Script: Gurmukhi} (Short: \p{Sc=Guru}, \p{Guru}) (79)
  2791. \p{Script: Guru} \p{Script=Gurmukhi} (79)
  2792. \p{Script: Han} (Short: \p{Sc=Han}, \p{Han}) (75_963)
  2793. \p{Script: Hang} \p{Script=Hangul} (11_739)
  2794. \p{Script: Hangul} (Short: \p{Sc=Hang}, \p{Hang}) (11_739)
  2795. \p{Script: Hani} \p{Script=Han} (75_963)
  2796. \p{Script: Hano} \p{Script=Hanunoo} (21)
  2797. \p{Script: Hanunoo} (Short: \p{Sc=Hano}, \p{Hano}) (21)
  2798. \p{Script: Hebr} \p{Script=Hebrew} (133)
  2799. \p{Script: Hebrew} (Short: \p{Sc=Hebr}, \p{Hebr}) (133)
  2800. \p{Script: Hira} \p{Script=Hiragana} (91)
  2801. \p{Script: Hiragana} (Short: \p{Sc=Hira}, \p{Hira}) (91)
  2802. \p{Script: Imperial_Aramaic} (Short: \p{Sc=Armi}, \p{Armi}) (31)
  2803. \p{Script: Inherited} (Short: \p{Sc=Zinh}, \p{Zinh}) (524)
  2804. \p{Script: Inscriptional_Pahlavi} (Short: \p{Sc=Phli}, \p{Phli})
  2805. (27)
  2806. \p{Script: Inscriptional_Parthian} (Short: \p{Sc=Prti}, \p{Prti})
  2807. (30)
  2808. \p{Script: Ital} \p{Script=Old_Italic} (35)
  2809. \p{Script: Java} \p{Script=Javanese} (91)
  2810. \p{Script: Javanese} (Short: \p{Sc=Java}, \p{Java}) (91)
  2811. \p{Script: Kaithi} (Short: \p{Sc=Kthi}, \p{Kthi}) (66)
  2812. \p{Script: Kali} \p{Script=Kayah_Li} (48)
  2813. \p{Script: Kana} \p{Script=Katakana} (300)
  2814. \p{Script: Kannada} (Short: \p{Sc=Knda}, \p{Knda}) (86)
  2815. \p{Script: Katakana} (Short: \p{Sc=Kana}, \p{Kana}) (300)
  2816. \p{Script: Kayah_Li} (Short: \p{Sc=Kali}, \p{Kali}) (48)
  2817. \p{Script: Khar} \p{Script=Kharoshthi} (65)
  2818. \p{Script: Kharoshthi} (Short: \p{Sc=Khar}, \p{Khar}) (65)
  2819. \p{Script: Khmer} (Short: \p{Sc=Khmr}, \p{Khmr}) (146)
  2820. \p{Script: Khmr} \p{Script=Khmer} (146)
  2821. \p{Script: Knda} \p{Script=Kannada} (86)
  2822. \p{Script: Kthi} \p{Script=Kaithi} (66)
  2823. \p{Script: Lana} \p{Script=Tai_Tham} (127)
  2824. \p{Script: Lao} (Short: \p{Sc=Lao}, \p{Lao}) (67)
  2825. \p{Script: Laoo} \p{Script=Lao} (67)
  2826. \p{Script: Latin} (Short: \p{Sc=Latn}, \p{Latn}) (1272)
  2827. \p{Script: Latn} \p{Script=Latin} (1272)
  2828. \p{Script: Lepc} \p{Script=Lepcha} (74)
  2829. \p{Script: Lepcha} (Short: \p{Sc=Lepc}, \p{Lepc}) (74)
  2830. \p{Script: Limb} \p{Script=Limbu} (66)
  2831. \p{Script: Limbu} (Short: \p{Sc=Limb}, \p{Limb}) (66)
  2832. \p{Script: Linb} \p{Script=Linear_B} (211)
  2833. \p{Script: Linear_B} (Short: \p{Sc=Linb}, \p{Linb}) (211)
  2834. \p{Script: Lisu} (Short: \p{Sc=Lisu}, \p{Lisu}) (48)
  2835. \p{Script: Lyci} \p{Script=Lycian} (29)
  2836. \p{Script: Lycian} (Short: \p{Sc=Lyci}, \p{Lyci}) (29)
  2837. \p{Script: Lydi} \p{Script=Lydian} (27)
  2838. \p{Script: Lydian} (Short: \p{Sc=Lydi}, \p{Lydi}) (27)
  2839. \p{Script: Malayalam} (Short: \p{Sc=Mlym}, \p{Mlym}) (98)
  2840. \p{Script: Mand} \p{Script=Mandaic} (29)
  2841. \p{Script: Mandaic} (Short: \p{Sc=Mand}, \p{Mand}) (29)
  2842. \p{Script: Meetei_Mayek} (Short: \p{Sc=Mtei}, \p{Mtei}) (79)
  2843. \p{Script: Merc} \p{Script=Meroitic_Cursive} (26)
  2844. \p{Script: Mero} \p{Script=Meroitic_Hieroglyphs} (32)
  2845. \p{Script: Meroitic_Cursive} (Short: \p{Sc=Merc}, \p{Merc}) (26)
  2846. \p{Script: Meroitic_Hieroglyphs} (Short: \p{Sc=Mero}, \p{Mero})
  2847. (32)
  2848. \p{Script: Miao} (Short: \p{Sc=Miao}, \p{Miao}) (133)
  2849. \p{Script: Mlym} \p{Script=Malayalam} (98)
  2850. \p{Script: Mong} \p{Script=Mongolian} (153)
  2851. \p{Script: Mongolian} (Short: \p{Sc=Mong}, \p{Mong}) (153)
  2852. \p{Script: Mtei} \p{Script=Meetei_Mayek} (79)
  2853. \p{Script: Myanmar} (Short: \p{Sc=Mymr}, \p{Mymr}) (188)
  2854. \p{Script: Mymr} \p{Script=Myanmar} (188)
  2855. \p{Script: New_Tai_Lue} (Short: \p{Sc=Talu}, \p{Talu}) (83)
  2856. \p{Script: Nko} (Short: \p{Sc=Nko}, \p{Nko}) (59)
  2857. \p{Script: Nkoo} \p{Script=Nko} (59)
  2858. \p{Script: Ogam} \p{Script=Ogham} (29)
  2859. \p{Script: Ogham} (Short: \p{Sc=Ogam}, \p{Ogam}) (29)
  2860. \p{Script: Ol_Chiki} (Short: \p{Sc=Olck}, \p{Olck}) (48)
  2861. \p{Script: Olck} \p{Script=Ol_Chiki} (48)
  2862. \p{Script: Old_Italic} (Short: \p{Sc=Ital}, \p{Ital}) (35)
  2863. \p{Script: Old_Persian} (Short: \p{Sc=Xpeo}, \p{Xpeo}) (50)
  2864. \p{Script: Old_South_Arabian} (Short: \p{Sc=Sarb}, \p{Sarb}) (32)
  2865. \p{Script: Old_Turkic} (Short: \p{Sc=Orkh}, \p{Orkh}) (73)
  2866. \p{Script: Oriya} (Short: \p{Sc=Orya}, \p{Orya}) (90)
  2867. \p{Script: Orkh} \p{Script=Old_Turkic} (73)
  2868. \p{Script: Orya} \p{Script=Oriya} (90)
  2869. \p{Script: Osma} \p{Script=Osmanya} (40)
  2870. \p{Script: Osmanya} (Short: \p{Sc=Osma}, \p{Osma}) (40)
  2871. \p{Script: Phag} \p{Script=Phags_Pa} (56)
  2872. \p{Script: Phags_Pa} (Short: \p{Sc=Phag}, \p{Phag}) (56)
  2873. \p{Script: Phli} \p{Script=Inscriptional_Pahlavi} (27)
  2874. \p{Script: Phnx} \p{Script=Phoenician} (29)
  2875. \p{Script: Phoenician} (Short: \p{Sc=Phnx}, \p{Phnx}) (29)
  2876. \p{Script: Plrd} \p{Script=Miao} (133)
  2877. \p{Script: Prti} \p{Script=Inscriptional_Parthian} (30)
  2878. \p{Script: Qaac} \p{Script=Coptic} (137)
  2879. \p{Script: Qaai} \p{Script=Inherited} (524)
  2880. \p{Script: Rejang} (Short: \p{Sc=Rjng}, \p{Rjng}) (37)
  2881. \p{Script: Rjng} \p{Script=Rejang} (37)
  2882. \p{Script: Runic} (Short: \p{Sc=Runr}, \p{Runr}) (78)
  2883. \p{Script: Runr} \p{Script=Runic} (78)
  2884. \p{Script: Samaritan} (Short: \p{Sc=Samr}, \p{Samr}) (61)
  2885. \p{Script: Samr} \p{Script=Samaritan} (61)
  2886. \p{Script: Sarb} \p{Script=Old_South_Arabian} (32)
  2887. \p{Script: Saur} \p{Script=Saurashtra} (81)
  2888. \p{Script: Saurashtra} (Short: \p{Sc=Saur}, \p{Saur}) (81)
  2889. \p{Script: Sharada} (Short: \p{Sc=Shrd}, \p{Shrd}) (83)
  2890. \p{Script: Shavian} (Short: \p{Sc=Shaw}, \p{Shaw}) (48)
  2891. \p{Script: Shaw} \p{Script=Shavian} (48)
  2892. \p{Script: Shrd} \p{Script=Sharada} (83)
  2893. \p{Script: Sinh} \p{Script=Sinhala} (80)
  2894. \p{Script: Sinhala} (Short: \p{Sc=Sinh}, \p{Sinh}) (80)
  2895. \p{Script: Sora} \p{Script=Sora_Sompeng} (35)
  2896. \p{Script: Sora_Sompeng} (Short: \p{Sc=Sora}, \p{Sora}) (35)
  2897. \p{Script: Sund} \p{Script=Sundanese} (72)
  2898. \p{Script: Sundanese} (Short: \p{Sc=Sund}, \p{Sund}) (72)
  2899. \p{Script: Sylo} \p{Script=Syloti_Nagri} (44)
  2900. \p{Script: Syloti_Nagri} (Short: \p{Sc=Sylo}, \p{Sylo}) (44)
  2901. \p{Script: Syrc} \p{Script=Syriac} (77)
  2902. \p{Script: Syriac} (Short: \p{Sc=Syrc}, \p{Syrc}) (77)
  2903. \p{Script: Tagalog} (Short: \p{Sc=Tglg}, \p{Tglg}) (20)
  2904. \p{Script: Tagb} \p{Script=Tagbanwa} (18)
  2905. \p{Script: Tagbanwa} (Short: \p{Sc=Tagb}, \p{Tagb}) (18)
  2906. \p{Script: Tai_Le} (Short: \p{Sc=Tale}, \p{Tale}) (35)
  2907. \p{Script: Tai_Tham} (Short: \p{Sc=Lana}, \p{Lana}) (127)
  2908. \p{Script: Tai_Viet} (Short: \p{Sc=Tavt}, \p{Tavt}) (72)
  2909. \p{Script: Takr} \p{Script=Takri} (66)
  2910. \p{Script: Takri} (Short: \p{Sc=Takr}, \p{Takr}) (66)
  2911. \p{Script: Tale} \p{Script=Tai_Le} (35)
  2912. \p{Script: Talu} \p{Script=New_Tai_Lue} (83)
  2913. \p{Script: Tamil} (Short: \p{Sc=Taml}, \p{Taml}) (72)
  2914. \p{Script: Taml} \p{Script=Tamil} (72)
  2915. \p{Script: Tavt} \p{Script=Tai_Viet} (72)
  2916. \p{Script: Telu} \p{Script=Telugu} (93)
  2917. \p{Script: Telugu} (Short: \p{Sc=Telu}, \p{Telu}) (93)
  2918. \p{Script: Tfng} \p{Script=Tifinagh} (59)
  2919. \p{Script: Tglg} \p{Script=Tagalog} (20)
  2920. \p{Script: Thaa} \p{Script=Thaana} (50)
  2921. \p{Script: Thaana} (Short: \p{Sc=Thaa}, \p{Thaa}) (50)
  2922. \p{Script: Thai} (Short: \p{Sc=Thai}, \p{Thai}) (86)
  2923. \p{Script: Tibetan} (Short: \p{Sc=Tibt}, \p{Tibt}) (207)
  2924. \p{Script: Tibt} \p{Script=Tibetan} (207)
  2925. \p{Script: Tifinagh} (Short: \p{Sc=Tfng}, \p{Tfng}) (59)
  2926. \p{Script: Ugar} \p{Script=Ugaritic} (31)
  2927. \p{Script: Ugaritic} (Short: \p{Sc=Ugar}, \p{Ugar}) (31)
  2928. \p{Script: Unknown} (Short: \p{Sc=Zzzz}, \p{Zzzz}) (1_003_931)
  2929. \p{Script: Vai} (Short: \p{Sc=Vai}, \p{Vai}) (300)
  2930. \p{Script: Vaii} \p{Script=Vai} (300)
  2931. \p{Script: Xpeo} \p{Script=Old_Persian} (50)
  2932. \p{Script: Xsux} \p{Script=Cuneiform} (982)
  2933. \p{Script: Yi} (Short: \p{Sc=Yi}, \p{Yi}) (1220)
  2934. \p{Script: Yiii} \p{Script=Yi} (1220)
  2935. \p{Script: Zinh} \p{Script=Inherited} (524)
  2936. \p{Script: Zyyy} \p{Script=Common} (6412)
  2937. \p{Script: Zzzz} \p{Script=Unknown} (1_003_931)
  2938. \p{Script_Extensions: Arab} \p{Script_Extensions=Arabic} (1261)
  2939. \p{Script_Extensions: Arabic} (Short: \p{Scx=Arab}) (1261)
  2940. \p{Script_Extensions: Armenian} (Short: \p{Scx=Armn}) (92)
  2941. \p{Script_Extensions: Armi} \p{Script_Extensions=Imperial_Aramaic}
  2942. (31)
  2943. \p{Script_Extensions: Armn} \p{Script_Extensions=Armenian} (92)
  2944. \p{Script_Extensions: Avestan} (Short: \p{Scx=Avst}) (61)
  2945. \p{Script_Extensions: Avst} \p{Script_Extensions=Avestan} (61)
  2946. \p{Script_Extensions: Bali} \p{Script_Extensions=Balinese} (121)
  2947. \p{Script_Extensions: Balinese} (Short: \p{Scx=Bali}) (121)
  2948. \p{Script_Extensions: Bamu} \p{Script_Extensions=Bamum} (657)
  2949. \p{Script_Extensions: Bamum} (Short: \p{Scx=Bamu}) (657)
  2950. \p{Script_Extensions: Batak} (Short: \p{Scx=Batk}) (56)
  2951. \p{Script_Extensions: Batk} \p{Script_Extensions=Batak} (56)
  2952. \p{Script_Extensions: Beng} \p{Script_Extensions=Bengali} (94)
  2953. \p{Script_Extensions: Bengali} (Short: \p{Scx=Beng}) (94)
  2954. \p{Script_Extensions: Bopo} \p{Script_Extensions=Bopomofo} (306)
  2955. \p{Script_Extensions: Bopomofo} (Short: \p{Scx=Bopo}) (306)
  2956. \p{Script_Extensions: Brah} \p{Script_Extensions=Brahmi} (108)
  2957. \p{Script_Extensions: Brahmi} (Short: \p{Scx=Brah}) (108)
  2958. \p{Script_Extensions: Brai} \p{Script_Extensions=Braille} (256)
  2959. \p{Script_Extensions: Braille} (Short: \p{Scx=Brai}) (256)
  2960. \p{Script_Extensions: Bugi} \p{Script_Extensions=Buginese} (30)
  2961. \p{Script_Extensions: Buginese} (Short: \p{Scx=Bugi}) (30)
  2962. \p{Script_Extensions: Buhd} \p{Script_Extensions=Buhid} (22)
  2963. \p{Script_Extensions: Buhid} (Short: \p{Scx=Buhd}) (22)
  2964. \p{Script_Extensions: Cakm} \p{Script_Extensions=Chakma} (67)
  2965. \p{Script_Extensions: Canadian_Aboriginal} (Short: \p{Scx=Cans})
  2966. (710)
  2967. \p{Script_Extensions: Cans} \p{Script_Extensions=
  2968. Canadian_Aboriginal} (710)
  2969. \p{Script_Extensions: Cari} \p{Script_Extensions=Carian} (49)
  2970. \p{Script_Extensions: Carian} (Short: \p{Scx=Cari}) (49)
  2971. \p{Script_Extensions: Chakma} (Short: \p{Scx=Cakm}) (67)
  2972. \p{Script_Extensions: Cham} (Short: \p{Scx=Cham}) (83)
  2973. \p{Script_Extensions: Cher} \p{Script_Extensions=Cherokee} (85)
  2974. \p{Script_Extensions: Cherokee} (Short: \p{Scx=Cher}) (85)
  2975. \p{Script_Extensions: Common} (Short: \p{Scx=Zyyy}) (6059)
  2976. \p{Script_Extensions: Copt} \p{Script_Extensions=Coptic} (137)
  2977. \p{Script_Extensions: Coptic} (Short: \p{Scx=Copt}) (137)
  2978. \p{Script_Extensions: Cprt} \p{Script_Extensions=Cypriot} (112)
  2979. \p{Script_Extensions: Cuneiform} (Short: \p{Scx=Xsux}) (982)
  2980. \p{Script_Extensions: Cypriot} (Short: \p{Scx=Cprt}) (112)
  2981. \p{Script_Extensions: Cyrillic} (Short: \p{Scx=Cyrl}) (417)
  2982. \p{Script_Extensions: Cyrl} \p{Script_Extensions=Cyrillic} (417)
  2983. \p{Script_Extensions: Deseret} (Short: \p{Scx=Dsrt}) (80)
  2984. \p{Script_Extensions: Deva} \p{Script_Extensions=Devanagari} (163)
  2985. \p{Script_Extensions: Devanagari} (Short: \p{Scx=Deva}) (163)
  2986. \p{Script_Extensions: Dsrt} \p{Script_Extensions=Deseret} (80)
  2987. \p{Script_Extensions: Egyp} \p{Script_Extensions=
  2988. Egyptian_Hieroglyphs} (1071)
  2989. \p{Script_Extensions: Egyptian_Hieroglyphs} (Short: \p{Scx=Egyp})
  2990. (1071)
  2991. \p{Script_Extensions: Ethi} \p{Script_Extensions=Ethiopic} (495)
  2992. \p{Script_Extensions: Ethiopic} (Short: \p{Scx=Ethi}) (495)
  2993. \p{Script_Extensions: Geor} \p{Script_Extensions=Georgian} (128)
  2994. \p{Script_Extensions: Georgian} (Short: \p{Scx=Geor}) (128)
  2995. \p{Script_Extensions: Glag} \p{Script_Extensions=Glagolitic} (94)
  2996. \p{Script_Extensions: Glagolitic} (Short: \p{Scx=Glag}) (94)
  2997. \p{Script_Extensions: Goth} \p{Script_Extensions=Gothic} (27)
  2998. \p{Script_Extensions: Gothic} (Short: \p{Scx=Goth}) (27)
  2999. \p{Script_Extensions: Greek} (Short: \p{Scx=Grek}) (511)
  3000. \p{Script_Extensions: Grek} \p{Script_Extensions=Greek} (511)
  3001. \p{Script_Extensions: Gujarati} (Short: \p{Scx=Gujr}) (94)
  3002. \p{Script_Extensions: Gujr} \p{Script_Extensions=Gujarati} (94)
  3003. \p{Script_Extensions: Gurmukhi} (Short: \p{Scx=Guru}) (91)
  3004. \p{Script_Extensions: Guru} \p{Script_Extensions=Gurmukhi} (91)
  3005. \p{Script_Extensions: Han} (Short: \p{Scx=Han}) (76_218)
  3006. \p{Script_Extensions: Hang} \p{Script_Extensions=Hangul} (11_971)
  3007. \p{Script_Extensions: Hangul} (Short: \p{Scx=Hang}) (11_971)
  3008. \p{Script_Extensions: Hani} \p{Script_Extensions=Han} (76_218)
  3009. \p{Script_Extensions: Hano} \p{Script_Extensions=Hanunoo} (23)
  3010. \p{Script_Extensions: Hanunoo} (Short: \p{Scx=Hano}) (23)
  3011. \p{Script_Extensions: Hebr} \p{Script_Extensions=Hebrew} (133)
  3012. \p{Script_Extensions: Hebrew} (Short: \p{Scx=Hebr}) (133)
  3013. \p{Script_Extensions: Hira} \p{Script_Extensions=Hiragana} (356)
  3014. \p{Script_Extensions: Hiragana} (Short: \p{Scx=Hira}) (356)
  3015. \p{Script_Extensions: Imperial_Aramaic} (Short: \p{Scx=Armi}) (31)
  3016. \p{Script_Extensions: Inherited} (Short: \p{Scx=Zinh}) (506)
  3017. \p{Script_Extensions: Inscriptional_Pahlavi} (Short: \p{Scx=Phli})
  3018. (27)
  3019. \p{Script_Extensions: Inscriptional_Parthian} (Short: \p{Scx=
  3020. Prti}) (30)
  3021. \p{Script_Extensions: Ital} \p{Script_Extensions=Old_Italic} (35)
  3022. \p{Script_Extensions: Java} \p{Script_Extensions=Javanese} (91)
  3023. \p{Script_Extensions: Javanese} (Short: \p{Scx=Java}) (91)
  3024. \p{Script_Extensions: Kaithi} (Short: \p{Scx=Kthi}) (76)
  3025. \p{Script_Extensions: Kali} \p{Script_Extensions=Kayah_Li} (48)
  3026. \p{Script_Extensions: Kana} \p{Script_Extensions=Katakana} (565)
  3027. \p{Script_Extensions: Kannada} (Short: \p{Scx=Knda}) (86)
  3028. \p{Script_Extensions: Katakana} (Short: \p{Scx=Kana}) (565)
  3029. \p{Script_Extensions: Kayah_Li} (Short: \p{Scx=Kali}) (48)
  3030. \p{Script_Extensions: Khar} \p{Script_Extensions=Kharoshthi} (65)
  3031. \p{Script_Extensions: Kharoshthi} (Short: \p{Scx=Khar}) (65)
  3032. \p{Script_Extensions: Khmer} (Short: \p{Scx=Khmr}) (146)
  3033. \p{Script_Extensions: Khmr} \p{Script_Extensions=Khmer} (146)
  3034. \p{Script_Extensions: Knda} \p{Script_Extensions=Kannada} (86)
  3035. \p{Script_Extensions: Kthi} \p{Script_Extensions=Kaithi} (76)
  3036. \p{Script_Extensions: Lana} \p{Script_Extensions=Tai_Tham} (127)
  3037. \p{Script_Extensions: Lao} (Short: \p{Scx=Lao}) (67)
  3038. \p{Script_Extensions: Laoo} \p{Script_Extensions=Lao} (67)
  3039. \p{Script_Extensions: Latin} (Short: \p{Scx=Latn}) (1272)
  3040. \p{Script_Extensions: Latn} \p{Script_Extensions=Latin} (1272)
  3041. \p{Script_Extensions: Lepc} \p{Script_Extensions=Lepcha} (74)
  3042. \p{Script_Extensions: Lepcha} (Short: \p{Scx=Lepc}) (74)
  3043. \p{Script_Extensions: Limb} \p{Script_Extensions=Limbu} (66)
  3044. \p{Script_Extensions: Limbu} (Short: \p{Scx=Limb}) (66)
  3045. \p{Script_Extensions: Linb} \p{Script_Extensions=Linear_B} (268)
  3046. \p{Script_Extensions: Linear_B} (Short: \p{Scx=Linb}) (268)
  3047. \p{Script_Extensions: Lisu} (Short: \p{Scx=Lisu}) (48)
  3048. \p{Script_Extensions: Lyci} \p{Script_Extensions=Lycian} (29)
  3049. \p{Script_Extensions: Lycian} (Short: \p{Scx=Lyci}) (29)
  3050. \p{Script_Extensions: Lydi} \p{Script_Extensions=Lydian} (27)
  3051. \p{Script_Extensions: Lydian} (Short: \p{Scx=Lydi}) (27)
  3052. \p{Script_Extensions: Malayalam} (Short: \p{Scx=Mlym}) (98)
  3053. \p{Script_Extensions: Mand} \p{Script_Extensions=Mandaic} (30)
  3054. \p{Script_Extensions: Mandaic} (Short: \p{Scx=Mand}) (30)
  3055. \p{Script_Extensions: Meetei_Mayek} (Short: \p{Scx=Mtei}) (79)
  3056. \p{Script_Extensions: Merc} \p{Script_Extensions=Meroitic_Cursive}
  3057. (26)
  3058. \p{Script_Extensions: Mero} \p{Script_Extensions=
  3059. Meroitic_Hieroglyphs} (32)
  3060. \p{Script_Extensions: Meroitic_Cursive} (Short: \p{Scx=Merc}) (26)
  3061. \p{Script_Extensions: Meroitic_Hieroglyphs} (Short: \p{Scx=Mero})
  3062. (32)
  3063. \p{Script_Extensions: Miao} (Short: \p{Scx=Miao}) (133)
  3064. \p{Script_Extensions: Mlym} \p{Script_Extensions=Malayalam} (98)
  3065. \p{Script_Extensions: Mong} \p{Script_Extensions=Mongolian} (156)
  3066. \p{Script_Extensions: Mongolian} (Short: \p{Scx=Mong}) (156)
  3067. \p{Script_Extensions: Mtei} \p{Script_Extensions=Meetei_Mayek} (79)
  3068. \p{Script_Extensions: Myanmar} (Short: \p{Scx=Mymr}) (188)
  3069. \p{Script_Extensions: Mymr} \p{Script_Extensions=Myanmar} (188)
  3070. \p{Script_Extensions: New_Tai_Lue} (Short: \p{Scx=Talu}) (83)
  3071. \p{Script_Extensions: Nko} (Short: \p{Scx=Nko}) (59)
  3072. \p{Script_Extensions: Nkoo} \p{Script_Extensions=Nko} (59)
  3073. \p{Script_Extensions: Ogam} \p{Script_Extensions=Ogham} (29)
  3074. \p{Script_Extensions: Ogham} (Short: \p{Scx=Ogam}) (29)
  3075. \p{Script_Extensions: Ol_Chiki} (Short: \p{Scx=Olck}) (48)
  3076. \p{Script_Extensions: Olck} \p{Script_Extensions=Ol_Chiki} (48)
  3077. \p{Script_Extensions: Old_Italic} (Short: \p{Scx=Ital}) (35)
  3078. \p{Script_Extensions: Old_Persian} (Short: \p{Scx=Xpeo}) (50)
  3079. \p{Script_Extensions: Old_South_Arabian} (Short: \p{Scx=Sarb}) (32)
  3080. \p{Script_Extensions: Old_Turkic} (Short: \p{Scx=Orkh}) (73)
  3081. \p{Script_Extensions: Oriya} (Short: \p{Scx=Orya}) (92)
  3082. \p{Script_Extensions: Orkh} \p{Script_Extensions=Old_Turkic} (73)
  3083. \p{Script_Extensions: Orya} \p{Script_Extensions=Oriya} (92)
  3084. \p{Script_Extensions: Osma} \p{Script_Extensions=Osmanya} (40)
  3085. \p{Script_Extensions: Osmanya} (Short: \p{Scx=Osma}) (40)
  3086. \p{Script_Extensions: Phag} \p{Script_Extensions=Phags_Pa} (59)
  3087. \p{Script_Extensions: Phags_Pa} (Short: \p{Scx=Phag}) (59)
  3088. \p{Script_Extensions: Phli} \p{Script_Extensions=
  3089. Inscriptional_Pahlavi} (27)
  3090. \p{Script_Extensions: Phnx} \p{Script_Extensions=Phoenician} (29)
  3091. \p{Script_Extensions: Phoenician} (Short: \p{Scx=Phnx}) (29)
  3092. \p{Script_Extensions: Plrd} \p{Script_Extensions=Miao} (133)
  3093. \p{Script_Extensions: Prti} \p{Script_Extensions=
  3094. Inscriptional_Parthian} (30)
  3095. \p{Script_Extensions: Qaac} \p{Script_Extensions=Coptic} (137)
  3096. \p{Script_Extensions: Qaai} \p{Script_Extensions=Inherited} (506)
  3097. \p{Script_Extensions: Rejang} (Short: \p{Scx=Rjng}) (37)
  3098. \p{Script_Extensions: Rjng} \p{Script_Extensions=Rejang} (37)
  3099. \p{Script_Extensions: Runic} (Short: \p{Scx=Runr}) (78)
  3100. \p{Script_Extensions: Runr} \p{Script_Extensions=Runic} (78)
  3101. \p{Script_Extensions: Samaritan} (Short: \p{Scx=Samr}) (61)
  3102. \p{Script_Extensions: Samr} \p{Script_Extensions=Samaritan} (61)
  3103. \p{Script_Extensions: Sarb} \p{Script_Extensions=
  3104. Old_South_Arabian} (32)
  3105. \p{Script_Extensions: Saur} \p{Script_Extensions=Saurashtra} (81)
  3106. \p{Script_Extensions: Saurashtra} (Short: \p{Scx=Saur}) (81)
  3107. \p{Script_Extensions: Sharada} (Short: \p{Scx=Shrd}) (83)
  3108. \p{Script_Extensions: Shavian} (Short: \p{Scx=Shaw}) (48)
  3109. \p{Script_Extensions: Shaw} \p{Script_Extensions=Shavian} (48)
  3110. \p{Script_Extensions: Shrd} \p{Script_Extensions=Sharada} (83)
  3111. \p{Script_Extensions: Sinh} \p{Script_Extensions=Sinhala} (80)
  3112. \p{Script_Extensions: Sinhala} (Short: \p{Scx=Sinh}) (80)
  3113. \p{Script_Extensions: Sora} \p{Script_Extensions=Sora_Sompeng} (35)
  3114. \p{Script_Extensions: Sora_Sompeng} (Short: \p{Scx=Sora}) (35)
  3115. \p{Script_Extensions: Sund} \p{Script_Extensions=Sundanese} (72)
  3116. \p{Script_Extensions: Sundanese} (Short: \p{Scx=Sund}) (72)
  3117. \p{Script_Extensions: Sylo} \p{Script_Extensions=Syloti_Nagri} (44)
  3118. \p{Script_Extensions: Syloti_Nagri} (Short: \p{Scx=Sylo}) (44)
  3119. \p{Script_Extensions: Syrc} \p{Script_Extensions=Syriac} (93)
  3120. \p{Script_Extensions: Syriac} (Short: \p{Scx=Syrc}) (93)
  3121. \p{Script_Extensions: Tagalog} (Short: \p{Scx=Tglg}) (22)
  3122. \p{Script_Extensions: Tagb} \p{Script_Extensions=Tagbanwa} (20)
  3123. \p{Script_Extensions: Tagbanwa} (Short: \p{Scx=Tagb}) (20)
  3124. \p{Script_Extensions: Tai_Le} (Short: \p{Scx=Tale}) (35)
  3125. \p{Script_Extensions: Tai_Tham} (Short: \p{Scx=Lana}) (127)
  3126. \p{Script_Extensions: Tai_Viet} (Short: \p{Scx=Tavt}) (72)
  3127. \p{Script_Extensions: Takr} \p{Script_Extensions=Takri} (78)
  3128. \p{Script_Extensions: Takri} (Short: \p{Scx=Takr}) (78)
  3129. \p{Script_Extensions: Tale} \p{Script_Extensions=Tai_Le} (35)
  3130. \p{Script_Extensions: Talu} \p{Script_Extensions=New_Tai_Lue} (83)
  3131. \p{Script_Extensions: Tamil} (Short: \p{Scx=Taml}) (72)
  3132. \p{Script_Extensions: Taml} \p{Script_Extensions=Tamil} (72)
  3133. \p{Script_Extensions: Tavt} \p{Script_Extensions=Tai_Viet} (72)
  3134. \p{Script_Extensions: Telu} \p{Script_Extensions=Telugu} (93)
  3135. \p{Script_Extensions: Telugu} (Short: \p{Scx=Telu}) (93)
  3136. \p{Script_Extensions: Tfng} \p{Script_Extensions=Tifinagh} (59)
  3137. \p{Script_Extensions: Tglg} \p{Script_Extensions=Tagalog} (22)
  3138. \p{Script_Extensions: Thaa} \p{Script_Extensions=Thaana} (65)
  3139. \p{Script_Extensions: Thaana} (Short: \p{Scx=Thaa}) (65)
  3140. \p{Script_Extensions: Thai} (Short: \p{Scx=Thai}) (86)
  3141. \p{Script_Extensions: Tibetan} (Short: \p{Scx=Tibt}) (207)
  3142. \p{Script_Extensions: Tibt} \p{Script_Extensions=Tibetan} (207)
  3143. \p{Script_Extensions: Tifinagh} (Short: \p{Scx=Tfng}) (59)
  3144. \p{Script_Extensions: Ugar} \p{Script_Extensions=Ugaritic} (31)
  3145. \p{Script_Extensions: Ugaritic} (Short: \p{Scx=Ugar}) (31)
  3146. \p{Script_Extensions: Unknown} (Short: \p{Scx=Zzzz}) (1_003_931)
  3147. \p{Script_Extensions: Vai} (Short: \p{Scx=Vai}) (300)
  3148. \p{Script_Extensions: Vaii} \p{Script_Extensions=Vai} (300)
  3149. \p{Script_Extensions: Xpeo} \p{Script_Extensions=Old_Persian} (50)
  3150. \p{Script_Extensions: Xsux} \p{Script_Extensions=Cuneiform} (982)
  3151. \p{Script_Extensions: Yi} (Short: \p{Scx=Yi}) (1246)
  3152. \p{Script_Extensions: Yiii} \p{Script_Extensions=Yi} (1246)
  3153. \p{Script_Extensions: Zinh} \p{Script_Extensions=Inherited} (506)
  3154. \p{Script_Extensions: Zyyy} \p{Script_Extensions=Common} (6059)
  3155. \p{Script_Extensions: Zzzz} \p{Script_Extensions=Unknown}
  3156. (1_003_931)
  3157. \p{Scx: *} \p{Script_Extensions: *}
  3158. \p{SD} \p{Soft_Dotted} (= \p{Soft_Dotted=Y}) (46)
  3159. \p{SD: *} \p{Soft_Dotted: *}
  3160. \p{Sentence_Break: AT} \p{Sentence_Break=ATerm} (4)
  3161. \p{Sentence_Break: ATerm} (Short: \p{SB=AT}) (4)
  3162. \p{Sentence_Break: CL} \p{Sentence_Break=Close} (177)
  3163. \p{Sentence_Break: Close} (Short: \p{SB=CL}) (177)
  3164. \p{Sentence_Break: CR} (Short: \p{SB=CR}) (1)
  3165. \p{Sentence_Break: EX} \p{Sentence_Break=Extend} (1649)
  3166. \p{Sentence_Break: Extend} (Short: \p{SB=EX}) (1649)
  3167. \p{Sentence_Break: FO} \p{Sentence_Break=Format} (137)
  3168. \p{Sentence_Break: Format} (Short: \p{SB=FO}) (137)
  3169. \p{Sentence_Break: LE} \p{Sentence_Break=OLetter} (97_841)
  3170. \p{Sentence_Break: LF} (Short: \p{SB=LF}) (1)
  3171. \p{Sentence_Break: LO} \p{Sentence_Break=Lower} (1933)
  3172. \p{Sentence_Break: Lower} (Short: \p{SB=LO}) (1933)
  3173. \p{Sentence_Break: NU} \p{Sentence_Break=Numeric} (452)
  3174. \p{Sentence_Break: Numeric} (Short: \p{SB=NU}) (452)
  3175. \p{Sentence_Break: OLetter} (Short: \p{SB=LE}) (97_841)
  3176. \p{Sentence_Break: Other} (Short: \p{SB=XX}) (1_010_273)
  3177. \p{Sentence_Break: SC} \p{Sentence_Break=SContinue} (26)
  3178. \p{Sentence_Break: SContinue} (Short: \p{SB=SC}) (26)
  3179. \p{Sentence_Break: SE} \p{Sentence_Break=Sep} (3)
  3180. \p{Sentence_Break: Sep} (Short: \p{SB=SE}) (3)
  3181. \p{Sentence_Break: Sp} (Short: \p{SB=Sp}) (21)
  3182. \p{Sentence_Break: ST} \p{Sentence_Break=STerm} (80)
  3183. \p{Sentence_Break: STerm} (Short: \p{SB=ST}) (80)
  3184. \p{Sentence_Break: UP} \p{Sentence_Break=Upper} (1514)
  3185. \p{Sentence_Break: Upper} (Short: \p{SB=UP}) (1514)
  3186. \p{Sentence_Break: XX} \p{Sentence_Break=Other} (1_010_273)
  3187. \p{Separator} \p{General_Category=Separator} (Short:
  3188. \p{Z}) (20)
  3189. \p{Sharada} \p{Script=Sharada} (Short: \p{Shrd}; NOT
  3190. \p{Block=Sharada}) (83)
  3191. \p{Shavian} \p{Script=Shavian} (Short: \p{Shaw}) (48)
  3192. \p{Shaw} \p{Shavian} (= \p{Script=Shavian}) (48)
  3193. \p{Shrd} \p{Sharada} (= \p{Script=Sharada}) (NOT
  3194. \p{Block=Sharada}) (83)
  3195. \p{Sinh} \p{Sinhala} (= \p{Script=Sinhala}) (NOT
  3196. \p{Block=Sinhala}) (80)
  3197. \p{Sinhala} \p{Script=Sinhala} (Short: \p{Sinh}; NOT
  3198. \p{Block=Sinhala}) (80)
  3199. \p{Sk} \p{Modifier_Symbol} (=
  3200. \p{General_Category=Modifier_Symbol})
  3201. (115)
  3202. \p{Sm} \p{Math_Symbol} (= \p{General_Category=
  3203. Math_Symbol}) (952)
  3204. X \p{Small_Form_Variants} \p{Block=Small_Form_Variants} (Short:
  3205. \p{InSmallForms}) (32)
  3206. X \p{Small_Forms} \p{Small_Form_Variants} (= \p{Block=
  3207. Small_Form_Variants}) (32)
  3208. \p{So} \p{Other_Symbol} (= \p{General_Category=
  3209. Other_Symbol}) (4404)
  3210. \p{Soft_Dotted} \p{Soft_Dotted=Y} (Short: \p{SD}) (46)
  3211. \p{Soft_Dotted: N*} (Short: \p{SD=N}, \P{SD}) (1_114_066)
  3212. \p{Soft_Dotted: Y*} (Short: \p{SD=Y}, \p{SD}) (46)
  3213. \p{Sora} \p{Sora_Sompeng} (= \p{Script=
  3214. Sora_Sompeng}) (NOT \p{Block=
  3215. Sora_Sompeng}) (35)
  3216. \p{Sora_Sompeng} \p{Script=Sora_Sompeng} (Short: \p{Sora};
  3217. NOT \p{Block=Sora_Sompeng}) (35)
  3218. \p{Space} \p{White_Space=Y} \s including beyond
  3219. ASCII plus vertical tab (26)
  3220. \p{Space: *} \p{White_Space: *}
  3221. \p{Space_Separator} \p{General_Category=Space_Separator}
  3222. (Short: \p{Zs}) (18)
  3223. \p{SpacePerl} \p{XPerlSpace} (25)
  3224. \p{Spacing_Mark} \p{General_Category=Spacing_Mark} (Short:
  3225. \p{Mc}) (353)
  3226. X \p{Spacing_Modifier_Letters} \p{Block=Spacing_Modifier_Letters}
  3227. (Short: \p{InModifierLetters}) (80)
  3228. X \p{Specials} \p{Block=Specials} (16)
  3229. \p{STerm} \p{STerm=Y} (83)
  3230. \p{STerm: N*} (Single: \P{STerm}) (1_114_029)
  3231. \p{STerm: Y*} (Single: \p{STerm}) (83)
  3232. \p{Sund} \p{Sundanese} (= \p{Script=Sundanese})
  3233. (NOT \p{Block=Sundanese}) (72)
  3234. \p{Sundanese} \p{Script=Sundanese} (Short: \p{Sund}; NOT
  3235. \p{Block=Sundanese}) (72)
  3236. X \p{Sundanese_Sup} \p{Sundanese_Supplement} (= \p{Block=
  3237. Sundanese_Supplement}) (16)
  3238. X \p{Sundanese_Supplement} \p{Block=Sundanese_Supplement} (Short:
  3239. \p{InSundaneseSup}) (16)
  3240. X \p{Sup_Arrows_A} \p{Supplemental_Arrows_A} (= \p{Block=
  3241. Supplemental_Arrows_A}) (16)
  3242. X \p{Sup_Arrows_B} \p{Supplemental_Arrows_B} (= \p{Block=
  3243. Supplemental_Arrows_B}) (128)
  3244. X \p{Sup_Math_Operators} \p{Supplemental_Mathematical_Operators} (=
  3245. \p{Block=
  3246. Supplemental_Mathematical_Operators})
  3247. (256)
  3248. X \p{Sup_PUA_A} \p{Supplementary_Private_Use_Area_A} (=
  3249. \p{Block=
  3250. Supplementary_Private_Use_Area_A})
  3251. (65_536)
  3252. X \p{Sup_PUA_B} \p{Supplementary_Private_Use_Area_B} (=
  3253. \p{Block=
  3254. Supplementary_Private_Use_Area_B})
  3255. (65_536)
  3256. X \p{Sup_Punctuation} \p{Supplemental_Punctuation} (= \p{Block=
  3257. Supplemental_Punctuation}) (128)
  3258. X \p{Super_And_Sub} \p{Superscripts_And_Subscripts} (=
  3259. \p{Block=Superscripts_And_Subscripts})
  3260. (48)
  3261. X \p{Superscripts_And_Subscripts} \p{Block=
  3262. Superscripts_And_Subscripts} (Short:
  3263. \p{InSuperAndSub}) (48)
  3264. X \p{Supplemental_Arrows_A} \p{Block=Supplemental_Arrows_A} (Short:
  3265. \p{InSupArrowsA}) (16)
  3266. X \p{Supplemental_Arrows_B} \p{Block=Supplemental_Arrows_B} (Short:
  3267. \p{InSupArrowsB}) (128)
  3268. X \p{Supplemental_Mathematical_Operators} \p{Block=
  3269. Supplemental_Mathematical_Operators}
  3270. (Short: \p{InSupMathOperators}) (256)
  3271. X \p{Supplemental_Punctuation} \p{Block=Supplemental_Punctuation}
  3272. (Short: \p{InSupPunctuation}) (128)
  3273. X \p{Supplementary_Private_Use_Area_A} \p{Block=
  3274. Supplementary_Private_Use_Area_A}
  3275. (Short: \p{InSupPUAA}) (65_536)
  3276. X \p{Supplementary_Private_Use_Area_B} \p{Block=
  3277. Supplementary_Private_Use_Area_B}
  3278. (Short: \p{InSupPUAB}) (65_536)
  3279. \p{Surrogate} \p{General_Category=Surrogate} (Short:
  3280. \p{Cs}) (2048)
  3281. \p{Sylo} \p{Syloti_Nagri} (= \p{Script=
  3282. Syloti_Nagri}) (NOT \p{Block=
  3283. Syloti_Nagri}) (44)
  3284. \p{Syloti_Nagri} \p{Script=Syloti_Nagri} (Short: \p{Sylo};
  3285. NOT \p{Block=Syloti_Nagri}) (44)
  3286. \p{Symbol} \p{General_Category=Symbol} (Short: \p{S})
  3287. (5519)
  3288. \p{Syrc} \p{Syriac} (= \p{Script=Syriac}) (NOT
  3289. \p{Block=Syriac}) (77)
  3290. \p{Syriac} \p{Script=Syriac} (Short: \p{Syrc}; NOT
  3291. \p{Block=Syriac}) (77)
  3292. \p{Tagalog} \p{Script=Tagalog} (Short: \p{Tglg}; NOT
  3293. \p{Block=Tagalog}) (20)
  3294. \p{Tagb} \p{Tagbanwa} (= \p{Script=Tagbanwa}) (NOT
  3295. \p{Block=Tagbanwa}) (18)
  3296. \p{Tagbanwa} \p{Script=Tagbanwa} (Short: \p{Tagb}; NOT
  3297. \p{Block=Tagbanwa}) (18)
  3298. X \p{Tags} \p{Block=Tags} (128)
  3299. \p{Tai_Le} \p{Script=Tai_Le} (Short: \p{Tale}; NOT
  3300. \p{Block=Tai_Le}) (35)
  3301. \p{Tai_Tham} \p{Script=Tai_Tham} (Short: \p{Lana}; NOT
  3302. \p{Block=Tai_Tham}) (127)
  3303. \p{Tai_Viet} \p{Script=Tai_Viet} (Short: \p{Tavt}; NOT
  3304. \p{Block=Tai_Viet}) (72)
  3305. X \p{Tai_Xuan_Jing} \p{Tai_Xuan_Jing_Symbols} (= \p{Block=
  3306. Tai_Xuan_Jing_Symbols}) (96)
  3307. X \p{Tai_Xuan_Jing_Symbols} \p{Block=Tai_Xuan_Jing_Symbols} (Short:
  3308. \p{InTaiXuanJing}) (96)
  3309. \p{Takr} \p{Takri} (= \p{Script=Takri}) (NOT
  3310. \p{Block=Takri}) (66)
  3311. \p{Takri} \p{Script=Takri} (Short: \p{Takr}; NOT
  3312. \p{Block=Takri}) (66)
  3313. \p{Tale} \p{Tai_Le} (= \p{Script=Tai_Le}) (NOT
  3314. \p{Block=Tai_Le}) (35)
  3315. \p{Talu} \p{New_Tai_Lue} (= \p{Script=New_Tai_Lue})
  3316. (NOT \p{Block=New_Tai_Lue}) (83)
  3317. \p{Tamil} \p{Script=Tamil} (Short: \p{Taml}; NOT
  3318. \p{Block=Tamil}) (72)
  3319. \p{Taml} \p{Tamil} (= \p{Script=Tamil}) (NOT
  3320. \p{Block=Tamil}) (72)
  3321. \p{Tavt} \p{Tai_Viet} (= \p{Script=Tai_Viet}) (NOT
  3322. \p{Block=Tai_Viet}) (72)
  3323. \p{Telu} \p{Telugu} (= \p{Script=Telugu}) (NOT
  3324. \p{Block=Telugu}) (93)
  3325. \p{Telugu} \p{Script=Telugu} (Short: \p{Telu}; NOT
  3326. \p{Block=Telugu}) (93)
  3327. \p{Term} \p{Terminal_Punctuation} (=
  3328. \p{Terminal_Punctuation=Y}) (176)
  3329. \p{Term: *} \p{Terminal_Punctuation: *}
  3330. \p{Terminal_Punctuation} \p{Terminal_Punctuation=Y} (Short:
  3331. \p{Term}) (176)
  3332. \p{Terminal_Punctuation: N*} (Short: \p{Term=N}, \P{Term})
  3333. (1_113_936)
  3334. \p{Terminal_Punctuation: Y*} (Short: \p{Term=Y}, \p{Term}) (176)
  3335. \p{Tfng} \p{Tifinagh} (= \p{Script=Tifinagh}) (NOT
  3336. \p{Block=Tifinagh}) (59)
  3337. \p{Tglg} \p{Tagalog} (= \p{Script=Tagalog}) (NOT
  3338. \p{Block=Tagalog}) (20)
  3339. \p{Thaa} \p{Thaana} (= \p{Script=Thaana}) (NOT
  3340. \p{Block=Thaana}) (50)
  3341. \p{Thaana} \p{Script=Thaana} (Short: \p{Thaa}; NOT
  3342. \p{Block=Thaana}) (50)
  3343. \p{Thai} \p{Script=Thai} (NOT \p{Block=Thai}) (86)
  3344. \p{Tibetan} \p{Script=Tibetan} (Short: \p{Tibt}; NOT
  3345. \p{Block=Tibetan}) (207)
  3346. \p{Tibt} \p{Tibetan} (= \p{Script=Tibetan}) (NOT
  3347. \p{Block=Tibetan}) (207)
  3348. \p{Tifinagh} \p{Script=Tifinagh} (Short: \p{Tfng}; NOT
  3349. \p{Block=Tifinagh}) (59)
  3350. \p{Title} \p{Titlecase} (/i= Cased=Yes) (31)
  3351. \p{Titlecase} (= \p{Gc=Lt}) (Short: \p{Title}; /i=
  3352. Cased=Yes) (31)
  3353. \p{Titlecase_Letter} \p{General_Category=Titlecase_Letter}
  3354. (Short: \p{Lt}; /i= General_Category=
  3355. Cased_Letter) (31)
  3356. X \p{Transport_And_Map} \p{Transport_And_Map_Symbols} (= \p{Block=
  3357. Transport_And_Map_Symbols}) (128)
  3358. X \p{Transport_And_Map_Symbols} \p{Block=Transport_And_Map_Symbols}
  3359. (Short: \p{InTransportAndMap}) (128)
  3360. X \p{UCAS} \p{Unified_Canadian_Aboriginal_Syllabics}
  3361. (= \p{Block=
  3362. Unified_Canadian_Aboriginal_Syllabics})
  3363. (640)
  3364. X \p{UCAS_Ext} \p{Unified_Canadian_Aboriginal_Syllabics_-
  3365. Extended} (= \p{Block=
  3366. Unified_Canadian_Aboriginal_Syllabics_-
  3367. Extended}) (80)
  3368. \p{Ugar} \p{Ugaritic} (= \p{Script=Ugaritic}) (NOT
  3369. \p{Block=Ugaritic}) (31)
  3370. \p{Ugaritic} \p{Script=Ugaritic} (Short: \p{Ugar}; NOT
  3371. \p{Block=Ugaritic}) (31)
  3372. \p{UIdeo} \p{Unified_Ideograph} (=
  3373. \p{Unified_Ideograph=Y}) (74_617)
  3374. \p{UIdeo: *} \p{Unified_Ideograph: *}
  3375. \p{Unassigned} \p{General_Category=Unassigned} (Short:
  3376. \p{Cn}) (864_415)
  3377. X \p{Unified_Canadian_Aboriginal_Syllabics} \p{Block=
  3378. Unified_Canadian_Aboriginal_Syllabics}
  3379. (Short: \p{InUCAS}) (640)
  3380. X \p{Unified_Canadian_Aboriginal_Syllabics_Extended} \p{Block=
  3381. Unified_Canadian_Aboriginal_Syllabics_-
  3382. Extended} (Short: \p{InUCASExt}) (80)
  3383. \p{Unified_Ideograph} \p{Unified_Ideograph=Y} (Short: \p{UIdeo})
  3384. (74_617)
  3385. \p{Unified_Ideograph: N*} (Short: \p{UIdeo=N}, \P{UIdeo})
  3386. (1_039_495)
  3387. \p{Unified_Ideograph: Y*} (Short: \p{UIdeo=Y}, \p{UIdeo}) (74_617)
  3388. \p{Unknown} \p{Script=Unknown} (Short: \p{Zzzz})
  3389. (1_003_931)
  3390. \p{Upper} \p{Uppercase=Y} (/i= Cased=Yes) (1483)
  3391. \p{Upper: *} \p{Uppercase: *}
  3392. \p{Uppercase} \p{Upper} (= \p{Uppercase=Y}) (/i= Cased=
  3393. Yes) (1483)
  3394. \p{Uppercase: N*} (Short: \p{Upper=N}, \P{Upper}; /i= Cased=
  3395. No) (1_112_629)
  3396. \p{Uppercase: Y*} (Short: \p{Upper=Y}, \p{Upper}; /i= Cased=
  3397. Yes) (1483)
  3398. \p{Uppercase_Letter} \p{General_Category=Uppercase_Letter}
  3399. (Short: \p{Lu}; /i= General_Category=
  3400. Cased_Letter) (1441)
  3401. \p{Vai} \p{Script=Vai} (NOT \p{Block=Vai}) (300)
  3402. \p{Vaii} \p{Vai} (= \p{Script=Vai}) (NOT \p{Block=
  3403. Vai}) (300)
  3404. \p{Variation_Selector} \p{Variation_Selector=Y} (Short: \p{VS};
  3405. NOT \p{Variation_Selectors}) (259)
  3406. \p{Variation_Selector: N*} (Short: \p{VS=N}, \P{VS}) (1_113_853)
  3407. \p{Variation_Selector: Y*} (Short: \p{VS=Y}, \p{VS}) (259)
  3408. X \p{Variation_Selectors} \p{Block=Variation_Selectors} (Short:
  3409. \p{InVS}) (16)
  3410. X \p{Variation_Selectors_Supplement} \p{Block=
  3411. Variation_Selectors_Supplement} (Short:
  3412. \p{InVSSup}) (240)
  3413. X \p{Vedic_Ext} \p{Vedic_Extensions} (= \p{Block=
  3414. Vedic_Extensions}) (48)
  3415. X \p{Vedic_Extensions} \p{Block=Vedic_Extensions} (Short:
  3416. \p{InVedicExt}) (48)
  3417. X \p{Vertical_Forms} \p{Block=Vertical_Forms} (16)
  3418. \p{VertSpace} \v (7)
  3419. \p{VS} \p{Variation_Selector} (=
  3420. \p{Variation_Selector=Y}) (NOT
  3421. \p{Variation_Selectors}) (259)
  3422. \p{VS: *} \p{Variation_Selector: *}
  3423. X \p{VS_Sup} \p{Variation_Selectors_Supplement} (=
  3424. \p{Block=
  3425. Variation_Selectors_Supplement}) (240)
  3426. \p{WB: *} \p{Word_Break: *}
  3427. \p{White_Space} \p{White_Space=Y} (Short: \p{WSpace}) (26)
  3428. \p{White_Space: N*} (Short: \p{Space=N}, \P{WSpace})
  3429. (1_114_086)
  3430. \p{White_Space: Y*} (Short: \p{Space=Y}, \p{WSpace}) (26)
  3431. \p{Word} \w, including beyond ASCII; = \p{Alnum} +
  3432. \pM + \p{Pc} (103_404)
  3433. \p{Word_Break: ALetter} (Short: \p{WB=LE}) (24_941)
  3434. \p{Word_Break: CR} (Short: \p{WB=CR}) (1)
  3435. \p{Word_Break: EX} \p{Word_Break=ExtendNumLet} (10)
  3436. \p{Word_Break: Extend} (Short: \p{WB=Extend}) (1649)
  3437. \p{Word_Break: ExtendNumLet} (Short: \p{WB=EX}) (10)
  3438. \p{Word_Break: FO} \p{Word_Break=Format} (136)
  3439. \p{Word_Break: Format} (Short: \p{WB=FO}) (136)
  3440. \p{Word_Break: KA} \p{Word_Break=Katakana} (310)
  3441. \p{Word_Break: Katakana} (Short: \p{WB=KA}) (310)
  3442. \p{Word_Break: LE} \p{Word_Break=ALetter} (24_941)
  3443. \p{Word_Break: LF} (Short: \p{WB=LF}) (1)
  3444. \p{Word_Break: MB} \p{Word_Break=MidNumLet} (8)
  3445. \p{Word_Break: MidLetter} (Short: \p{WB=ML}) (8)
  3446. \p{Word_Break: MidNum} (Short: \p{WB=MN}) (15)
  3447. \p{Word_Break: MidNumLet} (Short: \p{WB=MB}) (8)
  3448. \p{Word_Break: ML} \p{Word_Break=MidLetter} (8)
  3449. \p{Word_Break: MN} \p{Word_Break=MidNum} (15)
  3450. \p{Word_Break: Newline} (Short: \p{WB=NL}) (5)
  3451. \p{Word_Break: NL} \p{Word_Break=Newline} (5)
  3452. \p{Word_Break: NU} \p{Word_Break=Numeric} (451)
  3453. \p{Word_Break: Numeric} (Short: \p{WB=NU}) (451)
  3454. \p{Word_Break: Other} (Short: \p{WB=XX}) (1_086_577)
  3455. \p{Word_Break: XX} \p{Word_Break=Other} (1_086_577)
  3456. \p{WSpace} \p{White_Space} (= \p{White_Space=Y}) (26)
  3457. \p{WSpace: *} \p{White_Space: *}
  3458. \p{XDigit} \p{Hex_Digit=Y} (Short: \p{Hex}) (44)
  3459. \p{XID_Continue} \p{XID_Continue=Y} (Short: \p{XIDC})
  3460. (103_336)
  3461. \p{XID_Continue: N*} (Short: \p{XIDC=N}, \P{XIDC}) (1_010_776)
  3462. \p{XID_Continue: Y*} (Short: \p{XIDC=Y}, \p{XIDC}) (103_336)
  3463. \p{XID_Start} \p{XID_Start=Y} (Short: \p{XIDS}) (101_217)
  3464. \p{XID_Start: N*} (Short: \p{XIDS=N}, \P{XIDS}) (1_012_895)
  3465. \p{XID_Start: Y*} (Short: \p{XIDS=Y}, \p{XIDS}) (101_217)
  3466. \p{XIDC} \p{XID_Continue} (= \p{XID_Continue=Y})
  3467. (103_336)
  3468. \p{XIDC: *} \p{XID_Continue: *}
  3469. \p{XIDS} \p{XID_Start} (= \p{XID_Start=Y}) (101_217)
  3470. \p{XIDS: *} \p{XID_Start: *}
  3471. \p{Xpeo} \p{Old_Persian} (= \p{Script=Old_Persian})
  3472. (NOT \p{Block=Old_Persian}) (50)
  3473. \p{XPerlSpace} \s, including beyond ASCII (Short:
  3474. \p{SpacePerl}) (25)
  3475. \p{XPosixAlnum} \p{Alnum} (102_619)
  3476. \p{XPosixAlpha} \p{Alpha} (= \p{Alphabetic=Y}) (102_159)
  3477. \p{XPosixBlank} \p{Blank} (19)
  3478. \p{XPosixCntrl} \p{Cntrl} (= \p{General_Category=Control})
  3479. (65)
  3480. \p{XPosixDigit} \p{Digit} (= \p{General_Category=
  3481. Decimal_Number}) (460)
  3482. \p{XPosixGraph} \p{Graph} (247_564)
  3483. \p{XPosixLower} \p{Lower} (= \p{Lowercase=Y}) (/i= Cased=
  3484. Yes) (1934)
  3485. \p{XPosixPrint} \p{Print} (247_582)
  3486. \p{XPosixPunct} \p{Punct} + ASCII-range \p{Symbol} (641)
  3487. \p{XPosixSpace} \p{Space} (= \p{White_Space=Y}) (26)
  3488. \p{XPosixUpper} \p{Upper} (= \p{Uppercase=Y}) (/i= Cased=
  3489. Yes) (1483)
  3490. \p{XPosixWord} \p{Word} (103_404)
  3491. \p{XPosixXDigit} \p{XDigit} (= \p{Hex_Digit=Y}) (44)
  3492. \p{Xsux} \p{Cuneiform} (= \p{Script=Cuneiform})
  3493. (NOT \p{Block=Cuneiform}) (982)
  3494. \p{Yi} \p{Script=Yi} (1220)
  3495. X \p{Yi_Radicals} \p{Block=Yi_Radicals} (64)
  3496. X \p{Yi_Syllables} \p{Block=Yi_Syllables} (1168)
  3497. \p{Yiii} \p{Yi} (= \p{Script=Yi}) (1220)
  3498. X \p{Yijing} \p{Yijing_Hexagram_Symbols} (= \p{Block=
  3499. Yijing_Hexagram_Symbols}) (64)
  3500. X \p{Yijing_Hexagram_Symbols} \p{Block=Yijing_Hexagram_Symbols}
  3501. (Short: \p{InYijing}) (64)
  3502. \p{Z} \p{Separator} (= \p{General_Category=
  3503. Separator}) (20)
  3504. \p{Zinh} \p{Inherited} (= \p{Script=Inherited})
  3505. (524)
  3506. \p{Zl} \p{Line_Separator} (= \p{General_Category=
  3507. Line_Separator}) (1)
  3508. \p{Zp} \p{Paragraph_Separator} (=
  3509. \p{General_Category=
  3510. Paragraph_Separator}) (1)
  3511. \p{Zs} \p{Space_Separator} (=
  3512. \p{General_Category=Space_Separator})
  3513. (18)
  3514. \p{Zyyy} \p{Common} (= \p{Script=Common}) (6412)
  3515. \p{Zzzz} \p{Unknown} (= \p{Script=Unknown})
  3516. (1_003_931)
  3517. TX\p{_CanonDCIJ} (For internal use by Perl, not necessarily
  3518. stable) (= \p{Soft_Dotted=Y}) (46)
  3519. TX\p{_Case_Ignorable} (For internal use by Perl, not necessarily
  3520. stable) (= \p{Case_Ignorable=Y}) (1799)
  3521. TX\p{_CombAbove} (For internal use by Perl, not necessarily
  3522. stable) (= \p{Canonical_Combining_Class=
  3523. Above}) (349)

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:

  • \p{Canonical_Combining_Class=Attached_Below_Left}
  • \p{Grapheme_Cluster_Break=Prepend}
  • \p{Joining_Type=Left_Joining}

Properties accessible through Unicode::UCD

All the Unicode character properties mentioned above (except for those marked as for internal use by Perl) are also accessible by prop_invlist() in Unicode::UCD.

Due to their nature, not all Unicode character properties are suitable for regular expression matches, nor prop_invlist() . The remaining non-provisional, non-internal ones are accessible via prop_invmap() in Unicode::UCD (except for those that this Perl installation hasn't included; see below for which those are).

For compatibility with other parts of Perl, all the single forms given in the table in the section above are recognized. BUT, 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 prop_invmap() 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 \p{sc} being a single-form equivalent of \p{gc=sc} , which is treated by prop_invmap() as the Script property, whose short name is sc . The table indicates the current ambiguities in the INFO column, beginning with the word "NOT" .

The standard Unicode properties listed below are documented in http://www.unicode.org/reports/tr44/; Perl_Decimal_Digit is documented in prop_invmap() in Unicode::UCD. The other Perl extensions are in Other Properties in perlunicode;

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. If a property is obsolete, etc, the entry will be flagged with the same characters used in the table in the section above, like D or S.

  1. NAME INFO
  2. Age
  3. AHex ASCII_Hex_Digit
  4. All Any. (Perl extension)
  5. Alnum (Perl extension). Alphabetic and
  6. (decimal) Numeric
  7. Alpha Alphabetic
  8. Alphabetic (Short: Alpha)
  9. Any (Perl extension). [\x{0000}-\x{10FFFF}]
  10. ASCII Block=ASCII. (Perl extension).
  11. [[:ASCII:]]
  12. ASCII_Hex_Digit (Short: AHex)
  13. Assigned (Perl extension). All assigned code points
  14. Bc Bidi_Class
  15. Bidi_C Bidi_Control
  16. Bidi_Class (Short: bc)
  17. Bidi_Control (Short: Bidi_C)
  18. Bidi_M Bidi_Mirrored
  19. Bidi_Mirrored (Short: Bidi_M)
  20. Bidi_Mirroring_Glyph (Short: bmg)
  21. Blank (Perl extension). \h, Horizontal white
  22. space
  23. Blk Block
  24. Block (Short: blk)
  25. Bmg Bidi_Mirroring_Glyph
  26. Canonical_Combining_Class (Short: ccc)
  27. Case_Folding (Short: cf)
  28. Case_Ignorable (Short: CI)
  29. Cased
  30. Category General_Category
  31. Ccc Canonical_Combining_Class
  32. CE Composition_Exclusion
  33. Cf Case_Folding; NOT 'cf' meaning
  34. 'General_Category=Format'
  35. Changes_When_Casefolded (Short: CWCF)
  36. Changes_When_Casemapped (Short: CWCM)
  37. Changes_When_Lowercased (Short: CWL)
  38. Changes_When_NFKC_Casefolded (Short: CWKCF)
  39. Changes_When_Titlecased (Short: CWT)
  40. Changes_When_Uppercased (Short: CWU)
  41. CI Case_Ignorable
  42. Cntrl General_Category=Cntrl. (Perl extension).
  43. Control characters
  44. Comp_Ex Full_Composition_Exclusion
  45. Composition_Exclusion (Short: CE)
  46. CWCF Changes_When_Casefolded
  47. CWCM Changes_When_Casemapped
  48. CWKCF Changes_When_NFKC_Casefolded
  49. CWL Changes_When_Lowercased
  50. CWT Changes_When_Titlecased
  51. CWU Changes_When_Uppercased
  52. Dash
  53. Decomposition_Mapping (Short: dm)
  54. Decomposition_Type (Short: dt)
  55. Default_Ignorable_Code_Point (Short: DI)
  56. Dep Deprecated
  57. Deprecated (Short: Dep)
  58. DI Default_Ignorable_Code_Point
  59. Dia Diacritic
  60. Diacritic (Short: Dia)
  61. Digit General_Category=Digit. (Perl extension).
  62. [0-9] + all other decimal digits
  63. Dm Decomposition_Mapping
  64. Dt Decomposition_Type
  65. Ea East_Asian_Width
  66. East_Asian_Width (Short: ea)
  67. Ext Extender
  68. Extender (Short: Ext)
  69. Full_Composition_Exclusion (Short: Comp_Ex)
  70. Gc General_Category
  71. GCB Grapheme_Cluster_Break
  72. General_Category (Short: gc)
  73. Gr_Base Grapheme_Base
  74. Gr_Ext Grapheme_Extend
  75. Graph (Perl extension). Characters that are
  76. graphical
  77. Grapheme_Base (Short: Gr_Base)
  78. Grapheme_Cluster_Break (Short: GCB)
  79. Grapheme_Extend (Short: Gr_Ext)
  80. Hangul_Syllable_Type (Short: hst)
  81. Hex Hex_Digit
  82. Hex_Digit (Short: Hex)
  83. HorizSpace Blank. (Perl extension)
  84. Hst Hangul_Syllable_Type
  85. D Hyphen Supplanted by Line_Break property values;
  86. see www.unicode.org/reports/tr14
  87. ID_Continue (Short: IDC)
  88. ID_Start (Short: IDS)
  89. IDC ID_Continue
  90. Ideo Ideographic
  91. Ideographic (Short: Ideo)
  92. IDS ID_Start
  93. IDS_Binary_Operator (Short: IDSB)
  94. IDS_Trinary_Operator (Short: IDST)
  95. IDSB IDS_Binary_Operator
  96. IDST IDS_Trinary_Operator
  97. In Present_In. (Perl extension)
  98. Isc ISO_Comment; NOT 'isc' meaning
  99. 'General_Category=Other'
  100. ISO_Comment (Short: isc)
  101. Jg Joining_Group
  102. Join_C Join_Control
  103. Join_Control (Short: Join_C)
  104. Joining_Group (Short: jg)
  105. Joining_Type (Short: jt)
  106. Jt Joining_Type
  107. Lb Line_Break
  108. Lc Lowercase_Mapping; NOT 'lc' meaning
  109. 'General_Category=Cased_Letter'
  110. Line_Break (Short: lb)
  111. LOE Logical_Order_Exception
  112. Logical_Order_Exception (Short: LOE)
  113. Lower Lowercase
  114. Lowercase (Short: Lower)
  115. Lowercase_Mapping (Short: lc)
  116. Math
  117. Na Name
  118. Na1 Unicode_1_Name
  119. Name (Short: na)
  120. Name_Alias
  121. NChar Noncharacter_Code_Point
  122. NFC_QC NFC_Quick_Check
  123. NFC_Quick_Check (Short: NFC_QC)
  124. NFD_QC NFD_Quick_Check
  125. NFD_Quick_Check (Short: NFD_QC)
  126. NFKC_Casefold (Short: NFKC_CF)
  127. NFKC_CF NFKC_Casefold
  128. NFKC_QC NFKC_Quick_Check
  129. NFKC_Quick_Check (Short: NFKC_QC)
  130. NFKD_QC NFKD_Quick_Check
  131. NFKD_Quick_Check (Short: NFKD_QC)
  132. Noncharacter_Code_Point (Short: NChar)
  133. Nt Numeric_Type
  134. Numeric_Type (Short: nt)
  135. Numeric_Value (Short: nv)
  136. Nv Numeric_Value
  137. Pat_Syn Pattern_Syntax
  138. Pat_WS Pattern_White_Space
  139. Pattern_Syntax (Short: Pat_Syn)
  140. Pattern_White_Space (Short: Pat_WS)
  141. Perl_Decimal_Digit (Perl extension)
  142. PerlSpace (Perl extension). \s, restricted to ASCII
  143. = [ \f\n\r\t]
  144. PerlWord (Perl extension). \w, restricted to ASCII
  145. = [A-Za-z0-9_]
  146. PosixAlnum (Perl extension). [A-Za-z0-9]
  147. PosixAlpha (Perl extension). [A-Za-z]
  148. PosixBlank (Perl extension). \t and ' '
  149. PosixCntrl (Perl extension). ASCII control
  150. characters: NUL, SOH, STX, ETX, EOT, ENQ,
  151. ACK, BEL, BS, HT, LF, VT, FF, CR, SO, SI,
  152. DLE, DC1, DC2, DC3, DC4, NAK, SYN, ETB,
  153. CAN, EOM, SUB, ESC, FS, GS, RS, US, and DEL
  154. PosixDigit (Perl extension). [0-9]
  155. PosixGraph (Perl extension). [-
  156. !"#$%&'()*+,./:;<>?@[\\]^_`{|}~0-9A-Za-z]
  157. PosixLower (Perl extension). [a-z]
  158. PosixPrint (Perl extension). [- 0-9A-Za-
  159. z!"#$%&'()*+,./:;<>?@[\\]^_`{|}~]
  160. PosixPunct (Perl extension). [-
  161. !"#$%&'()*+,./:;<>?@[\\]^_`{|}~]
  162. PosixSpace (Perl extension). \t, \n, \cK, \f, \r,
  163. and ' '. (\cK is vertical tab)
  164. PosixUpper (Perl extension). [A-Z]
  165. PosixWord PerlWord. (Perl extension)
  166. PosixXDigit (Perl extension). [0-9A-Fa-f]
  167. Present_In (Short: In). (Perl extension)
  168. Print (Perl extension). Characters that are
  169. graphical plus space characters (but no
  170. controls)
  171. Punct General_Category=Punct. (Perl extension)
  172. QMark Quotation_Mark
  173. Quotation_Mark (Short: QMark)
  174. Radical
  175. SB Sentence_Break
  176. Sc Script; NOT 'sc' meaning
  177. 'General_Category=Currency_Symbol'
  178. Scf Simple_Case_Folding
  179. Script (Short: sc)
  180. Script_Extensions (Short: scx)
  181. Scx Script_Extensions
  182. SD Soft_Dotted
  183. Sentence_Break (Short: SB)
  184. Sfc Simple_Case_Folding
  185. Simple_Case_Folding (Short: scf)
  186. Simple_Lowercase_Mapping (Short: slc)
  187. Simple_Titlecase_Mapping (Short: stc)
  188. Simple_Uppercase_Mapping (Short: suc)
  189. Slc Simple_Lowercase_Mapping
  190. Soft_Dotted (Short: SD)
  191. Space White_Space
  192. SpacePerl XPerlSpace. (Perl extension)
  193. Stc Simple_Titlecase_Mapping
  194. STerm
  195. Suc Simple_Uppercase_Mapping
  196. Tc Titlecase_Mapping
  197. Term Terminal_Punctuation
  198. Terminal_Punctuation (Short: Term)
  199. Title Titlecase. (Perl extension)
  200. Titlecase (Short: Title). (Perl extension). (=
  201. \p{Gc=Lt})
  202. Titlecase_Mapping (Short: tc)
  203. Uc Uppercase_Mapping
  204. UIdeo Unified_Ideograph
  205. Unicode_1_Name (Short: na1)
  206. Unified_Ideograph (Short: UIdeo)
  207. Upper Uppercase
  208. Uppercase (Short: Upper)
  209. Uppercase_Mapping (Short: uc)
  210. Variation_Selector (Short: VS)
  211. VertSpace (Perl extension). \v
  212. VS Variation_Selector
  213. WB Word_Break
  214. White_Space (Short: WSpace)
  215. Word (Perl extension). \w, including beyond
  216. ASCII; = \p{Alnum} + \pM + \p{Pc}
  217. Word_Break (Short: WB)
  218. WSpace White_Space
  219. XDigit (Perl extension)
  220. XID_Continue (Short: XIDC)
  221. XID_Start (Short: XIDS)
  222. XIDC XID_Continue
  223. XIDS XID_Start
  224. XPerlSpace (Perl extension). \s, including beyond
  225. ASCII
  226. XPosixAlnum Alnum. (Perl extension)
  227. XPosixAlpha Alpha. (Perl extension)
  228. XPosixBlank Blank. (Perl extension)
  229. XPosixCntrl General_Category=Cntrl. (Perl extension)
  230. XPosixDigit General_Category=Digit. (Perl extension)
  231. XPosixGraph Graph. (Perl extension)
  232. XPosixLower Lower. (Perl extension)
  233. XPosixPrint Print. (Perl extension)
  234. XPosixPunct (Perl extension). \p{Punct} + ASCII-range
  235. \p{Symbol}
  236. XPosixSpace Space. (Perl extension)
  237. XPosixUpper Upper. (Perl extension)
  238. XPosixWord Word. (Perl extension)
  239. XPosixXDigit XDigit. (Perl extension)

Properties accessible through other means

Certain properties are accessible also via core function calls. These are:

  1. Lowercase_Mapping lc() and lcfirst()
  2. Titlecase_Mapping ucfirst()
  3. Uppercase_Mapping uc()

Also, Case_Folding is accessible through the /i modifier in regular expressions, the \F transliteration escape, and the fc operator.

And, the Name and Name_Aliases properties are accessible through the \N{} interpolation in double-quoted strings and regular expressions; and functions charnames::viacode() , charnames::vianame() , and charnames::string_vianame() (which require a use charnames (); to be specified.

Finally, most properties related to decomposition are accessible via Unicode::Normalize.

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.

  • Expands_On_NFC (XO_NFC)
  • Expands_On_NFD (XO_NFD)
  • Expands_On_NFKC (XO_NFKC)
  • Expands_On_NFKD (XO_NFKD)

    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 UTF-8 encoded character may expand to a different number of bytes than a UTF-32 encoded character.

  • Grapheme_Link (Gr_Link)

    Deprecated by Unicode: Duplicates ccc=vr (Canonical_Combining_Class=Virama)

  • Indic_Matra_Category (InMC)
  • Indic_Syllabic_Category (InSC)

    Provisional

  • Jamo_Short_Name (JSN)
  • Other_Alphabetic (OAlpha)
  • Other_Default_Ignorable_Code_Point (ODI)
  • Other_Grapheme_Extend (OGr_Ext)
  • Other_ID_Continue (OIDC)
  • Other_ID_Start (OIDS)
  • Other_Lowercase (OLower)
  • Other_Math (OMath)
  • Other_Uppercase (OUpper)

    Used by Unicode internally for generating other properties and not intended to be used stand-alone

  • Script=Katakana_Or_Hiragana (sc=Hrkt)

    Obsolete. All code points previously matched by this have been moved to "Script=Common". Consider instead using "Script_Extensions=Katakana" or "Script_Extensions=Hiragana (or both)"

  • Script_Extensions=Katakana_Or_Hiragana (scx=Hrkt)

    All code points that would be matched by this are matched by either "Script_Extensions=Katakana" or "Script_Extensions=Hiragana"

An installation can choose to allow any of these to be matched by downloading the Unicode database from http://www.unicode.org/Public/ to $Config{privlib} /unicore/ in the Perl source tree, changing the controlling lists contained in the program $Config{privlib} /unicore/mktables and then re-compiling and installing. (%Config is available from the Config module).

Other information in the Unicode data base

The Unicode data base is delivered in two different formats. The XML 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.

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 \N{...} double-quotish construct, charnames::string_vianame(name) in charnames, and namedseq() in Unicode::UCD.

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.

  • auxiliary/GraphemeBreakTest.html
  • auxiliary/LineBreakTest.html
  • auxiliary/SentenceBreakTest.html
  • auxiliary/WordBreakTest.html

    Documentation of validation tests

  • auxiliary/LBTest.txt
  • auxiliary/SBTest.txt
  • auxiliary/WBTest.txt
  • BidiTest.txt
  • NormalizationTest.txt

    Validation Tests

  • CJKRadicals.txt

    Maps the kRSUnicode property values to corresponding code points

  • EmojiSources.txt

    Maps certain Unicode code points to their legacy Japanese cell-phone values

  • Index.txt

    Alphabetical index of Unicode characters

  • IndicMatraCategory.txt
  • IndicSyllabicCategory.txt

    Provisional; for the analysis and processing of Indic scripts

  • 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 NamedSequences.txt and recompile perl

  • NamesList.txt

    Annotated list of characters

  • NormalizationCorrections.txt

    Documentation of corrections already incorporated into the Unicode data base

  • Props.txt

    Only in very early releases; is a subset of PropList.txt (which is used instead)

  • ReadMe.txt

    Documentation

  • 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 http://www.unicode.org/ivd

SEE ALSO

http://www.unicode.org/reports/tr44/

perlrecharclass

perlunicode