twitter_cldr 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (303) hide show
  1. data/NOTICE +95 -1
  2. data/README.md +4 -4
  3. data/Rakefile +18 -28
  4. data/lib/ext/calendars/date.rb +3 -0
  5. data/lib/ext/calendars/datetime.rb +3 -0
  6. data/lib/ext/calendars/time.rb +3 -0
  7. data/lib/ext/localized_object.rb +3 -0
  8. data/lib/ext/numbers/bignum.rb +3 -0
  9. data/lib/ext/numbers/fixnum.rb +3 -0
  10. data/lib/ext/numbers/float.rb +3 -0
  11. data/lib/ext/numbers/localized_number.rb +3 -0
  12. data/lib/ext/strings/string.rb +31 -0
  13. data/lib/ext/strings/symbol.rb +3 -0
  14. data/lib/formatters/base.rb +3 -0
  15. data/lib/formatters/calendars/date_formatter.rb +3 -0
  16. data/lib/formatters/calendars/datetime_formatter.rb +3 -0
  17. data/lib/formatters/calendars/time_formatter.rb +3 -0
  18. data/lib/formatters/numbers/currency_formatter.rb +3 -0
  19. data/lib/formatters/numbers/decimal_formatter.rb +3 -0
  20. data/lib/formatters/numbers/helpers/base.rb +3 -0
  21. data/lib/formatters/numbers/helpers/fraction.rb +3 -0
  22. data/lib/formatters/numbers/helpers/integer.rb +3 -0
  23. data/lib/formatters/numbers/number_formatter.rb +3 -0
  24. data/lib/formatters/numbers/percent_formatter.rb +3 -0
  25. data/lib/formatters/plurals/plural_formatter.rb +141 -0
  26. data/lib/formatters/plurals/rules.rb +4 -1
  27. data/lib/normalizers/base.rb +17 -0
  28. data/lib/normalizers/canonical/nfd.rb +81 -0
  29. data/lib/shared/currencies.rb +4 -1
  30. data/lib/shared/languages.rb +4 -1
  31. data/lib/shared/resources.rb +8 -28
  32. data/lib/shared/timezones.rb +3 -0
  33. data/lib/shared/unicode_data.rb +44 -0
  34. data/lib/tokenizers/base.rb +3 -0
  35. data/lib/tokenizers/calendars/date_tokenizer.rb +3 -0
  36. data/lib/tokenizers/calendars/datetime_tokenizer.rb +4 -1
  37. data/lib/tokenizers/calendars/time_tokenizer.rb +3 -0
  38. data/lib/tokenizers/key_path.rb +3 -0
  39. data/lib/tokenizers/numbers/number_tokenizer.rb +4 -1
  40. data/lib/tokenizers/token.rb +3 -0
  41. data/lib/twitter_cldr.rb +52 -29
  42. data/lib/utils/interpolation.rb +105 -0
  43. data/lib/utils.rb +28 -0
  44. data/lib/version.rb +6 -1
  45. data/resources/unicode_data/aegean_numbers.yml +913 -0
  46. data/resources/unicode_data/alchemical_symbols.yml +1857 -0
  47. data/resources/unicode_data/alphabetic_presentation_forms.yml +929 -0
  48. data/resources/unicode_data/ancient_greek_musical_notation.yml +1121 -0
  49. data/resources/unicode_data/ancient_greek_numbers.yml +1201 -0
  50. data/resources/unicode_data/ancient_symbols.yml +193 -0
  51. data/resources/unicode_data/arabic.yml +4049 -0
  52. data/resources/unicode_data/arabic_extended_a.yml +625 -0
  53. data/resources/unicode_data/arabic_mathematical_alphabetic_symbols.yml +2289 -0
  54. data/resources/unicode_data/arabic_presentation_forms_a.yml +9777 -0
  55. data/resources/unicode_data/arabic_presentation_forms_b.yml +2257 -0
  56. data/resources/unicode_data/arabic_supplement.yml +769 -0
  57. data/resources/unicode_data/armenian.yml +1393 -0
  58. data/resources/unicode_data/arrows.yml +1793 -0
  59. data/resources/unicode_data/avestan.yml +977 -0
  60. data/resources/unicode_data/balinese.yml +1937 -0
  61. data/resources/unicode_data/bamum.yml +1409 -0
  62. data/resources/unicode_data/bamum_supplement.yml +9105 -0
  63. data/resources/unicode_data/basic_latin.yml +2049 -0
  64. data/resources/unicode_data/batak.yml +897 -0
  65. data/resources/unicode_data/bengali.yml +1473 -0
  66. data/resources/unicode_data/block_elements.yml +513 -0
  67. data/resources/unicode_data/blocks.yml +881 -0
  68. data/resources/unicode_data/bopomofo.yml +657 -0
  69. data/resources/unicode_data/bopomofo_extended.yml +433 -0
  70. data/resources/unicode_data/box_drawing.yml +2049 -0
  71. data/resources/unicode_data/brahmi.yml +1729 -0
  72. data/resources/unicode_data/braille_patterns.yml +4097 -0
  73. data/resources/unicode_data/buginese.yml +481 -0
  74. data/resources/unicode_data/buhid.yml +321 -0
  75. data/resources/unicode_data/byzantine_musical_symbols.yml +3937 -0
  76. data/resources/unicode_data/carian.yml +785 -0
  77. data/resources/unicode_data/chakma.yml +1073 -0
  78. data/resources/unicode_data/cham.yml +1329 -0
  79. data/resources/unicode_data/cherokee.yml +1361 -0
  80. data/resources/unicode_data/cjk_compatibility.yml +4097 -0
  81. data/resources/unicode_data/cjk_compatibility_forms.yml +513 -0
  82. data/resources/unicode_data/cjk_compatibility_ideographs.yml +7553 -0
  83. data/resources/unicode_data/cjk_compatibility_ideographs_supplement.yml +8673 -0
  84. data/resources/unicode_data/cjk_radicals_supplement.yml +1841 -0
  85. data/resources/unicode_data/cjk_strokes.yml +577 -0
  86. data/resources/unicode_data/cjk_symbols_and_punctuation.yml +1025 -0
  87. data/resources/unicode_data/cjk_unified_ideographs.yml +33 -0
  88. data/resources/unicode_data/cjk_unified_ideographs_extension_a.yml +33 -0
  89. data/resources/unicode_data/cjk_unified_ideographs_extension_b.yml +33 -0
  90. data/resources/unicode_data/cjk_unified_ideographs_extension_c.yml +33 -0
  91. data/resources/unicode_data/cjk_unified_ideographs_extension_d.yml +33 -0
  92. data/resources/unicode_data/combining_diacritical_marks.yml +1793 -0
  93. data/resources/unicode_data/combining_diacritical_marks_for_symbols.yml +529 -0
  94. data/resources/unicode_data/combining_diacritical_marks_supplement.yml +689 -0
  95. data/resources/unicode_data/combining_half_marks.yml +113 -0
  96. data/resources/unicode_data/common_indic_number_forms.yml +161 -0
  97. data/resources/unicode_data/control_pictures.yml +625 -0
  98. data/resources/unicode_data/coptic.yml +1969 -0
  99. data/resources/unicode_data/counting_rod_numerals.yml +289 -0
  100. data/resources/unicode_data/cuneiform.yml +14065 -0
  101. data/resources/unicode_data/cuneiform_numbers_and_punctuation.yml +1649 -0
  102. data/resources/unicode_data/currency_symbols.yml +417 -0
  103. data/resources/unicode_data/cypriot_syllabary.yml +881 -0
  104. data/resources/unicode_data/cyrillic.yml +4097 -0
  105. data/resources/unicode_data/cyrillic_extended_a.yml +513 -0
  106. data/resources/unicode_data/cyrillic_extended_b.yml +1425 -0
  107. data/resources/unicode_data/cyrillic_supplement.yml +641 -0
  108. data/resources/unicode_data/deseret.yml +1281 -0
  109. data/resources/unicode_data/devanagari.yml +2033 -0
  110. data/resources/unicode_data/devanagari_extended.yml +449 -0
  111. data/resources/unicode_data/dingbats.yml +3057 -0
  112. data/resources/unicode_data/domino_tiles.yml +1601 -0
  113. data/resources/unicode_data/egyptian_hieroglyphs.yml +17137 -0
  114. data/resources/unicode_data/emoticons.yml +1217 -0
  115. data/resources/unicode_data/enclosed_alphanumeric_supplement.yml +2737 -0
  116. data/resources/unicode_data/enclosed_alphanumerics.yml +2561 -0
  117. data/resources/unicode_data/enclosed_cjk_letters_and_months.yml +4065 -0
  118. data/resources/unicode_data/enclosed_ideographic_supplement.yml +913 -0
  119. data/resources/unicode_data/ethiopic.yml +5729 -0
  120. data/resources/unicode_data/ethiopic_extended.yml +1265 -0
  121. data/resources/unicode_data/ethiopic_extended_a.yml +513 -0
  122. data/resources/unicode_data/ethiopic_supplement.yml +417 -0
  123. data/resources/unicode_data/general_punctuation.yml +1713 -0
  124. data/resources/unicode_data/geometric_shapes.yml +1537 -0
  125. data/resources/unicode_data/georgian.yml +1409 -0
  126. data/resources/unicode_data/georgian_supplement.yml +641 -0
  127. data/resources/unicode_data/glagolitic.yml +1505 -0
  128. data/resources/unicode_data/gothic.yml +433 -0
  129. data/resources/unicode_data/greek_and_coptic.yml +2145 -0
  130. data/resources/unicode_data/greek_extended.yml +3729 -0
  131. data/resources/unicode_data/gujarati.yml +1345 -0
  132. data/resources/unicode_data/gurmukhi.yml +1265 -0
  133. data/resources/unicode_data/halfwidth_and_fullwidth_forms.yml +3601 -0
  134. data/resources/unicode_data/hangul_compatibility_jamo.yml +1505 -0
  135. data/resources/unicode_data/hangul_jamo.yml +4097 -0
  136. data/resources/unicode_data/hangul_jamo_extended_a.yml +465 -0
  137. data/resources/unicode_data/hangul_jamo_extended_b.yml +1153 -0
  138. data/resources/unicode_data/hangul_syllables.yml +33 -0
  139. data/resources/unicode_data/hanunoo.yml +369 -0
  140. data/resources/unicode_data/hebrew.yml +1393 -0
  141. data/resources/unicode_data/high_private_use_surrogates.yml +33 -0
  142. data/resources/unicode_data/high_surrogates.yml +33 -0
  143. data/resources/unicode_data/hiragana.yml +1489 -0
  144. data/resources/unicode_data/ideographic_description_characters.yml +193 -0
  145. data/resources/unicode_data/imperial_aramaic.yml +497 -0
  146. data/resources/unicode_data/inscriptional_pahlavi.yml +433 -0
  147. data/resources/unicode_data/inscriptional_parthian.yml +481 -0
  148. data/resources/unicode_data/ipa_extensions.yml +1537 -0
  149. data/resources/unicode_data/javanese.yml +1457 -0
  150. data/resources/unicode_data/kaithi.yml +1057 -0
  151. data/resources/unicode_data/kana_supplement.yml +33 -0
  152. data/resources/unicode_data/kanbun.yml +257 -0
  153. data/resources/unicode_data/kangxi_radicals.yml +3425 -0
  154. data/resources/unicode_data/kannada.yml +1377 -0
  155. data/resources/unicode_data/katakana.yml +1537 -0
  156. data/resources/unicode_data/katakana_phonetic_extensions.yml +257 -0
  157. data/resources/unicode_data/kayah_li.yml +769 -0
  158. data/resources/unicode_data/kharoshthi.yml +1041 -0
  159. data/resources/unicode_data/khmer.yml +1825 -0
  160. data/resources/unicode_data/khmer_symbols.yml +513 -0
  161. data/resources/unicode_data/lao.yml +1073 -0
  162. data/resources/unicode_data/latin_1_supplement.yml +2049 -0
  163. data/resources/unicode_data/latin_extended_a.yml +2049 -0
  164. data/resources/unicode_data/latin_extended_additional.yml +4097 -0
  165. data/resources/unicode_data/latin_extended_b.yml +3329 -0
  166. data/resources/unicode_data/latin_extended_c.yml +513 -0
  167. data/resources/unicode_data/latin_extended_d.yml +2145 -0
  168. data/resources/unicode_data/lepcha.yml +1185 -0
  169. data/resources/unicode_data/letterlike_symbols.yml +1281 -0
  170. data/resources/unicode_data/limbu.yml +1057 -0
  171. data/resources/unicode_data/linear_b_ideograms.yml +1969 -0
  172. data/resources/unicode_data/linear_b_syllabary.yml +1409 -0
  173. data/resources/unicode_data/lisu.yml +769 -0
  174. data/resources/unicode_data/low_surrogates.yml +33 -0
  175. data/resources/unicode_data/lycian.yml +465 -0
  176. data/resources/unicode_data/lydian.yml +433 -0
  177. data/resources/unicode_data/mahjong_tiles.yml +705 -0
  178. data/resources/unicode_data/malayalam.yml +1569 -0
  179. data/resources/unicode_data/mandaic.yml +465 -0
  180. data/resources/unicode_data/mathematical_alphanumeric_symbols.yml +15937 -0
  181. data/resources/unicode_data/mathematical_operators.yml +4097 -0
  182. data/resources/unicode_data/meetei_mayek.yml +897 -0
  183. data/resources/unicode_data/meetei_mayek_extensions.yml +369 -0
  184. data/resources/unicode_data/meroitic_cursive.yml +417 -0
  185. data/resources/unicode_data/meroitic_hieroglyphs.yml +513 -0
  186. data/resources/unicode_data/miao.yml +2129 -0
  187. data/resources/unicode_data/miscellaneous_mathematical_symbols_a.yml +769 -0
  188. data/resources/unicode_data/miscellaneous_mathematical_symbols_b.yml +2049 -0
  189. data/resources/unicode_data/miscellaneous_symbols.yml +4097 -0
  190. data/resources/unicode_data/miscellaneous_symbols_and_arrows.yml +1393 -0
  191. data/resources/unicode_data/miscellaneous_symbols_and_pictographs.yml +8529 -0
  192. data/resources/unicode_data/miscellaneous_technical.yml +3905 -0
  193. data/resources/unicode_data/modifier_tone_letters.yml +513 -0
  194. data/resources/unicode_data/mongolian.yml +2497 -0
  195. data/resources/unicode_data/musical_symbols.yml +3521 -0
  196. data/resources/unicode_data/myanmar.yml +2561 -0
  197. data/resources/unicode_data/myanmar_extended_a.yml +449 -0
  198. data/resources/unicode_data/new_tai_lue.yml +1329 -0
  199. data/resources/unicode_data/nko.yml +945 -0
  200. data/resources/unicode_data/number_forms.yml +929 -0
  201. data/resources/unicode_data/ogham.yml +465 -0
  202. data/resources/unicode_data/ol_chiki.yml +769 -0
  203. data/resources/unicode_data/old_italic.yml +561 -0
  204. data/resources/unicode_data/old_persian.yml +801 -0
  205. data/resources/unicode_data/old_south_arabian.yml +513 -0
  206. data/resources/unicode_data/old_turkic.yml +1169 -0
  207. data/resources/unicode_data/optical_character_recognition.yml +177 -0
  208. data/resources/unicode_data/oriya.yml +1441 -0
  209. data/resources/unicode_data/osmanya.yml +641 -0
  210. data/resources/unicode_data/phags_pa.yml +897 -0
  211. data/resources/unicode_data/phaistos_disc.yml +737 -0
  212. data/resources/unicode_data/phoenician.yml +465 -0
  213. data/resources/unicode_data/phonetic_extensions.yml +2049 -0
  214. data/resources/unicode_data/phonetic_extensions_supplement.yml +1025 -0
  215. data/resources/unicode_data/playing_cards.yml +945 -0
  216. data/resources/unicode_data/private_use_area.yml +33 -0
  217. data/resources/unicode_data/rejang.yml +593 -0
  218. data/resources/unicode_data/rumi_numeral_symbols.yml +497 -0
  219. data/resources/unicode_data/runic.yml +1297 -0
  220. data/resources/unicode_data/samaritan.yml +977 -0
  221. data/resources/unicode_data/saurashtra.yml +1297 -0
  222. data/resources/unicode_data/sharada.yml +1329 -0
  223. data/resources/unicode_data/shavian.yml +769 -0
  224. data/resources/unicode_data/sinhala.yml +1281 -0
  225. data/resources/unicode_data/small_form_variants.yml +417 -0
  226. data/resources/unicode_data/sora_sompeng.yml +561 -0
  227. data/resources/unicode_data/spacing_modifier_letters.yml +1281 -0
  228. data/resources/unicode_data/specials.yml +81 -0
  229. data/resources/unicode_data/sundanese.yml +1025 -0
  230. data/resources/unicode_data/sundanese_supplement.yml +129 -0
  231. data/resources/unicode_data/superscripts_and_subscripts.yml +673 -0
  232. data/resources/unicode_data/supplemental_arrows_a.yml +257 -0
  233. data/resources/unicode_data/supplemental_arrows_b.yml +2049 -0
  234. data/resources/unicode_data/supplemental_mathematical_operators.yml +4097 -0
  235. data/resources/unicode_data/supplemental_punctuation.yml +961 -0
  236. data/resources/unicode_data/supplementary_private_use_area_a.yml +33 -0
  237. data/resources/unicode_data/supplementary_private_use_area_b.yml +33 -0
  238. data/resources/unicode_data/syloti_nagri.yml +705 -0
  239. data/resources/unicode_data/syriac.yml +1233 -0
  240. data/resources/unicode_data/tagalog.yml +321 -0
  241. data/resources/unicode_data/tagbanwa.yml +289 -0
  242. data/resources/unicode_data/tags.yml +1553 -0
  243. data/resources/unicode_data/tai_le.yml +561 -0
  244. data/resources/unicode_data/tai_tham.yml +2033 -0
  245. data/resources/unicode_data/tai_viet.yml +1153 -0
  246. data/resources/unicode_data/tai_xuan_jing_symbols.yml +1393 -0
  247. data/resources/unicode_data/takri.yml +1057 -0
  248. data/resources/unicode_data/tamil.yml +1153 -0
  249. data/resources/unicode_data/telugu.yml +1489 -0
  250. data/resources/unicode_data/thaana.yml +801 -0
  251. data/resources/unicode_data/thai.yml +1393 -0
  252. data/resources/unicode_data/tibetan.yml +3377 -0
  253. data/resources/unicode_data/tifinagh.yml +945 -0
  254. data/resources/unicode_data/transport_and_map_symbols.yml +1121 -0
  255. data/resources/unicode_data/ugaritic.yml +497 -0
  256. data/resources/unicode_data/unified_canadian_aboriginal_syllabics.yml +10241 -0
  257. data/resources/unicode_data/unified_canadian_aboriginal_syllabics_extended.yml +1121 -0
  258. data/resources/unicode_data/vai.yml +4801 -0
  259. data/resources/unicode_data/variation_selectors.yml +257 -0
  260. data/resources/unicode_data/variation_selectors_supplement.yml +3841 -0
  261. data/resources/unicode_data/vedic_extensions.yml +625 -0
  262. data/resources/unicode_data/vertical_forms.yml +161 -0
  263. data/resources/unicode_data/yi_radicals.yml +881 -0
  264. data/resources/unicode_data/yi_syllables.yml +18641 -0
  265. data/resources/unicode_data/yijing_hexagram_symbols.yml +1025 -0
  266. data/spec/ext/calendars/date_spec.rb +5 -1
  267. data/spec/ext/calendars/datetime_spec.rb +5 -1
  268. data/spec/ext/calendars/time_spec.rb +5 -1
  269. data/spec/ext/numbers/bignum_spec.rb +5 -1
  270. data/spec/ext/numbers/fixnum_spec.rb +5 -1
  271. data/spec/ext/numbers/float_spec.rb +5 -1
  272. data/spec/ext/numbers/localized_number_spec.rb +5 -1
  273. data/spec/ext/strings/string_spec.rb +102 -0
  274. data/spec/ext/strings/symbol_spec.rb +5 -1
  275. data/spec/formatters/base_spec.rb +5 -1
  276. data/spec/formatters/calendars/datetime_formatter_spec.rb +5 -1
  277. data/spec/formatters/numbers/currency_formatter_spec.rb +5 -1
  278. data/spec/formatters/numbers/decimal_formatter_spec.rb +5 -1
  279. data/spec/formatters/numbers/helpers/fraction_spec.rb +5 -1
  280. data/spec/formatters/numbers/helpers/integer_spec.rb +5 -1
  281. data/spec/formatters/numbers/number_formatter_spec.rb +6 -2
  282. data/spec/formatters/numbers/percent_formatter_spec.rb +5 -1
  283. data/spec/formatters/plurals/plural_formatter_spec.rb +205 -0
  284. data/spec/formatters/plurals/rules_spec.rb +28 -28
  285. data/spec/normalizers/NormalizationTest.txt +602 -0
  286. data/spec/normalizers/base_spec.rb +16 -0
  287. data/spec/normalizers/canonical/nfd_spec.rb +50 -0
  288. data/spec/shared/currencies_spec.rb +5 -1
  289. data/spec/shared/languages_spec.rb +5 -1
  290. data/spec/shared/resources_spec.rb +5 -18
  291. data/spec/shared/unicode_data_spec.rb +51 -0
  292. data/spec/spec_helper.rb +6 -3
  293. data/spec/tokenizers/base_spec.rb +3 -0
  294. data/spec/tokenizers/calendars/date_tokenizer_spec.rb +5 -1
  295. data/spec/tokenizers/calendars/datetime_tokenizer_spec.rb +5 -1
  296. data/spec/tokenizers/calendars/time_tokenizer_spec.rb +5 -1
  297. data/spec/tokenizers/key_path_spec.rb +3 -0
  298. data/spec/tokenizers/numbers/number_tokenizer_spec.rb +5 -1
  299. data/spec/tokenizers/token_spec.rb +5 -1
  300. data/spec/twitter_cldr_spec.rb +23 -1
  301. data/spec/utils/interpolation_spec.rb +124 -0
  302. data/spec/utils_spec.rb +32 -0
  303. metadata +285 -21
@@ -0,0 +1,1713 @@
1
+ ---
2
+ "2000":
3
+ - "2000"
4
+ - EN QUAD
5
+ - Zs
6
+ - "0"
7
+ - WS
8
+ - "2002"
9
+ - ""
10
+ - ""
11
+ - ""
12
+ - N
13
+ - ""
14
+ - ""
15
+ - ""
16
+ - ""
17
+ - ""
18
+ "2001":
19
+ - "2001"
20
+ - EM QUAD
21
+ - Zs
22
+ - "0"
23
+ - WS
24
+ - "2003"
25
+ - ""
26
+ - ""
27
+ - ""
28
+ - N
29
+ - ""
30
+ - ""
31
+ - ""
32
+ - ""
33
+ - ""
34
+ "2002":
35
+ - "2002"
36
+ - EN SPACE
37
+ - Zs
38
+ - "0"
39
+ - WS
40
+ - <compat> 0020
41
+ - ""
42
+ - ""
43
+ - ""
44
+ - N
45
+ - ""
46
+ - ""
47
+ - ""
48
+ - ""
49
+ - ""
50
+ "2003":
51
+ - "2003"
52
+ - EM SPACE
53
+ - Zs
54
+ - "0"
55
+ - WS
56
+ - <compat> 0020
57
+ - ""
58
+ - ""
59
+ - ""
60
+ - N
61
+ - ""
62
+ - ""
63
+ - ""
64
+ - ""
65
+ - ""
66
+ "2004":
67
+ - "2004"
68
+ - THREE-PER-EM SPACE
69
+ - Zs
70
+ - "0"
71
+ - WS
72
+ - <compat> 0020
73
+ - ""
74
+ - ""
75
+ - ""
76
+ - N
77
+ - ""
78
+ - ""
79
+ - ""
80
+ - ""
81
+ - ""
82
+ "2005":
83
+ - "2005"
84
+ - FOUR-PER-EM SPACE
85
+ - Zs
86
+ - "0"
87
+ - WS
88
+ - <compat> 0020
89
+ - ""
90
+ - ""
91
+ - ""
92
+ - N
93
+ - ""
94
+ - ""
95
+ - ""
96
+ - ""
97
+ - ""
98
+ "2006":
99
+ - "2006"
100
+ - SIX-PER-EM SPACE
101
+ - Zs
102
+ - "0"
103
+ - WS
104
+ - <compat> 0020
105
+ - ""
106
+ - ""
107
+ - ""
108
+ - N
109
+ - ""
110
+ - ""
111
+ - ""
112
+ - ""
113
+ - ""
114
+ "2007":
115
+ - "2007"
116
+ - FIGURE SPACE
117
+ - Zs
118
+ - "0"
119
+ - WS
120
+ - <noBreak> 0020
121
+ - ""
122
+ - ""
123
+ - ""
124
+ - N
125
+ - ""
126
+ - ""
127
+ - ""
128
+ - ""
129
+ - ""
130
+ "2008":
131
+ - "2008"
132
+ - PUNCTUATION SPACE
133
+ - Zs
134
+ - "0"
135
+ - WS
136
+ - <compat> 0020
137
+ - ""
138
+ - ""
139
+ - ""
140
+ - N
141
+ - ""
142
+ - ""
143
+ - ""
144
+ - ""
145
+ - ""
146
+ "2009":
147
+ - "2009"
148
+ - THIN SPACE
149
+ - Zs
150
+ - "0"
151
+ - WS
152
+ - <compat> 0020
153
+ - ""
154
+ - ""
155
+ - ""
156
+ - N
157
+ - ""
158
+ - ""
159
+ - ""
160
+ - ""
161
+ - ""
162
+ 200A:
163
+ - 200A
164
+ - HAIR SPACE
165
+ - Zs
166
+ - "0"
167
+ - WS
168
+ - <compat> 0020
169
+ - ""
170
+ - ""
171
+ - ""
172
+ - N
173
+ - ""
174
+ - ""
175
+ - ""
176
+ - ""
177
+ - ""
178
+ 200B:
179
+ - 200B
180
+ - ZERO WIDTH SPACE
181
+ - Cf
182
+ - "0"
183
+ - BN
184
+ - ""
185
+ - ""
186
+ - ""
187
+ - ""
188
+ - N
189
+ - ""
190
+ - ""
191
+ - ""
192
+ - ""
193
+ - ""
194
+ 200C:
195
+ - 200C
196
+ - ZERO WIDTH NON-JOINER
197
+ - Cf
198
+ - "0"
199
+ - BN
200
+ - ""
201
+ - ""
202
+ - ""
203
+ - ""
204
+ - N
205
+ - ""
206
+ - ""
207
+ - ""
208
+ - ""
209
+ - ""
210
+ 200D:
211
+ - 200D
212
+ - ZERO WIDTH JOINER
213
+ - Cf
214
+ - "0"
215
+ - BN
216
+ - ""
217
+ - ""
218
+ - ""
219
+ - ""
220
+ - N
221
+ - ""
222
+ - ""
223
+ - ""
224
+ - ""
225
+ - ""
226
+ 200E:
227
+ - 200E
228
+ - LEFT-TO-RIGHT MARK
229
+ - Cf
230
+ - "0"
231
+ - L
232
+ - ""
233
+ - ""
234
+ - ""
235
+ - ""
236
+ - N
237
+ - ""
238
+ - ""
239
+ - ""
240
+ - ""
241
+ - ""
242
+ 200F:
243
+ - 200F
244
+ - RIGHT-TO-LEFT MARK
245
+ - Cf
246
+ - "0"
247
+ - R
248
+ - ""
249
+ - ""
250
+ - ""
251
+ - ""
252
+ - N
253
+ - ""
254
+ - ""
255
+ - ""
256
+ - ""
257
+ - ""
258
+ "2010":
259
+ - "2010"
260
+ - HYPHEN
261
+ - Pd
262
+ - "0"
263
+ - "ON"
264
+ - ""
265
+ - ""
266
+ - ""
267
+ - ""
268
+ - N
269
+ - ""
270
+ - ""
271
+ - ""
272
+ - ""
273
+ - ""
274
+ "2011":
275
+ - "2011"
276
+ - NON-BREAKING HYPHEN
277
+ - Pd
278
+ - "0"
279
+ - "ON"
280
+ - <noBreak> 2010
281
+ - ""
282
+ - ""
283
+ - ""
284
+ - N
285
+ - ""
286
+ - ""
287
+ - ""
288
+ - ""
289
+ - ""
290
+ "2012":
291
+ - "2012"
292
+ - FIGURE DASH
293
+ - Pd
294
+ - "0"
295
+ - "ON"
296
+ - ""
297
+ - ""
298
+ - ""
299
+ - ""
300
+ - N
301
+ - ""
302
+ - ""
303
+ - ""
304
+ - ""
305
+ - ""
306
+ "2013":
307
+ - "2013"
308
+ - EN DASH
309
+ - Pd
310
+ - "0"
311
+ - "ON"
312
+ - ""
313
+ - ""
314
+ - ""
315
+ - ""
316
+ - N
317
+ - ""
318
+ - ""
319
+ - ""
320
+ - ""
321
+ - ""
322
+ "2014":
323
+ - "2014"
324
+ - EM DASH
325
+ - Pd
326
+ - "0"
327
+ - "ON"
328
+ - ""
329
+ - ""
330
+ - ""
331
+ - ""
332
+ - N
333
+ - ""
334
+ - ""
335
+ - ""
336
+ - ""
337
+ - ""
338
+ "2015":
339
+ - "2015"
340
+ - HORIZONTAL BAR
341
+ - Pd
342
+ - "0"
343
+ - "ON"
344
+ - ""
345
+ - ""
346
+ - ""
347
+ - ""
348
+ - N
349
+ - QUOTATION DASH
350
+ - ""
351
+ - ""
352
+ - ""
353
+ - ""
354
+ "2016":
355
+ - "2016"
356
+ - DOUBLE VERTICAL LINE
357
+ - Po
358
+ - "0"
359
+ - "ON"
360
+ - ""
361
+ - ""
362
+ - ""
363
+ - ""
364
+ - N
365
+ - DOUBLE VERTICAL BAR
366
+ - ""
367
+ - ""
368
+ - ""
369
+ - ""
370
+ "2017":
371
+ - "2017"
372
+ - DOUBLE LOW LINE
373
+ - Po
374
+ - "0"
375
+ - "ON"
376
+ - <compat> 0020 0333
377
+ - ""
378
+ - ""
379
+ - ""
380
+ - N
381
+ - SPACING DOUBLE UNDERSCORE
382
+ - ""
383
+ - ""
384
+ - ""
385
+ - ""
386
+ "2018":
387
+ - "2018"
388
+ - LEFT SINGLE QUOTATION MARK
389
+ - Pi
390
+ - "0"
391
+ - "ON"
392
+ - ""
393
+ - ""
394
+ - ""
395
+ - ""
396
+ - N
397
+ - SINGLE TURNED COMMA QUOTATION MARK
398
+ - ""
399
+ - ""
400
+ - ""
401
+ - ""
402
+ "2019":
403
+ - "2019"
404
+ - RIGHT SINGLE QUOTATION MARK
405
+ - Pf
406
+ - "0"
407
+ - "ON"
408
+ - ""
409
+ - ""
410
+ - ""
411
+ - ""
412
+ - N
413
+ - SINGLE COMMA QUOTATION MARK
414
+ - ""
415
+ - ""
416
+ - ""
417
+ - ""
418
+ 201A:
419
+ - 201A
420
+ - SINGLE LOW-9 QUOTATION MARK
421
+ - Ps
422
+ - "0"
423
+ - "ON"
424
+ - ""
425
+ - ""
426
+ - ""
427
+ - ""
428
+ - N
429
+ - LOW SINGLE COMMA QUOTATION MARK
430
+ - ""
431
+ - ""
432
+ - ""
433
+ - ""
434
+ 201B:
435
+ - 201B
436
+ - SINGLE HIGH-REVERSED-9 QUOTATION MARK
437
+ - Pi
438
+ - "0"
439
+ - "ON"
440
+ - ""
441
+ - ""
442
+ - ""
443
+ - ""
444
+ - N
445
+ - SINGLE REVERSED COMMA QUOTATION MARK
446
+ - ""
447
+ - ""
448
+ - ""
449
+ - ""
450
+ 201C:
451
+ - 201C
452
+ - LEFT DOUBLE QUOTATION MARK
453
+ - Pi
454
+ - "0"
455
+ - "ON"
456
+ - ""
457
+ - ""
458
+ - ""
459
+ - ""
460
+ - N
461
+ - DOUBLE TURNED COMMA QUOTATION MARK
462
+ - ""
463
+ - ""
464
+ - ""
465
+ - ""
466
+ 201D:
467
+ - 201D
468
+ - RIGHT DOUBLE QUOTATION MARK
469
+ - Pf
470
+ - "0"
471
+ - "ON"
472
+ - ""
473
+ - ""
474
+ - ""
475
+ - ""
476
+ - N
477
+ - DOUBLE COMMA QUOTATION MARK
478
+ - ""
479
+ - ""
480
+ - ""
481
+ - ""
482
+ 201E:
483
+ - 201E
484
+ - DOUBLE LOW-9 QUOTATION MARK
485
+ - Ps
486
+ - "0"
487
+ - "ON"
488
+ - ""
489
+ - ""
490
+ - ""
491
+ - ""
492
+ - N
493
+ - LOW DOUBLE COMMA QUOTATION MARK
494
+ - ""
495
+ - ""
496
+ - ""
497
+ - ""
498
+ 201F:
499
+ - 201F
500
+ - DOUBLE HIGH-REVERSED-9 QUOTATION MARK
501
+ - Pi
502
+ - "0"
503
+ - "ON"
504
+ - ""
505
+ - ""
506
+ - ""
507
+ - ""
508
+ - N
509
+ - DOUBLE REVERSED COMMA QUOTATION MARK
510
+ - ""
511
+ - ""
512
+ - ""
513
+ - ""
514
+ "2020":
515
+ - "2020"
516
+ - DAGGER
517
+ - Po
518
+ - "0"
519
+ - "ON"
520
+ - ""
521
+ - ""
522
+ - ""
523
+ - ""
524
+ - N
525
+ - ""
526
+ - ""
527
+ - ""
528
+ - ""
529
+ - ""
530
+ "2021":
531
+ - "2021"
532
+ - DOUBLE DAGGER
533
+ - Po
534
+ - "0"
535
+ - "ON"
536
+ - ""
537
+ - ""
538
+ - ""
539
+ - ""
540
+ - N
541
+ - ""
542
+ - ""
543
+ - ""
544
+ - ""
545
+ - ""
546
+ "2022":
547
+ - "2022"
548
+ - BULLET
549
+ - Po
550
+ - "0"
551
+ - "ON"
552
+ - ""
553
+ - ""
554
+ - ""
555
+ - ""
556
+ - N
557
+ - ""
558
+ - ""
559
+ - ""
560
+ - ""
561
+ - ""
562
+ "2023":
563
+ - "2023"
564
+ - TRIANGULAR BULLET
565
+ - Po
566
+ - "0"
567
+ - "ON"
568
+ - ""
569
+ - ""
570
+ - ""
571
+ - ""
572
+ - N
573
+ - ""
574
+ - ""
575
+ - ""
576
+ - ""
577
+ - ""
578
+ "2024":
579
+ - "2024"
580
+ - ONE DOT LEADER
581
+ - Po
582
+ - "0"
583
+ - "ON"
584
+ - <compat> 002E
585
+ - ""
586
+ - ""
587
+ - ""
588
+ - N
589
+ - ""
590
+ - ""
591
+ - ""
592
+ - ""
593
+ - ""
594
+ "2025":
595
+ - "2025"
596
+ - TWO DOT LEADER
597
+ - Po
598
+ - "0"
599
+ - "ON"
600
+ - <compat> 002E 002E
601
+ - ""
602
+ - ""
603
+ - ""
604
+ - N
605
+ - ""
606
+ - ""
607
+ - ""
608
+ - ""
609
+ - ""
610
+ "2026":
611
+ - "2026"
612
+ - HORIZONTAL ELLIPSIS
613
+ - Po
614
+ - "0"
615
+ - "ON"
616
+ - <compat> 002E 002E 002E
617
+ - ""
618
+ - ""
619
+ - ""
620
+ - N
621
+ - ""
622
+ - ""
623
+ - ""
624
+ - ""
625
+ - ""
626
+ "2027":
627
+ - "2027"
628
+ - HYPHENATION POINT
629
+ - Po
630
+ - "0"
631
+ - "ON"
632
+ - ""
633
+ - ""
634
+ - ""
635
+ - ""
636
+ - N
637
+ - ""
638
+ - ""
639
+ - ""
640
+ - ""
641
+ - ""
642
+ "2028":
643
+ - "2028"
644
+ - LINE SEPARATOR
645
+ - Zl
646
+ - "0"
647
+ - WS
648
+ - ""
649
+ - ""
650
+ - ""
651
+ - ""
652
+ - N
653
+ - ""
654
+ - ""
655
+ - ""
656
+ - ""
657
+ - ""
658
+ "2029":
659
+ - "2029"
660
+ - PARAGRAPH SEPARATOR
661
+ - Zp
662
+ - "0"
663
+ - B
664
+ - ""
665
+ - ""
666
+ - ""
667
+ - ""
668
+ - N
669
+ - ""
670
+ - ""
671
+ - ""
672
+ - ""
673
+ - ""
674
+ 202A:
675
+ - 202A
676
+ - LEFT-TO-RIGHT EMBEDDING
677
+ - Cf
678
+ - "0"
679
+ - LRE
680
+ - ""
681
+ - ""
682
+ - ""
683
+ - ""
684
+ - N
685
+ - ""
686
+ - ""
687
+ - ""
688
+ - ""
689
+ - ""
690
+ 202B:
691
+ - 202B
692
+ - RIGHT-TO-LEFT EMBEDDING
693
+ - Cf
694
+ - "0"
695
+ - RLE
696
+ - ""
697
+ - ""
698
+ - ""
699
+ - ""
700
+ - N
701
+ - ""
702
+ - ""
703
+ - ""
704
+ - ""
705
+ - ""
706
+ 202C:
707
+ - 202C
708
+ - POP DIRECTIONAL FORMATTING
709
+ - Cf
710
+ - "0"
711
+ - PDF
712
+ - ""
713
+ - ""
714
+ - ""
715
+ - ""
716
+ - N
717
+ - ""
718
+ - ""
719
+ - ""
720
+ - ""
721
+ - ""
722
+ 202D:
723
+ - 202D
724
+ - LEFT-TO-RIGHT OVERRIDE
725
+ - Cf
726
+ - "0"
727
+ - LRO
728
+ - ""
729
+ - ""
730
+ - ""
731
+ - ""
732
+ - N
733
+ - ""
734
+ - ""
735
+ - ""
736
+ - ""
737
+ - ""
738
+ 202E:
739
+ - 202E
740
+ - RIGHT-TO-LEFT OVERRIDE
741
+ - Cf
742
+ - "0"
743
+ - RLO
744
+ - ""
745
+ - ""
746
+ - ""
747
+ - ""
748
+ - N
749
+ - ""
750
+ - ""
751
+ - ""
752
+ - ""
753
+ - ""
754
+ 202F:
755
+ - 202F
756
+ - NARROW NO-BREAK SPACE
757
+ - Zs
758
+ - "0"
759
+ - CS
760
+ - <noBreak> 0020
761
+ - ""
762
+ - ""
763
+ - ""
764
+ - N
765
+ - ""
766
+ - ""
767
+ - ""
768
+ - ""
769
+ - ""
770
+ "2030":
771
+ - "2030"
772
+ - PER MILLE SIGN
773
+ - Po
774
+ - "0"
775
+ - ET
776
+ - ""
777
+ - ""
778
+ - ""
779
+ - ""
780
+ - N
781
+ - ""
782
+ - ""
783
+ - ""
784
+ - ""
785
+ - ""
786
+ "2031":
787
+ - "2031"
788
+ - PER TEN THOUSAND SIGN
789
+ - Po
790
+ - "0"
791
+ - ET
792
+ - ""
793
+ - ""
794
+ - ""
795
+ - ""
796
+ - N
797
+ - ""
798
+ - ""
799
+ - ""
800
+ - ""
801
+ - ""
802
+ "2032":
803
+ - "2032"
804
+ - PRIME
805
+ - Po
806
+ - "0"
807
+ - ET
808
+ - ""
809
+ - ""
810
+ - ""
811
+ - ""
812
+ - N
813
+ - ""
814
+ - ""
815
+ - ""
816
+ - ""
817
+ - ""
818
+ "2033":
819
+ - "2033"
820
+ - DOUBLE PRIME
821
+ - Po
822
+ - "0"
823
+ - ET
824
+ - <compat> 2032 2032
825
+ - ""
826
+ - ""
827
+ - ""
828
+ - N
829
+ - ""
830
+ - ""
831
+ - ""
832
+ - ""
833
+ - ""
834
+ "2034":
835
+ - "2034"
836
+ - TRIPLE PRIME
837
+ - Po
838
+ - "0"
839
+ - ET
840
+ - <compat> 2032 2032 2032
841
+ - ""
842
+ - ""
843
+ - ""
844
+ - N
845
+ - ""
846
+ - ""
847
+ - ""
848
+ - ""
849
+ - ""
850
+ "2035":
851
+ - "2035"
852
+ - REVERSED PRIME
853
+ - Po
854
+ - "0"
855
+ - "ON"
856
+ - ""
857
+ - ""
858
+ - ""
859
+ - ""
860
+ - N
861
+ - ""
862
+ - ""
863
+ - ""
864
+ - ""
865
+ - ""
866
+ "2036":
867
+ - "2036"
868
+ - REVERSED DOUBLE PRIME
869
+ - Po
870
+ - "0"
871
+ - "ON"
872
+ - <compat> 2035 2035
873
+ - ""
874
+ - ""
875
+ - ""
876
+ - N
877
+ - ""
878
+ - ""
879
+ - ""
880
+ - ""
881
+ - ""
882
+ "2037":
883
+ - "2037"
884
+ - REVERSED TRIPLE PRIME
885
+ - Po
886
+ - "0"
887
+ - "ON"
888
+ - <compat> 2035 2035 2035
889
+ - ""
890
+ - ""
891
+ - ""
892
+ - N
893
+ - ""
894
+ - ""
895
+ - ""
896
+ - ""
897
+ - ""
898
+ "2038":
899
+ - "2038"
900
+ - CARET
901
+ - Po
902
+ - "0"
903
+ - "ON"
904
+ - ""
905
+ - ""
906
+ - ""
907
+ - ""
908
+ - N
909
+ - ""
910
+ - ""
911
+ - ""
912
+ - ""
913
+ - ""
914
+ "2039":
915
+ - "2039"
916
+ - SINGLE LEFT-POINTING ANGLE QUOTATION MARK
917
+ - Pi
918
+ - "0"
919
+ - "ON"
920
+ - ""
921
+ - ""
922
+ - ""
923
+ - ""
924
+ - Y
925
+ - LEFT POINTING SINGLE GUILLEMET
926
+ - ""
927
+ - ""
928
+ - ""
929
+ - ""
930
+ 203A:
931
+ - 203A
932
+ - SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
933
+ - Pf
934
+ - "0"
935
+ - "ON"
936
+ - ""
937
+ - ""
938
+ - ""
939
+ - ""
940
+ - Y
941
+ - RIGHT POINTING SINGLE GUILLEMET
942
+ - ""
943
+ - ""
944
+ - ""
945
+ - ""
946
+ 203B:
947
+ - 203B
948
+ - REFERENCE MARK
949
+ - Po
950
+ - "0"
951
+ - "ON"
952
+ - ""
953
+ - ""
954
+ - ""
955
+ - ""
956
+ - N
957
+ - ""
958
+ - ""
959
+ - ""
960
+ - ""
961
+ - ""
962
+ 203C:
963
+ - 203C
964
+ - DOUBLE EXCLAMATION MARK
965
+ - Po
966
+ - "0"
967
+ - "ON"
968
+ - <compat> 0021 0021
969
+ - ""
970
+ - ""
971
+ - ""
972
+ - N
973
+ - ""
974
+ - ""
975
+ - ""
976
+ - ""
977
+ - ""
978
+ 203D:
979
+ - 203D
980
+ - INTERROBANG
981
+ - Po
982
+ - "0"
983
+ - "ON"
984
+ - ""
985
+ - ""
986
+ - ""
987
+ - ""
988
+ - N
989
+ - ""
990
+ - ""
991
+ - ""
992
+ - ""
993
+ - ""
994
+ 203E:
995
+ - 203E
996
+ - OVERLINE
997
+ - Po
998
+ - "0"
999
+ - "ON"
1000
+ - <compat> 0020 0305
1001
+ - ""
1002
+ - ""
1003
+ - ""
1004
+ - N
1005
+ - SPACING OVERSCORE
1006
+ - ""
1007
+ - ""
1008
+ - ""
1009
+ - ""
1010
+ 203F:
1011
+ - 203F
1012
+ - UNDERTIE
1013
+ - Pc
1014
+ - "0"
1015
+ - "ON"
1016
+ - ""
1017
+ - ""
1018
+ - ""
1019
+ - ""
1020
+ - N
1021
+ - ""
1022
+ - ""
1023
+ - ""
1024
+ - ""
1025
+ - ""
1026
+ "2040":
1027
+ - "2040"
1028
+ - CHARACTER TIE
1029
+ - Pc
1030
+ - "0"
1031
+ - "ON"
1032
+ - ""
1033
+ - ""
1034
+ - ""
1035
+ - ""
1036
+ - N
1037
+ - ""
1038
+ - ""
1039
+ - ""
1040
+ - ""
1041
+ - ""
1042
+ "2041":
1043
+ - "2041"
1044
+ - CARET INSERTION POINT
1045
+ - Po
1046
+ - "0"
1047
+ - "ON"
1048
+ - ""
1049
+ - ""
1050
+ - ""
1051
+ - ""
1052
+ - N
1053
+ - ""
1054
+ - ""
1055
+ - ""
1056
+ - ""
1057
+ - ""
1058
+ "2042":
1059
+ - "2042"
1060
+ - ASTERISM
1061
+ - Po
1062
+ - "0"
1063
+ - "ON"
1064
+ - ""
1065
+ - ""
1066
+ - ""
1067
+ - ""
1068
+ - N
1069
+ - ""
1070
+ - ""
1071
+ - ""
1072
+ - ""
1073
+ - ""
1074
+ "2043":
1075
+ - "2043"
1076
+ - HYPHEN BULLET
1077
+ - Po
1078
+ - "0"
1079
+ - "ON"
1080
+ - ""
1081
+ - ""
1082
+ - ""
1083
+ - ""
1084
+ - N
1085
+ - ""
1086
+ - ""
1087
+ - ""
1088
+ - ""
1089
+ - ""
1090
+ "2044":
1091
+ - "2044"
1092
+ - FRACTION SLASH
1093
+ - Sm
1094
+ - "0"
1095
+ - CS
1096
+ - ""
1097
+ - ""
1098
+ - ""
1099
+ - ""
1100
+ - N
1101
+ - ""
1102
+ - ""
1103
+ - ""
1104
+ - ""
1105
+ - ""
1106
+ "2045":
1107
+ - "2045"
1108
+ - LEFT SQUARE BRACKET WITH QUILL
1109
+ - Ps
1110
+ - "0"
1111
+ - "ON"
1112
+ - ""
1113
+ - ""
1114
+ - ""
1115
+ - ""
1116
+ - Y
1117
+ - ""
1118
+ - ""
1119
+ - ""
1120
+ - ""
1121
+ - ""
1122
+ "2046":
1123
+ - "2046"
1124
+ - RIGHT SQUARE BRACKET WITH QUILL
1125
+ - Pe
1126
+ - "0"
1127
+ - "ON"
1128
+ - ""
1129
+ - ""
1130
+ - ""
1131
+ - ""
1132
+ - Y
1133
+ - ""
1134
+ - ""
1135
+ - ""
1136
+ - ""
1137
+ - ""
1138
+ "2047":
1139
+ - "2047"
1140
+ - DOUBLE QUESTION MARK
1141
+ - Po
1142
+ - "0"
1143
+ - "ON"
1144
+ - <compat> 003F 003F
1145
+ - ""
1146
+ - ""
1147
+ - ""
1148
+ - N
1149
+ - ""
1150
+ - ""
1151
+ - ""
1152
+ - ""
1153
+ - ""
1154
+ "2048":
1155
+ - "2048"
1156
+ - QUESTION EXCLAMATION MARK
1157
+ - Po
1158
+ - "0"
1159
+ - "ON"
1160
+ - <compat> 003F 0021
1161
+ - ""
1162
+ - ""
1163
+ - ""
1164
+ - N
1165
+ - ""
1166
+ - ""
1167
+ - ""
1168
+ - ""
1169
+ - ""
1170
+ "2049":
1171
+ - "2049"
1172
+ - EXCLAMATION QUESTION MARK
1173
+ - Po
1174
+ - "0"
1175
+ - "ON"
1176
+ - <compat> 0021 003F
1177
+ - ""
1178
+ - ""
1179
+ - ""
1180
+ - N
1181
+ - ""
1182
+ - ""
1183
+ - ""
1184
+ - ""
1185
+ - ""
1186
+ 204A:
1187
+ - 204A
1188
+ - TIRONIAN SIGN ET
1189
+ - Po
1190
+ - "0"
1191
+ - "ON"
1192
+ - ""
1193
+ - ""
1194
+ - ""
1195
+ - ""
1196
+ - N
1197
+ - ""
1198
+ - ""
1199
+ - ""
1200
+ - ""
1201
+ - ""
1202
+ 204B:
1203
+ - 204B
1204
+ - REVERSED PILCROW SIGN
1205
+ - Po
1206
+ - "0"
1207
+ - "ON"
1208
+ - ""
1209
+ - ""
1210
+ - ""
1211
+ - ""
1212
+ - N
1213
+ - ""
1214
+ - ""
1215
+ - ""
1216
+ - ""
1217
+ - ""
1218
+ 204C:
1219
+ - 204C
1220
+ - BLACK LEFTWARDS BULLET
1221
+ - Po
1222
+ - "0"
1223
+ - "ON"
1224
+ - ""
1225
+ - ""
1226
+ - ""
1227
+ - ""
1228
+ - N
1229
+ - ""
1230
+ - ""
1231
+ - ""
1232
+ - ""
1233
+ - ""
1234
+ 204D:
1235
+ - 204D
1236
+ - BLACK RIGHTWARDS BULLET
1237
+ - Po
1238
+ - "0"
1239
+ - "ON"
1240
+ - ""
1241
+ - ""
1242
+ - ""
1243
+ - ""
1244
+ - N
1245
+ - ""
1246
+ - ""
1247
+ - ""
1248
+ - ""
1249
+ - ""
1250
+ 204E:
1251
+ - 204E
1252
+ - LOW ASTERISK
1253
+ - Po
1254
+ - "0"
1255
+ - "ON"
1256
+ - ""
1257
+ - ""
1258
+ - ""
1259
+ - ""
1260
+ - N
1261
+ - ""
1262
+ - ""
1263
+ - ""
1264
+ - ""
1265
+ - ""
1266
+ 204F:
1267
+ - 204F
1268
+ - REVERSED SEMICOLON
1269
+ - Po
1270
+ - "0"
1271
+ - "ON"
1272
+ - ""
1273
+ - ""
1274
+ - ""
1275
+ - ""
1276
+ - N
1277
+ - ""
1278
+ - ""
1279
+ - ""
1280
+ - ""
1281
+ - ""
1282
+ "2050":
1283
+ - "2050"
1284
+ - CLOSE UP
1285
+ - Po
1286
+ - "0"
1287
+ - "ON"
1288
+ - ""
1289
+ - ""
1290
+ - ""
1291
+ - ""
1292
+ - N
1293
+ - ""
1294
+ - ""
1295
+ - ""
1296
+ - ""
1297
+ - ""
1298
+ "2051":
1299
+ - "2051"
1300
+ - TWO ASTERISKS ALIGNED VERTICALLY
1301
+ - Po
1302
+ - "0"
1303
+ - "ON"
1304
+ - ""
1305
+ - ""
1306
+ - ""
1307
+ - ""
1308
+ - N
1309
+ - ""
1310
+ - ""
1311
+ - ""
1312
+ - ""
1313
+ - ""
1314
+ "2052":
1315
+ - "2052"
1316
+ - COMMERCIAL MINUS SIGN
1317
+ - Sm
1318
+ - "0"
1319
+ - "ON"
1320
+ - ""
1321
+ - ""
1322
+ - ""
1323
+ - ""
1324
+ - N
1325
+ - ""
1326
+ - ""
1327
+ - ""
1328
+ - ""
1329
+ - ""
1330
+ "2053":
1331
+ - "2053"
1332
+ - SWUNG DASH
1333
+ - Po
1334
+ - "0"
1335
+ - "ON"
1336
+ - ""
1337
+ - ""
1338
+ - ""
1339
+ - ""
1340
+ - N
1341
+ - ""
1342
+ - ""
1343
+ - ""
1344
+ - ""
1345
+ - ""
1346
+ "2054":
1347
+ - "2054"
1348
+ - INVERTED UNDERTIE
1349
+ - Pc
1350
+ - "0"
1351
+ - "ON"
1352
+ - ""
1353
+ - ""
1354
+ - ""
1355
+ - ""
1356
+ - N
1357
+ - ""
1358
+ - ""
1359
+ - ""
1360
+ - ""
1361
+ - ""
1362
+ "2055":
1363
+ - "2055"
1364
+ - FLOWER PUNCTUATION MARK
1365
+ - Po
1366
+ - "0"
1367
+ - "ON"
1368
+ - ""
1369
+ - ""
1370
+ - ""
1371
+ - ""
1372
+ - N
1373
+ - ""
1374
+ - ""
1375
+ - ""
1376
+ - ""
1377
+ - ""
1378
+ "2056":
1379
+ - "2056"
1380
+ - THREE DOT PUNCTUATION
1381
+ - Po
1382
+ - "0"
1383
+ - "ON"
1384
+ - ""
1385
+ - ""
1386
+ - ""
1387
+ - ""
1388
+ - N
1389
+ - ""
1390
+ - ""
1391
+ - ""
1392
+ - ""
1393
+ - ""
1394
+ "2057":
1395
+ - "2057"
1396
+ - QUADRUPLE PRIME
1397
+ - Po
1398
+ - "0"
1399
+ - "ON"
1400
+ - <compat> 2032 2032 2032 2032
1401
+ - ""
1402
+ - ""
1403
+ - ""
1404
+ - N
1405
+ - ""
1406
+ - ""
1407
+ - ""
1408
+ - ""
1409
+ - ""
1410
+ "2058":
1411
+ - "2058"
1412
+ - FOUR DOT PUNCTUATION
1413
+ - Po
1414
+ - "0"
1415
+ - "ON"
1416
+ - ""
1417
+ - ""
1418
+ - ""
1419
+ - ""
1420
+ - N
1421
+ - ""
1422
+ - ""
1423
+ - ""
1424
+ - ""
1425
+ - ""
1426
+ "2059":
1427
+ - "2059"
1428
+ - FIVE DOT PUNCTUATION
1429
+ - Po
1430
+ - "0"
1431
+ - "ON"
1432
+ - ""
1433
+ - ""
1434
+ - ""
1435
+ - ""
1436
+ - N
1437
+ - ""
1438
+ - ""
1439
+ - ""
1440
+ - ""
1441
+ - ""
1442
+ 205A:
1443
+ - 205A
1444
+ - TWO DOT PUNCTUATION
1445
+ - Po
1446
+ - "0"
1447
+ - "ON"
1448
+ - ""
1449
+ - ""
1450
+ - ""
1451
+ - ""
1452
+ - N
1453
+ - ""
1454
+ - ""
1455
+ - ""
1456
+ - ""
1457
+ - ""
1458
+ 205B:
1459
+ - 205B
1460
+ - FOUR DOT MARK
1461
+ - Po
1462
+ - "0"
1463
+ - "ON"
1464
+ - ""
1465
+ - ""
1466
+ - ""
1467
+ - ""
1468
+ - N
1469
+ - ""
1470
+ - ""
1471
+ - ""
1472
+ - ""
1473
+ - ""
1474
+ 205C:
1475
+ - 205C
1476
+ - DOTTED CROSS
1477
+ - Po
1478
+ - "0"
1479
+ - "ON"
1480
+ - ""
1481
+ - ""
1482
+ - ""
1483
+ - ""
1484
+ - N
1485
+ - ""
1486
+ - ""
1487
+ - ""
1488
+ - ""
1489
+ - ""
1490
+ 205D:
1491
+ - 205D
1492
+ - TRICOLON
1493
+ - Po
1494
+ - "0"
1495
+ - "ON"
1496
+ - ""
1497
+ - ""
1498
+ - ""
1499
+ - ""
1500
+ - N
1501
+ - ""
1502
+ - ""
1503
+ - ""
1504
+ - ""
1505
+ - ""
1506
+ 205E:
1507
+ - 205E
1508
+ - VERTICAL FOUR DOTS
1509
+ - Po
1510
+ - "0"
1511
+ - "ON"
1512
+ - ""
1513
+ - ""
1514
+ - ""
1515
+ - ""
1516
+ - N
1517
+ - ""
1518
+ - ""
1519
+ - ""
1520
+ - ""
1521
+ - ""
1522
+ 205F:
1523
+ - 205F
1524
+ - MEDIUM MATHEMATICAL SPACE
1525
+ - Zs
1526
+ - "0"
1527
+ - WS
1528
+ - <compat> 0020
1529
+ - ""
1530
+ - ""
1531
+ - ""
1532
+ - N
1533
+ - ""
1534
+ - ""
1535
+ - ""
1536
+ - ""
1537
+ - ""
1538
+ "2060":
1539
+ - "2060"
1540
+ - WORD JOINER
1541
+ - Cf
1542
+ - "0"
1543
+ - BN
1544
+ - ""
1545
+ - ""
1546
+ - ""
1547
+ - ""
1548
+ - N
1549
+ - ""
1550
+ - ""
1551
+ - ""
1552
+ - ""
1553
+ - ""
1554
+ "2061":
1555
+ - "2061"
1556
+ - FUNCTION APPLICATION
1557
+ - Cf
1558
+ - "0"
1559
+ - BN
1560
+ - ""
1561
+ - ""
1562
+ - ""
1563
+ - ""
1564
+ - N
1565
+ - ""
1566
+ - ""
1567
+ - ""
1568
+ - ""
1569
+ - ""
1570
+ "2062":
1571
+ - "2062"
1572
+ - INVISIBLE TIMES
1573
+ - Cf
1574
+ - "0"
1575
+ - BN
1576
+ - ""
1577
+ - ""
1578
+ - ""
1579
+ - ""
1580
+ - N
1581
+ - ""
1582
+ - ""
1583
+ - ""
1584
+ - ""
1585
+ - ""
1586
+ "2063":
1587
+ - "2063"
1588
+ - INVISIBLE SEPARATOR
1589
+ - Cf
1590
+ - "0"
1591
+ - BN
1592
+ - ""
1593
+ - ""
1594
+ - ""
1595
+ - ""
1596
+ - N
1597
+ - ""
1598
+ - ""
1599
+ - ""
1600
+ - ""
1601
+ - ""
1602
+ "2064":
1603
+ - "2064"
1604
+ - INVISIBLE PLUS
1605
+ - Cf
1606
+ - "0"
1607
+ - BN
1608
+ - ""
1609
+ - ""
1610
+ - ""
1611
+ - ""
1612
+ - N
1613
+ - ""
1614
+ - ""
1615
+ - ""
1616
+ - ""
1617
+ - ""
1618
+ 206A:
1619
+ - 206A
1620
+ - INHIBIT SYMMETRIC SWAPPING
1621
+ - Cf
1622
+ - "0"
1623
+ - BN
1624
+ - ""
1625
+ - ""
1626
+ - ""
1627
+ - ""
1628
+ - N
1629
+ - ""
1630
+ - ""
1631
+ - ""
1632
+ - ""
1633
+ - ""
1634
+ 206B:
1635
+ - 206B
1636
+ - ACTIVATE SYMMETRIC SWAPPING
1637
+ - Cf
1638
+ - "0"
1639
+ - BN
1640
+ - ""
1641
+ - ""
1642
+ - ""
1643
+ - ""
1644
+ - N
1645
+ - ""
1646
+ - ""
1647
+ - ""
1648
+ - ""
1649
+ - ""
1650
+ 206C:
1651
+ - 206C
1652
+ - INHIBIT ARABIC FORM SHAPING
1653
+ - Cf
1654
+ - "0"
1655
+ - BN
1656
+ - ""
1657
+ - ""
1658
+ - ""
1659
+ - ""
1660
+ - N
1661
+ - ""
1662
+ - ""
1663
+ - ""
1664
+ - ""
1665
+ - ""
1666
+ 206D:
1667
+ - 206D
1668
+ - ACTIVATE ARABIC FORM SHAPING
1669
+ - Cf
1670
+ - "0"
1671
+ - BN
1672
+ - ""
1673
+ - ""
1674
+ - ""
1675
+ - ""
1676
+ - N
1677
+ - ""
1678
+ - ""
1679
+ - ""
1680
+ - ""
1681
+ - ""
1682
+ 206E:
1683
+ - 206E
1684
+ - NATIONAL DIGIT SHAPES
1685
+ - Cf
1686
+ - "0"
1687
+ - BN
1688
+ - ""
1689
+ - ""
1690
+ - ""
1691
+ - ""
1692
+ - N
1693
+ - ""
1694
+ - ""
1695
+ - ""
1696
+ - ""
1697
+ - ""
1698
+ 206F:
1699
+ - 206F
1700
+ - NOMINAL DIGIT SHAPES
1701
+ - Cf
1702
+ - "0"
1703
+ - BN
1704
+ - ""
1705
+ - ""
1706
+ - ""
1707
+ - ""
1708
+ - N
1709
+ - ""
1710
+ - ""
1711
+ - ""
1712
+ - ""
1713
+ - ""