twitter_cldr 1.6.2 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (733) hide show
  1. data/Gemfile +3 -1
  2. data/History.txt +8 -0
  3. data/README.md +64 -14
  4. data/Rakefile +57 -7
  5. data/js/lib/compiler.rb +3 -1
  6. data/js/lib/mustache/bundle.coffee +5 -5
  7. data/js/lib/mustache/numbers/numbers.coffee +179 -0
  8. data/js/lib/mustache/shared/currencies.coffee +27 -0
  9. data/js/lib/renderers/numbers/numbers_renderer.rb +31 -0
  10. data/js/lib/renderers/plurals/rules/plural_rules_compiler.rb +5 -1
  11. data/js/lib/renderers/shared/currencies_renderer.rb +23 -0
  12. data/js/lib/twitter_cldr_js.rb +2 -0
  13. data/js/spec/js/calendars/timespan_spec.js +2 -2
  14. data/js/spec/js/numbers/currency_spec.js +34 -0
  15. data/js/spec/js/numbers/decimal_spec.js +24 -0
  16. data/js/spec/js/numbers/helpers/fraction_spec.js +23 -0
  17. data/js/spec/js/numbers/helpers/integer_spec.js +100 -0
  18. data/js/spec/js/numbers/number_spec.js +70 -0
  19. data/js/spec/js/numbers/percent_spec.js +22 -0
  20. data/js/spec/rb/renderers/plurals/plural_rules_compiler_spec.rb +4 -0
  21. data/lib/twitter_cldr/collation/collator.rb +14 -20
  22. data/lib/twitter_cldr/collation/trie_builder.rb +3 -3
  23. data/lib/twitter_cldr/formatters/numbers/decimal_formatter.rb +0 -6
  24. data/lib/twitter_cldr/formatters/numbers/helpers/base.rb +1 -1
  25. data/lib/twitter_cldr/formatters/numbers/number_formatter.rb +6 -2
  26. data/lib/twitter_cldr/normalization/base.rb +7 -1
  27. data/lib/twitter_cldr/normalization/nfd.rb +2 -6
  28. data/lib/twitter_cldr/normalization/nfkc.rb +4 -10
  29. data/lib/twitter_cldr/normalization/nfkd.rb +12 -37
  30. data/lib/twitter_cldr/resources.rb +10 -3
  31. data/lib/twitter_cldr/resources/canonical_compositions_updater.rb +51 -0
  32. data/lib/twitter_cldr/resources/composition_exclusions_importer.rb +62 -0
  33. data/lib/twitter_cldr/resources/custom_locales_resources_importer.rb +80 -0
  34. data/lib/twitter_cldr/resources/download.rb +41 -0
  35. data/lib/twitter_cldr/resources/loader.rb +1 -1
  36. data/lib/twitter_cldr/resources/locales_resources_importer.rb +105 -0
  37. data/lib/twitter_cldr/resources/phone_codes_importer.rb +48 -0
  38. data/lib/twitter_cldr/resources/postal_codes_importer.rb +44 -0
  39. data/lib/twitter_cldr/resources/tailoring_importer.rb +18 -16
  40. data/lib/twitter_cldr/resources/unicode_data_importer.rb +90 -0
  41. data/lib/twitter_cldr/shared.rb +3 -1
  42. data/lib/twitter_cldr/shared/code_point.rb +47 -36
  43. data/lib/twitter_cldr/shared/currencies.rb +12 -15
  44. data/lib/twitter_cldr/shared/phone_codes.rb +30 -0
  45. data/lib/twitter_cldr/shared/postal_codes.rb +35 -0
  46. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +11 -3
  47. data/lib/twitter_cldr/tokenizers/numbers/number_tokenizer.rb +8 -1
  48. data/lib/twitter_cldr/utils/code_points.rb +2 -2
  49. data/lib/twitter_cldr/version.rb +1 -1
  50. data/resources/collation/tailoring/af.yml +3 -3
  51. data/resources/collation/tailoring/ar.yml +3 -3
  52. data/resources/collation/tailoring/ca.yml +3 -3
  53. data/resources/collation/tailoring/cs.yml +3 -3
  54. data/resources/collation/tailoring/da.yml +4 -4
  55. data/resources/collation/tailoring/de.yml +3 -3
  56. data/resources/collation/tailoring/el.yml +3 -3
  57. data/resources/collation/tailoring/en.yml +3 -3
  58. data/resources/collation/tailoring/es.yml +3 -3
  59. data/resources/collation/tailoring/eu.yml +3 -3
  60. data/resources/collation/tailoring/fa.yml +3 -3
  61. data/resources/collation/tailoring/fi.yml +3 -3
  62. data/resources/collation/tailoring/fil.yml +3 -3
  63. data/resources/collation/tailoring/fr.yml +3 -3
  64. data/resources/collation/tailoring/he.yml +3 -3
  65. data/resources/collation/tailoring/hi.yml +3 -3
  66. data/resources/collation/tailoring/hu.yml +3 -3
  67. data/resources/collation/tailoring/id.yml +3 -3
  68. data/resources/collation/tailoring/it.yml +3 -3
  69. data/resources/collation/tailoring/ja.yml +3 -3
  70. data/resources/collation/tailoring/ko.yml +3 -3
  71. data/resources/collation/tailoring/ms.yml +3 -3
  72. data/resources/collation/tailoring/nb.yml +3 -3
  73. data/resources/collation/tailoring/nl.yml +3 -3
  74. data/resources/collation/tailoring/pl.yml +3 -3
  75. data/resources/collation/tailoring/pt.yml +3 -3
  76. data/resources/collation/tailoring/ru.yml +3 -3
  77. data/resources/collation/tailoring/sv.yml +3 -3
  78. data/resources/collation/tailoring/th.yml +3 -3
  79. data/resources/collation/tailoring/tr.yml +3 -3
  80. data/resources/collation/tailoring/uk.yml +3 -3
  81. data/resources/collation/tailoring/ur.yml +3 -3
  82. data/resources/collation/tailoring/zh-Hant.yml +3 -3
  83. data/resources/collation/tailoring/zh.yml +3 -3
  84. data/resources/custom/locales/af/units.yml +19 -19
  85. data/resources/custom/locales/ar/units.yml +35 -35
  86. data/resources/custom/locales/ca/units.yml +19 -19
  87. data/resources/custom/locales/cs/units.yml +23 -23
  88. data/resources/custom/locales/da/units.yml +19 -19
  89. data/resources/custom/locales/de/units.yml +19 -19
  90. data/resources/custom/locales/el/units.yml +19 -19
  91. data/resources/custom/locales/en/units.yml +10 -10
  92. data/resources/custom/locales/es/units.yml +19 -19
  93. data/resources/custom/locales/eu/units.yml +19 -19
  94. data/resources/custom/locales/fa/units.yml +15 -15
  95. data/resources/custom/locales/fi/units.yml +19 -19
  96. data/resources/custom/locales/fil/units.yml +19 -19
  97. data/resources/custom/locales/fr/units.yml +19 -19
  98. data/resources/custom/locales/he/units.yml +19 -19
  99. data/resources/custom/locales/hi/units.yml +19 -19
  100. data/resources/custom/locales/hu/units.yml +15 -15
  101. data/resources/custom/locales/id/units.yml +15 -15
  102. data/resources/custom/locales/it/units.yml +19 -19
  103. data/resources/custom/locales/ja/units.yml +15 -15
  104. data/resources/custom/locales/ko/units.yml +15 -15
  105. data/resources/custom/locales/ms/units.yml +15 -15
  106. data/resources/custom/locales/nb/units.yml +19 -19
  107. data/resources/custom/locales/nl/units.yml +19 -19
  108. data/resources/custom/locales/pl/units.yml +27 -23
  109. data/resources/custom/locales/pt/units.yml +19 -19
  110. data/resources/custom/locales/ru/units.yml +27 -27
  111. data/resources/custom/locales/sv/units.yml +19 -19
  112. data/resources/custom/locales/th/units.yml +15 -15
  113. data/resources/custom/locales/tr/units.yml +15 -15
  114. data/resources/custom/locales/uk/units.yml +27 -27
  115. data/resources/custom/locales/ur/units.yml +19 -19
  116. data/resources/custom/locales/zh-Hant/units.yml +15 -15
  117. data/resources/custom/locales/zh/units.yml +15 -15
  118. data/resources/locales/af/calendars.yml +114 -113
  119. data/resources/locales/af/languages.yml +174 -173
  120. data/resources/locales/af/numbers.yml +43 -42
  121. data/resources/locales/af/plurals.yml +3 -2
  122. data/resources/locales/af/units.yml +136 -135
  123. data/resources/locales/ar/calendars.yml +121 -120
  124. data/resources/locales/ar/languages.yml +501 -500
  125. data/resources/locales/ar/numbers.yml +36 -35
  126. data/resources/locales/ar/plurals.yml +9 -1
  127. data/resources/locales/ar/units.yml +220 -219
  128. data/resources/locales/ca/calendars.yml +157 -156
  129. data/resources/locales/ca/languages.yml +511 -510
  130. data/resources/locales/ca/numbers.yml +44 -43
  131. data/resources/locales/ca/plurals.yml +3 -2
  132. data/resources/locales/ca/units.yml +136 -135
  133. data/resources/locales/cs/calendars.yml +153 -152
  134. data/resources/locales/cs/languages.yml +472 -471
  135. data/resources/locales/cs/numbers.yml +45 -44
  136. data/resources/locales/cs/plurals.yml +3 -2
  137. data/resources/locales/cs/units.yml +164 -163
  138. data/resources/locales/da/calendars.yml +117 -116
  139. data/resources/locales/da/languages.yml +515 -514
  140. data/resources/locales/da/numbers.yml +44 -43
  141. data/resources/locales/da/plurals.yml +3 -1
  142. data/resources/locales/da/units.yml +122 -121
  143. data/resources/locales/de/calendars.yml +136 -135
  144. data/resources/locales/de/languages.yml +514 -513
  145. data/resources/locales/de/numbers.yml +44 -43
  146. data/resources/locales/de/plurals.yml +3 -1
  147. data/resources/locales/de/units.yml +136 -135
  148. data/resources/locales/el/calendars.yml +138 -137
  149. data/resources/locales/el/languages.yml +520 -519
  150. data/resources/locales/el/numbers.yml +43 -42
  151. data/resources/locales/el/plurals.yml +3 -2
  152. data/resources/locales/el/units.yml +143 -142
  153. data/resources/locales/en/calendars.yml +117 -116
  154. data/resources/locales/en/languages.yml +559 -558
  155. data/resources/locales/en/numbers.yml +32 -31
  156. data/resources/locales/en/plurals.yml +3 -1
  157. data/resources/locales/en/units.yml +108 -107
  158. data/resources/locales/es/calendars.yml +118 -117
  159. data/resources/locales/es/languages.yml +511 -510
  160. data/resources/locales/es/numbers.yml +42 -41
  161. data/resources/locales/es/plurals.yml +3 -1
  162. data/resources/locales/es/units.yml +136 -135
  163. data/resources/locales/eu/calendars.yml +124 -123
  164. data/resources/locales/eu/languages.yml +162 -161
  165. data/resources/locales/eu/numbers.yml +44 -43
  166. data/resources/locales/eu/plurals.yml +3 -2
  167. data/resources/locales/eu/units.yml +129 -128
  168. data/resources/locales/fa/calendars.yml +137 -136
  169. data/resources/locales/fa/languages.yml +489 -488
  170. data/resources/locales/fa/numbers.yml +31 -30
  171. data/resources/locales/fa/plurals.yml +3 -1
  172. data/resources/locales/fa/units.yml +122 -121
  173. data/resources/locales/fi/calendars.yml +153 -152
  174. data/resources/locales/fi/languages.yml +520 -519
  175. data/resources/locales/fi/numbers.yml +44 -43
  176. data/resources/locales/fi/plurals.yml +3 -1
  177. data/resources/locales/fi/units.yml +136 -135
  178. data/resources/locales/fil/calendars.yml +123 -122
  179. data/resources/locales/fil/languages.yml +169 -168
  180. data/resources/locales/fil/numbers.yml +32 -31
  181. data/resources/locales/fil/plurals.yml +3 -1
  182. data/resources/locales/fil/units.yml +122 -121
  183. data/resources/locales/fr/calendars.yml +144 -143
  184. data/resources/locales/fr/languages.yml +512 -511
  185. data/resources/locales/fr/numbers.yml +44 -43
  186. data/resources/locales/fr/plurals.yml +3 -1
  187. data/resources/locales/fr/units.yml +136 -135
  188. data/resources/locales/he/calendars.yml +120 -119
  189. data/resources/locales/he/languages.yml +282 -281
  190. data/resources/locales/he/numbers.yml +32 -31
  191. data/resources/locales/he/plurals.yml +3 -1
  192. data/resources/locales/he/units.yml +122 -121
  193. data/resources/locales/hi/calendars.yml +112 -111
  194. data/resources/locales/hi/languages.yml +511 -510
  195. data/resources/locales/hi/numbers.yml +32 -31
  196. data/resources/locales/hi/plurals.yml +3 -1
  197. data/resources/locales/hi/units.yml +122 -121
  198. data/resources/locales/hu/calendars.yml +142 -141
  199. data/resources/locales/hu/languages.yml +520 -519
  200. data/resources/locales/hu/numbers.yml +43 -42
  201. data/resources/locales/hu/plurals.yml +3 -1
  202. data/resources/locales/hu/units.yml +108 -107
  203. data/resources/locales/id/calendars.yml +117 -116
  204. data/resources/locales/id/languages.yml +514 -513
  205. data/resources/locales/id/numbers.yml +43 -42
  206. data/resources/locales/id/plurals.yml +3 -1
  207. data/resources/locales/id/units.yml +108 -107
  208. data/resources/locales/it/calendars.yml +123 -122
  209. data/resources/locales/it/languages.yml +504 -503
  210. data/resources/locales/it/numbers.yml +44 -43
  211. data/resources/locales/it/plurals.yml +3 -1
  212. data/resources/locales/it/units.yml +122 -121
  213. data/resources/locales/ja/calendars.yml +109 -108
  214. data/resources/locales/ja/languages.yml +516 -515
  215. data/resources/locales/ja/numbers.yml +35 -34
  216. data/resources/locales/ja/plurals.yml +3 -1
  217. data/resources/locales/ja/units.yml +108 -107
  218. data/resources/locales/ko/calendars.yml +112 -111
  219. data/resources/locales/ko/languages.yml +509 -508
  220. data/resources/locales/ko/numbers.yml +32 -31
  221. data/resources/locales/ko/plurals.yml +3 -1
  222. data/resources/locales/ko/units.yml +108 -107
  223. data/resources/locales/ms/calendars.yml +134 -133
  224. data/resources/locales/ms/languages.yml +158 -157
  225. data/resources/locales/ms/numbers.yml +31 -30
  226. data/resources/locales/ms/plurals.yml +3 -1
  227. data/resources/locales/ms/units.yml +136 -135
  228. data/resources/locales/nb/calendars.yml +143 -142
  229. data/resources/locales/nb/languages.yml +530 -529
  230. data/resources/locales/nb/numbers.yml +44 -43
  231. data/resources/locales/nb/plurals.yml +3 -2
  232. data/resources/locales/nb/units.yml +130 -129
  233. data/resources/locales/nl/calendars.yml +124 -123
  234. data/resources/locales/nl/languages.yml +516 -515
  235. data/resources/locales/nl/numbers.yml +44 -43
  236. data/resources/locales/nl/plurals.yml +3 -1
  237. data/resources/locales/nl/units.yml +122 -121
  238. data/resources/locales/pl/calendars.yml +148 -147
  239. data/resources/locales/pl/languages.yml +505 -504
  240. data/resources/locales/pl/numbers.yml +46 -45
  241. data/resources/locales/pl/plurals.yml +5 -1
  242. data/resources/locales/pl/units.yml +205 -204
  243. data/resources/locales/pt/calendars.yml +131 -130
  244. data/resources/locales/pt/languages.yml +517 -516
  245. data/resources/locales/pt/numbers.yml +44 -43
  246. data/resources/locales/pt/plurals.yml +3 -1
  247. data/resources/locales/pt/units.yml +136 -135
  248. data/resources/locales/ru/calendars.yml +143 -142
  249. data/resources/locales/ru/languages.yml +511 -510
  250. data/resources/locales/ru/numbers.yml +43 -42
  251. data/resources/locales/ru/plurals.yml +5 -1
  252. data/resources/locales/ru/units.yml +192 -191
  253. data/resources/locales/sv/calendars.yml +151 -150
  254. data/resources/locales/sv/languages.yml +531 -530
  255. data/resources/locales/sv/numbers.yml +44 -43
  256. data/resources/locales/sv/plurals.yml +3 -1
  257. data/resources/locales/sv/units.yml +136 -135
  258. data/resources/locales/th/calendars.yml +125 -124
  259. data/resources/locales/th/languages.yml +510 -509
  260. data/resources/locales/th/numbers.yml +41 -40
  261. data/resources/locales/th/plurals.yml +3 -1
  262. data/resources/locales/th/units.yml +108 -107
  263. data/resources/locales/tr/calendars.yml +139 -138
  264. data/resources/locales/tr/languages.yml +511 -510
  265. data/resources/locales/tr/numbers.yml +43 -42
  266. data/resources/locales/tr/plurals.yml +3 -1
  267. data/resources/locales/tr/units.yml +108 -107
  268. data/resources/locales/uk/calendars.yml +131 -130
  269. data/resources/locales/uk/languages.yml +520 -519
  270. data/resources/locales/uk/numbers.yml +46 -45
  271. data/resources/locales/uk/plurals.yml +5 -2
  272. data/resources/locales/uk/units.yml +192 -191
  273. data/resources/locales/ur/calendars.yml +111 -110
  274. data/resources/locales/ur/languages.yml +164 -163
  275. data/resources/locales/ur/numbers.yml +32 -31
  276. data/resources/locales/ur/plurals.yml +3 -1
  277. data/resources/locales/ur/units.yml +136 -135
  278. data/resources/locales/zh-Hant/calendars.yml +116 -115
  279. data/resources/locales/zh-Hant/languages.yml +510 -509
  280. data/resources/locales/zh-Hant/numbers.yml +35 -34
  281. data/resources/locales/zh-Hant/plurals.yml +3 -2
  282. data/resources/locales/zh-Hant/units.yml +108 -107
  283. data/resources/locales/zh/calendars.yml +138 -137
  284. data/resources/locales/zh/languages.yml +506 -505
  285. data/resources/locales/zh/numbers.yml +35 -34
  286. data/resources/locales/zh/plurals.yml +3 -1
  287. data/resources/locales/zh/units.yml +80 -79
  288. data/resources/shared/currencies.yml +448 -451
  289. data/resources/shared/phone_codes.yml +241 -0
  290. data/resources/shared/postal_codes.yml +160 -0
  291. data/resources/unicode_data/blocks.yml +221 -221
  292. data/resources/unicode_data/blocks/aegean_numbers.yml +913 -0
  293. data/resources/unicode_data/blocks/alchemical_symbols.yml +1857 -0
  294. data/resources/unicode_data/blocks/alphabetic_presentation_forms.yml +929 -0
  295. data/resources/unicode_data/blocks/ancient_greek_musical_notation.yml +1121 -0
  296. data/resources/unicode_data/blocks/ancient_greek_numbers.yml +1201 -0
  297. data/resources/unicode_data/blocks/ancient_symbols.yml +193 -0
  298. data/resources/unicode_data/blocks/arabic.yml +4049 -0
  299. data/resources/unicode_data/blocks/arabic_extended_a.yml +625 -0
  300. data/resources/unicode_data/blocks/arabic_mathematical_alphabetic_symbols.yml +2289 -0
  301. data/resources/unicode_data/{arabic_presentation_forms_a.yml → blocks/arabic_presentation_forms_a.yml} +7369 -7368
  302. data/resources/unicode_data/{arabic_presentation_forms_b.yml → blocks/arabic_presentation_forms_b.yml} +1414 -1414
  303. data/resources/unicode_data/blocks/arabic_supplement.yml +769 -0
  304. data/resources/unicode_data/blocks/armenian.yml +1393 -0
  305. data/resources/unicode_data/blocks/arrows.yml +1793 -0
  306. data/resources/unicode_data/blocks/avestan.yml +977 -0
  307. data/resources/unicode_data/blocks/balinese.yml +1937 -0
  308. data/resources/unicode_data/blocks/bamum.yml +1409 -0
  309. data/resources/unicode_data/blocks/bamum_supplement.yml +9105 -0
  310. data/resources/unicode_data/blocks/basic_latin.yml +2049 -0
  311. data/resources/unicode_data/blocks/batak.yml +897 -0
  312. data/resources/unicode_data/blocks/bengali.yml +1473 -0
  313. data/resources/unicode_data/blocks/block_elements.yml +513 -0
  314. data/resources/unicode_data/blocks/bopomofo.yml +657 -0
  315. data/resources/unicode_data/blocks/bopomofo_extended.yml +433 -0
  316. data/resources/unicode_data/{box_drawing.yml → blocks/box_drawing.yml} +1537 -1537
  317. data/resources/unicode_data/blocks/brahmi.yml +1729 -0
  318. data/resources/unicode_data/blocks/braille_patterns.yml +4097 -0
  319. data/resources/unicode_data/blocks/buginese.yml +481 -0
  320. data/resources/unicode_data/blocks/buhid.yml +321 -0
  321. data/resources/unicode_data/blocks/byzantine_musical_symbols.yml +3937 -0
  322. data/resources/unicode_data/blocks/carian.yml +785 -0
  323. data/resources/unicode_data/blocks/chakma.yml +1073 -0
  324. data/resources/unicode_data/blocks/cham.yml +1329 -0
  325. data/resources/unicode_data/blocks/cherokee.yml +1361 -0
  326. data/resources/unicode_data/{cjk_compatibility.yml → blocks/cjk_compatibility.yml} +2706 -2706
  327. data/resources/unicode_data/{cjk_compatibility_forms.yml → blocks/cjk_compatibility_forms.yml} +363 -363
  328. data/resources/unicode_data/blocks/cjk_compatibility_ideographs.yml +7553 -0
  329. data/resources/unicode_data/blocks/cjk_compatibility_ideographs_supplement.yml +8673 -0
  330. data/resources/unicode_data/blocks/cjk_radicals_supplement.yml +1841 -0
  331. data/resources/unicode_data/blocks/cjk_strokes.yml +577 -0
  332. data/resources/unicode_data/blocks/cjk_symbols_and_punctuation.yml +1025 -0
  333. data/resources/unicode_data/blocks/cjk_unified_ideographs.yml +33 -0
  334. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_a.yml +33 -0
  335. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_b.yml +33 -0
  336. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_c.yml +33 -0
  337. data/resources/unicode_data/blocks/cjk_unified_ideographs_extension_d.yml +33 -0
  338. data/resources/unicode_data/blocks/combining_diacritical_marks.yml +1793 -0
  339. data/resources/unicode_data/{combining_diacritical_marks_for_symbols.yml → blocks/combining_diacritical_marks_for_symbols.yml} +409 -409
  340. data/resources/unicode_data/blocks/combining_diacritical_marks_supplement.yml +689 -0
  341. data/resources/unicode_data/blocks/combining_half_marks.yml +113 -0
  342. data/resources/unicode_data/blocks/common_indic_number_forms.yml +161 -0
  343. data/resources/unicode_data/blocks/control_pictures.yml +625 -0
  344. data/resources/unicode_data/blocks/coptic.yml +1969 -0
  345. data/resources/unicode_data/blocks/counting_rod_numerals.yml +289 -0
  346. data/resources/unicode_data/blocks/cuneiform.yml +14065 -0
  347. data/resources/unicode_data/blocks/cuneiform_numbers_and_punctuation.yml +1649 -0
  348. data/resources/unicode_data/blocks/currency_symbols.yml +417 -0
  349. data/resources/unicode_data/blocks/cypriot_syllabary.yml +881 -0
  350. data/resources/unicode_data/{cyrillic.yml → blocks/cyrillic.yml} +2765 -2765
  351. data/resources/unicode_data/blocks/cyrillic_extended_a.yml +513 -0
  352. data/resources/unicode_data/blocks/cyrillic_extended_b.yml +1425 -0
  353. data/resources/unicode_data/blocks/cyrillic_supplement.yml +641 -0
  354. data/resources/unicode_data/blocks/deseret.yml +1281 -0
  355. data/resources/unicode_data/blocks/devanagari.yml +2033 -0
  356. data/resources/unicode_data/blocks/devanagari_extended.yml +449 -0
  357. data/resources/unicode_data/blocks/dingbats.yml +3057 -0
  358. data/resources/unicode_data/blocks/domino_tiles.yml +1601 -0
  359. data/resources/unicode_data/blocks/egyptian_hieroglyphs.yml +17137 -0
  360. data/resources/unicode_data/blocks/emoticons.yml +1217 -0
  361. data/resources/unicode_data/blocks/enclosed_alphanumeric_supplement.yml +2737 -0
  362. data/resources/unicode_data/blocks/enclosed_alphanumerics.yml +2561 -0
  363. data/resources/unicode_data/{enclosed_cjk_letters_and_months.yml → blocks/enclosed_cjk_letters_and_months.yml} +3067 -3067
  364. data/resources/unicode_data/{enclosed_ideographic_supplement.yml → blocks/enclosed_ideographic_supplement.yml} +685 -685
  365. data/resources/unicode_data/blocks/ethiopic.yml +5729 -0
  366. data/resources/unicode_data/blocks/ethiopic_extended.yml +1265 -0
  367. data/resources/unicode_data/blocks/ethiopic_extended_a.yml +513 -0
  368. data/resources/unicode_data/blocks/ethiopic_supplement.yml +417 -0
  369. data/resources/unicode_data/blocks/general_punctuation.yml +1713 -0
  370. data/resources/unicode_data/blocks/geometric_shapes.yml +1537 -0
  371. data/resources/unicode_data/blocks/georgian.yml +1409 -0
  372. data/resources/unicode_data/blocks/georgian_supplement.yml +641 -0
  373. data/resources/unicode_data/blocks/glagolitic.yml +1505 -0
  374. data/resources/unicode_data/blocks/gothic.yml +433 -0
  375. data/resources/unicode_data/{greek_and_coptic.yml → blocks/greek_and_coptic.yml} +1360 -1360
  376. data/resources/unicode_data/{greek_extended.yml → blocks/greek_extended.yml} +2330 -2330
  377. data/resources/unicode_data/blocks/gujarati.yml +1345 -0
  378. data/resources/unicode_data/blocks/gurmukhi.yml +1265 -0
  379. data/resources/unicode_data/{halfwidth_and_fullwidth_forms.yml → blocks/halfwidth_and_fullwidth_forms.yml} +2517 -2517
  380. data/resources/unicode_data/{hangul_compatibility_jamo.yml → blocks/hangul_compatibility_jamo.yml} +993 -993
  381. data/resources/unicode_data/blocks/hangul_jamo.yml +4097 -0
  382. data/resources/unicode_data/blocks/hangul_jamo_extended_a.yml +465 -0
  383. data/resources/unicode_data/blocks/hangul_jamo_extended_b.yml +1153 -0
  384. data/resources/unicode_data/blocks/hangul_syllables.yml +33 -0
  385. data/resources/unicode_data/blocks/hanunoo.yml +369 -0
  386. data/resources/unicode_data/blocks/hebrew.yml +1393 -0
  387. data/resources/unicode_data/blocks/high_private_use_surrogates.yml +33 -0
  388. data/resources/unicode_data/blocks/high_surrogates.yml +33 -0
  389. data/resources/unicode_data/blocks/hiragana.yml +1489 -0
  390. data/resources/unicode_data/blocks/ideographic_description_characters.yml +193 -0
  391. data/resources/unicode_data/blocks/imperial_aramaic.yml +497 -0
  392. data/resources/unicode_data/blocks/inscriptional_pahlavi.yml +433 -0
  393. data/resources/unicode_data/blocks/inscriptional_parthian.yml +481 -0
  394. data/resources/unicode_data/{ipa_extensions.yml → blocks/ipa_extensions.yml} +1050 -1050
  395. data/resources/unicode_data/blocks/javanese.yml +1457 -0
  396. data/resources/unicode_data/blocks/kaithi.yml +1057 -0
  397. data/resources/unicode_data/blocks/kana_supplement.yml +33 -0
  398. data/resources/unicode_data/{kanbun.yml → blocks/kanbun.yml} +167 -167
  399. data/resources/unicode_data/blocks/kangxi_radicals.yml +3425 -0
  400. data/resources/unicode_data/blocks/kannada.yml +1377 -0
  401. data/resources/unicode_data/blocks/katakana.yml +1537 -0
  402. data/resources/unicode_data/blocks/katakana_phonetic_extensions.yml +257 -0
  403. data/resources/unicode_data/blocks/kayah_li.yml +769 -0
  404. data/resources/unicode_data/blocks/kharoshthi.yml +1041 -0
  405. data/resources/unicode_data/blocks/khmer.yml +1825 -0
  406. data/resources/unicode_data/blocks/khmer_symbols.yml +513 -0
  407. data/resources/unicode_data/blocks/lao.yml +1073 -0
  408. data/resources/unicode_data/{latin_1_supplement.yml → blocks/latin_1_supplement.yml} +1319 -1319
  409. data/resources/unicode_data/{latin_extended_a.yml → blocks/latin_extended_a.yml} +1210 -1210
  410. data/resources/unicode_data/{latin_extended_additional.yml → blocks/latin_extended_additional.yml} +2460 -2460
  411. data/resources/unicode_data/{latin_extended_b.yml → blocks/latin_extended_b.yml} +2096 -2096
  412. data/resources/unicode_data/blocks/latin_extended_c.yml +513 -0
  413. data/resources/unicode_data/blocks/latin_extended_d.yml +2145 -0
  414. data/resources/unicode_data/blocks/lepcha.yml +1185 -0
  415. data/resources/unicode_data/blocks/letterlike_symbols.yml +1281 -0
  416. data/resources/unicode_data/blocks/limbu.yml +1057 -0
  417. data/resources/unicode_data/blocks/linear_b_ideograms.yml +1969 -0
  418. data/resources/unicode_data/blocks/linear_b_syllabary.yml +1409 -0
  419. data/resources/unicode_data/blocks/lisu.yml +769 -0
  420. data/resources/unicode_data/blocks/low_surrogates.yml +33 -0
  421. data/resources/unicode_data/blocks/lycian.yml +465 -0
  422. data/resources/unicode_data/blocks/lydian.yml +433 -0
  423. data/resources/unicode_data/blocks/mahjong_tiles.yml +705 -0
  424. data/resources/unicode_data/blocks/malayalam.yml +1569 -0
  425. data/resources/unicode_data/blocks/mandaic.yml +465 -0
  426. data/resources/unicode_data/{mathematical_alphanumeric_symbols.yml → blocks/mathematical_alphanumeric_symbols.yml} +11953 -11953
  427. data/resources/unicode_data/blocks/mathematical_operators.yml +4097 -0
  428. data/resources/unicode_data/blocks/meetei_mayek.yml +897 -0
  429. data/resources/unicode_data/blocks/meetei_mayek_extensions.yml +369 -0
  430. data/resources/unicode_data/blocks/meroitic_cursive.yml +417 -0
  431. data/resources/unicode_data/blocks/meroitic_hieroglyphs.yml +513 -0
  432. data/resources/unicode_data/blocks/miao.yml +2129 -0
  433. data/resources/unicode_data/blocks/miscellaneous_mathematical_symbols_a.yml +769 -0
  434. data/resources/unicode_data/blocks/miscellaneous_mathematical_symbols_b.yml +2049 -0
  435. data/resources/unicode_data/blocks/miscellaneous_symbols.yml +4097 -0
  436. data/resources/unicode_data/blocks/miscellaneous_symbols_and_arrows.yml +1393 -0
  437. data/resources/unicode_data/blocks/miscellaneous_symbols_and_pictographs.yml +8529 -0
  438. data/resources/unicode_data/blocks/miscellaneous_technical.yml +3905 -0
  439. data/resources/unicode_data/blocks/modifier_tone_letters.yml +513 -0
  440. data/resources/unicode_data/blocks/mongolian.yml +2497 -0
  441. data/resources/unicode_data/blocks/musical_symbols.yml +3521 -0
  442. data/resources/unicode_data/blocks/myanmar.yml +2561 -0
  443. data/resources/unicode_data/blocks/myanmar_extended_a.yml +449 -0
  444. data/resources/unicode_data/blocks/new_tai_lue.yml +1329 -0
  445. data/resources/unicode_data/blocks/nko.yml +945 -0
  446. data/resources/unicode_data/blocks/number_forms.yml +929 -0
  447. data/resources/unicode_data/blocks/ogham.yml +465 -0
  448. data/resources/unicode_data/blocks/ol_chiki.yml +769 -0
  449. data/resources/unicode_data/blocks/old_italic.yml +561 -0
  450. data/resources/unicode_data/blocks/old_persian.yml +801 -0
  451. data/resources/unicode_data/blocks/old_south_arabian.yml +513 -0
  452. data/resources/unicode_data/blocks/old_turkic.yml +1169 -0
  453. data/resources/unicode_data/blocks/optical_character_recognition.yml +177 -0
  454. data/resources/unicode_data/blocks/oriya.yml +1441 -0
  455. data/resources/unicode_data/blocks/osmanya.yml +641 -0
  456. data/resources/unicode_data/blocks/phags_pa.yml +897 -0
  457. data/resources/unicode_data/blocks/phaistos_disc.yml +737 -0
  458. data/resources/unicode_data/blocks/phoenician.yml +465 -0
  459. data/resources/unicode_data/blocks/phonetic_extensions.yml +2049 -0
  460. data/resources/unicode_data/blocks/phonetic_extensions_supplement.yml +1025 -0
  461. data/resources/unicode_data/blocks/playing_cards.yml +945 -0
  462. data/resources/unicode_data/blocks/private_use_area.yml +33 -0
  463. data/resources/unicode_data/blocks/rejang.yml +593 -0
  464. data/resources/unicode_data/blocks/rumi_numeral_symbols.yml +497 -0
  465. data/resources/unicode_data/blocks/runic.yml +1297 -0
  466. data/resources/unicode_data/blocks/samaritan.yml +977 -0
  467. data/resources/unicode_data/blocks/saurashtra.yml +1297 -0
  468. data/resources/unicode_data/blocks/sharada.yml +1329 -0
  469. data/resources/unicode_data/blocks/shavian.yml +769 -0
  470. data/resources/unicode_data/blocks/sinhala.yml +1281 -0
  471. data/resources/unicode_data/blocks/small_form_variants.yml +417 -0
  472. data/resources/unicode_data/blocks/sora_sompeng.yml +561 -0
  473. data/resources/unicode_data/blocks/spacing_modifier_letters.yml +1281 -0
  474. data/resources/unicode_data/blocks/specials.yml +81 -0
  475. data/resources/unicode_data/blocks/sundanese.yml +1025 -0
  476. data/resources/unicode_data/blocks/sundanese_supplement.yml +129 -0
  477. data/resources/unicode_data/blocks/superscripts_and_subscripts.yml +673 -0
  478. data/resources/unicode_data/blocks/supplemental_arrows_a.yml +257 -0
  479. data/resources/unicode_data/blocks/supplemental_arrows_b.yml +2049 -0
  480. data/resources/unicode_data/blocks/supplemental_mathematical_operators.yml +4097 -0
  481. data/resources/unicode_data/blocks/supplemental_punctuation.yml +961 -0
  482. data/resources/unicode_data/blocks/supplementary_private_use_area_a.yml +33 -0
  483. data/resources/unicode_data/blocks/supplementary_private_use_area_b.yml +33 -0
  484. data/resources/unicode_data/blocks/syloti_nagri.yml +705 -0
  485. data/resources/unicode_data/blocks/syriac.yml +1233 -0
  486. data/resources/unicode_data/blocks/tagalog.yml +321 -0
  487. data/resources/unicode_data/blocks/tagbanwa.yml +289 -0
  488. data/resources/unicode_data/blocks/tags.yml +1553 -0
  489. data/resources/unicode_data/blocks/tai_le.yml +561 -0
  490. data/resources/unicode_data/blocks/tai_tham.yml +2033 -0
  491. data/resources/unicode_data/blocks/tai_viet.yml +1153 -0
  492. data/resources/unicode_data/blocks/tai_xuan_jing_symbols.yml +1393 -0
  493. data/resources/unicode_data/blocks/takri.yml +1057 -0
  494. data/resources/unicode_data/blocks/tamil.yml +1153 -0
  495. data/resources/unicode_data/blocks/telugu.yml +1489 -0
  496. data/resources/unicode_data/blocks/thaana.yml +801 -0
  497. data/resources/unicode_data/blocks/thai.yml +1393 -0
  498. data/resources/unicode_data/blocks/tibetan.yml +3377 -0
  499. data/resources/unicode_data/blocks/tifinagh.yml +945 -0
  500. data/resources/unicode_data/blocks/transport_and_map_symbols.yml +1121 -0
  501. data/resources/unicode_data/blocks/ugaritic.yml +497 -0
  502. data/resources/unicode_data/blocks/unified_canadian_aboriginal_syllabics.yml +10241 -0
  503. data/resources/unicode_data/blocks/unified_canadian_aboriginal_syllabics_extended.yml +1121 -0
  504. data/resources/unicode_data/blocks/vai.yml +4801 -0
  505. data/resources/unicode_data/blocks/variation_selectors.yml +257 -0
  506. data/resources/unicode_data/blocks/variation_selectors_supplement.yml +3841 -0
  507. data/resources/unicode_data/blocks/vedic_extensions.yml +625 -0
  508. data/resources/unicode_data/{vertical_forms.yml → blocks/vertical_forms.yml} +121 -121
  509. data/resources/unicode_data/blocks/yi_radicals.yml +881 -0
  510. data/resources/unicode_data/blocks/yi_syllables.yml +18641 -0
  511. data/resources/unicode_data/blocks/yijing_hexagram_symbols.yml +1025 -0
  512. data/resources/unicode_data/canonical_compositions.yml +4925 -0
  513. data/resources/unicode_data/composition_exclusions.yml +78 -74
  514. data/resources/unicode_data/hangul_blocks.yml +9 -9
  515. data/spec/collation/collation_spec.rb +6 -6
  516. data/spec/collation/collator_spec.rb +18 -19
  517. data/spec/collation/trie_builder_spec.rb +6 -9
  518. data/spec/core_ext/array_spec.rb +1 -1
  519. data/spec/core_ext/string_spec.rb +1 -1
  520. data/spec/formatters/numbers/currency_formatter_spec.rb +5 -0
  521. data/spec/formatters/numbers/decimal_formatter_spec.rb +4 -0
  522. data/spec/formatters/numbers/number_formatter_spec.rb +4 -4
  523. data/spec/formatters/numbers/percent_formatter_spec.rb +8 -0
  524. data/spec/normalization/base_spec.rb +2 -2
  525. data/spec/normalization/normalization_spec.rb +7 -3
  526. data/spec/readme_spec.rb +9 -9
  527. data/spec/resources/loader_spec.rb +4 -4
  528. data/spec/shared/code_point_spec.rb +102 -62
  529. data/spec/shared/currencies_spec.rb +17 -19
  530. data/spec/shared/phone_codes_spec.rb +49 -0
  531. data/spec/shared/postal_codes_spec.rb +68 -0
  532. data/spec/utils/code_points_spec.rb +6 -6
  533. metadata +264 -224
  534. data/resources/unicode_data/aegean_numbers.yml +0 -913
  535. data/resources/unicode_data/alchemical_symbols.yml +0 -1857
  536. data/resources/unicode_data/alphabetic_presentation_forms.yml +0 -929
  537. data/resources/unicode_data/ancient_greek_musical_notation.yml +0 -1121
  538. data/resources/unicode_data/ancient_greek_numbers.yml +0 -1201
  539. data/resources/unicode_data/ancient_symbols.yml +0 -193
  540. data/resources/unicode_data/arabic.yml +0 -4049
  541. data/resources/unicode_data/arabic_extended_a.yml +0 -625
  542. data/resources/unicode_data/arabic_mathematical_alphabetic_symbols.yml +0 -2289
  543. data/resources/unicode_data/arabic_supplement.yml +0 -769
  544. data/resources/unicode_data/armenian.yml +0 -1393
  545. data/resources/unicode_data/arrows.yml +0 -1793
  546. data/resources/unicode_data/avestan.yml +0 -977
  547. data/resources/unicode_data/balinese.yml +0 -1937
  548. data/resources/unicode_data/bamum.yml +0 -1409
  549. data/resources/unicode_data/bamum_supplement.yml +0 -9105
  550. data/resources/unicode_data/basic_latin.yml +0 -2049
  551. data/resources/unicode_data/batak.yml +0 -897
  552. data/resources/unicode_data/bengali.yml +0 -1473
  553. data/resources/unicode_data/block_elements.yml +0 -513
  554. data/resources/unicode_data/bopomofo.yml +0 -657
  555. data/resources/unicode_data/bopomofo_extended.yml +0 -433
  556. data/resources/unicode_data/brahmi.yml +0 -1729
  557. data/resources/unicode_data/braille_patterns.yml +0 -4097
  558. data/resources/unicode_data/buginese.yml +0 -481
  559. data/resources/unicode_data/buhid.yml +0 -321
  560. data/resources/unicode_data/byzantine_musical_symbols.yml +0 -3937
  561. data/resources/unicode_data/carian.yml +0 -785
  562. data/resources/unicode_data/chakma.yml +0 -1073
  563. data/resources/unicode_data/cham.yml +0 -1329
  564. data/resources/unicode_data/cherokee.yml +0 -1361
  565. data/resources/unicode_data/cjk_compatibility_ideographs.yml +0 -7553
  566. data/resources/unicode_data/cjk_compatibility_ideographs_supplement.yml +0 -8673
  567. data/resources/unicode_data/cjk_radicals_supplement.yml +0 -1841
  568. data/resources/unicode_data/cjk_strokes.yml +0 -577
  569. data/resources/unicode_data/cjk_symbols_and_punctuation.yml +0 -1025
  570. data/resources/unicode_data/cjk_unified_ideographs.yml +0 -33
  571. data/resources/unicode_data/cjk_unified_ideographs_extension_a.yml +0 -33
  572. data/resources/unicode_data/cjk_unified_ideographs_extension_b.yml +0 -33
  573. data/resources/unicode_data/cjk_unified_ideographs_extension_c.yml +0 -33
  574. data/resources/unicode_data/cjk_unified_ideographs_extension_d.yml +0 -33
  575. data/resources/unicode_data/combining_diacritical_marks.yml +0 -1793
  576. data/resources/unicode_data/combining_diacritical_marks_supplement.yml +0 -689
  577. data/resources/unicode_data/combining_half_marks.yml +0 -113
  578. data/resources/unicode_data/common_indic_number_forms.yml +0 -161
  579. data/resources/unicode_data/control_pictures.yml +0 -625
  580. data/resources/unicode_data/coptic.yml +0 -1969
  581. data/resources/unicode_data/counting_rod_numerals.yml +0 -289
  582. data/resources/unicode_data/cuneiform.yml +0 -14065
  583. data/resources/unicode_data/cuneiform_numbers_and_punctuation.yml +0 -1649
  584. data/resources/unicode_data/currency_symbols.yml +0 -417
  585. data/resources/unicode_data/cypriot_syllabary.yml +0 -881
  586. data/resources/unicode_data/cyrillic_extended_a.yml +0 -513
  587. data/resources/unicode_data/cyrillic_extended_b.yml +0 -1425
  588. data/resources/unicode_data/cyrillic_supplement.yml +0 -641
  589. data/resources/unicode_data/decomposition_map.yml +0 -4565
  590. data/resources/unicode_data/deseret.yml +0 -1281
  591. data/resources/unicode_data/devanagari.yml +0 -2033
  592. data/resources/unicode_data/devanagari_extended.yml +0 -449
  593. data/resources/unicode_data/dingbats.yml +0 -3057
  594. data/resources/unicode_data/domino_tiles.yml +0 -1601
  595. data/resources/unicode_data/egyptian_hieroglyphs.yml +0 -17137
  596. data/resources/unicode_data/emoticons.yml +0 -1217
  597. data/resources/unicode_data/enclosed_alphanumeric_supplement.yml +0 -2737
  598. data/resources/unicode_data/enclosed_alphanumerics.yml +0 -2561
  599. data/resources/unicode_data/ethiopic.yml +0 -5729
  600. data/resources/unicode_data/ethiopic_extended.yml +0 -1265
  601. data/resources/unicode_data/ethiopic_extended_a.yml +0 -513
  602. data/resources/unicode_data/ethiopic_supplement.yml +0 -417
  603. data/resources/unicode_data/general_punctuation.yml +0 -1713
  604. data/resources/unicode_data/geometric_shapes.yml +0 -1537
  605. data/resources/unicode_data/georgian.yml +0 -1409
  606. data/resources/unicode_data/georgian_supplement.yml +0 -641
  607. data/resources/unicode_data/glagolitic.yml +0 -1505
  608. data/resources/unicode_data/gothic.yml +0 -433
  609. data/resources/unicode_data/gujarati.yml +0 -1345
  610. data/resources/unicode_data/gurmukhi.yml +0 -1265
  611. data/resources/unicode_data/hangul_jamo.yml +0 -4097
  612. data/resources/unicode_data/hangul_jamo_extended_a.yml +0 -465
  613. data/resources/unicode_data/hangul_jamo_extended_b.yml +0 -1153
  614. data/resources/unicode_data/hangul_syllables.yml +0 -33
  615. data/resources/unicode_data/hanunoo.yml +0 -369
  616. data/resources/unicode_data/hebrew.yml +0 -1393
  617. data/resources/unicode_data/high_private_use_surrogates.yml +0 -33
  618. data/resources/unicode_data/high_surrogates.yml +0 -33
  619. data/resources/unicode_data/hiragana.yml +0 -1489
  620. data/resources/unicode_data/ideographic_description_characters.yml +0 -193
  621. data/resources/unicode_data/imperial_aramaic.yml +0 -497
  622. data/resources/unicode_data/inscriptional_pahlavi.yml +0 -433
  623. data/resources/unicode_data/inscriptional_parthian.yml +0 -481
  624. data/resources/unicode_data/javanese.yml +0 -1457
  625. data/resources/unicode_data/kaithi.yml +0 -1057
  626. data/resources/unicode_data/kana_supplement.yml +0 -33
  627. data/resources/unicode_data/kangxi_radicals.yml +0 -3425
  628. data/resources/unicode_data/kannada.yml +0 -1377
  629. data/resources/unicode_data/katakana.yml +0 -1537
  630. data/resources/unicode_data/katakana_phonetic_extensions.yml +0 -257
  631. data/resources/unicode_data/kayah_li.yml +0 -769
  632. data/resources/unicode_data/kharoshthi.yml +0 -1041
  633. data/resources/unicode_data/khmer.yml +0 -1825
  634. data/resources/unicode_data/khmer_symbols.yml +0 -513
  635. data/resources/unicode_data/lao.yml +0 -1073
  636. data/resources/unicode_data/latin_extended_c.yml +0 -513
  637. data/resources/unicode_data/latin_extended_d.yml +0 -2145
  638. data/resources/unicode_data/lepcha.yml +0 -1185
  639. data/resources/unicode_data/letterlike_symbols.yml +0 -1281
  640. data/resources/unicode_data/limbu.yml +0 -1057
  641. data/resources/unicode_data/linear_b_ideograms.yml +0 -1969
  642. data/resources/unicode_data/linear_b_syllabary.yml +0 -1409
  643. data/resources/unicode_data/lisu.yml +0 -769
  644. data/resources/unicode_data/low_surrogates.yml +0 -33
  645. data/resources/unicode_data/lycian.yml +0 -465
  646. data/resources/unicode_data/lydian.yml +0 -433
  647. data/resources/unicode_data/mahjong_tiles.yml +0 -705
  648. data/resources/unicode_data/malayalam.yml +0 -1569
  649. data/resources/unicode_data/mandaic.yml +0 -465
  650. data/resources/unicode_data/mathematical_operators.yml +0 -4097
  651. data/resources/unicode_data/meetei_mayek.yml +0 -897
  652. data/resources/unicode_data/meetei_mayek_extensions.yml +0 -369
  653. data/resources/unicode_data/meroitic_cursive.yml +0 -417
  654. data/resources/unicode_data/meroitic_hieroglyphs.yml +0 -513
  655. data/resources/unicode_data/miao.yml +0 -2129
  656. data/resources/unicode_data/miscellaneous_mathematical_symbols_a.yml +0 -769
  657. data/resources/unicode_data/miscellaneous_mathematical_symbols_b.yml +0 -2049
  658. data/resources/unicode_data/miscellaneous_symbols.yml +0 -4097
  659. data/resources/unicode_data/miscellaneous_symbols_and_arrows.yml +0 -1393
  660. data/resources/unicode_data/miscellaneous_symbols_and_pictographs.yml +0 -8529
  661. data/resources/unicode_data/miscellaneous_technical.yml +0 -3905
  662. data/resources/unicode_data/modifier_tone_letters.yml +0 -513
  663. data/resources/unicode_data/mongolian.yml +0 -2497
  664. data/resources/unicode_data/musical_symbols.yml +0 -3521
  665. data/resources/unicode_data/myanmar.yml +0 -2561
  666. data/resources/unicode_data/myanmar_extended_a.yml +0 -449
  667. data/resources/unicode_data/new_tai_lue.yml +0 -1329
  668. data/resources/unicode_data/nko.yml +0 -945
  669. data/resources/unicode_data/number_forms.yml +0 -929
  670. data/resources/unicode_data/ogham.yml +0 -465
  671. data/resources/unicode_data/ol_chiki.yml +0 -769
  672. data/resources/unicode_data/old_italic.yml +0 -561
  673. data/resources/unicode_data/old_persian.yml +0 -801
  674. data/resources/unicode_data/old_south_arabian.yml +0 -513
  675. data/resources/unicode_data/old_turkic.yml +0 -1169
  676. data/resources/unicode_data/optical_character_recognition.yml +0 -177
  677. data/resources/unicode_data/oriya.yml +0 -1441
  678. data/resources/unicode_data/osmanya.yml +0 -641
  679. data/resources/unicode_data/phags_pa.yml +0 -897
  680. data/resources/unicode_data/phaistos_disc.yml +0 -737
  681. data/resources/unicode_data/phoenician.yml +0 -465
  682. data/resources/unicode_data/phonetic_extensions.yml +0 -2049
  683. data/resources/unicode_data/phonetic_extensions_supplement.yml +0 -1025
  684. data/resources/unicode_data/playing_cards.yml +0 -945
  685. data/resources/unicode_data/private_use_area.yml +0 -33
  686. data/resources/unicode_data/rejang.yml +0 -593
  687. data/resources/unicode_data/rumi_numeral_symbols.yml +0 -497
  688. data/resources/unicode_data/runic.yml +0 -1297
  689. data/resources/unicode_data/samaritan.yml +0 -977
  690. data/resources/unicode_data/saurashtra.yml +0 -1297
  691. data/resources/unicode_data/sharada.yml +0 -1329
  692. data/resources/unicode_data/shavian.yml +0 -769
  693. data/resources/unicode_data/sinhala.yml +0 -1281
  694. data/resources/unicode_data/small_form_variants.yml +0 -417
  695. data/resources/unicode_data/sora_sompeng.yml +0 -561
  696. data/resources/unicode_data/spacing_modifier_letters.yml +0 -1281
  697. data/resources/unicode_data/specials.yml +0 -81
  698. data/resources/unicode_data/sundanese.yml +0 -1025
  699. data/resources/unicode_data/sundanese_supplement.yml +0 -129
  700. data/resources/unicode_data/superscripts_and_subscripts.yml +0 -673
  701. data/resources/unicode_data/supplemental_arrows_a.yml +0 -257
  702. data/resources/unicode_data/supplemental_arrows_b.yml +0 -2049
  703. data/resources/unicode_data/supplemental_mathematical_operators.yml +0 -4097
  704. data/resources/unicode_data/supplemental_punctuation.yml +0 -961
  705. data/resources/unicode_data/supplementary_private_use_area_a.yml +0 -33
  706. data/resources/unicode_data/supplementary_private_use_area_b.yml +0 -33
  707. data/resources/unicode_data/syloti_nagri.yml +0 -705
  708. data/resources/unicode_data/syriac.yml +0 -1233
  709. data/resources/unicode_data/tagalog.yml +0 -321
  710. data/resources/unicode_data/tagbanwa.yml +0 -289
  711. data/resources/unicode_data/tags.yml +0 -1553
  712. data/resources/unicode_data/tai_le.yml +0 -561
  713. data/resources/unicode_data/tai_tham.yml +0 -2033
  714. data/resources/unicode_data/tai_viet.yml +0 -1153
  715. data/resources/unicode_data/tai_xuan_jing_symbols.yml +0 -1393
  716. data/resources/unicode_data/takri.yml +0 -1057
  717. data/resources/unicode_data/tamil.yml +0 -1153
  718. data/resources/unicode_data/telugu.yml +0 -1489
  719. data/resources/unicode_data/thaana.yml +0 -801
  720. data/resources/unicode_data/thai.yml +0 -1393
  721. data/resources/unicode_data/tibetan.yml +0 -3377
  722. data/resources/unicode_data/tifinagh.yml +0 -945
  723. data/resources/unicode_data/transport_and_map_symbols.yml +0 -1121
  724. data/resources/unicode_data/ugaritic.yml +0 -497
  725. data/resources/unicode_data/unified_canadian_aboriginal_syllabics.yml +0 -10241
  726. data/resources/unicode_data/unified_canadian_aboriginal_syllabics_extended.yml +0 -1121
  727. data/resources/unicode_data/vai.yml +0 -4801
  728. data/resources/unicode_data/variation_selectors.yml +0 -257
  729. data/resources/unicode_data/variation_selectors_supplement.yml +0 -3841
  730. data/resources/unicode_data/vedic_extensions.yml +0 -625
  731. data/resources/unicode_data/yi_radicals.yml +0 -881
  732. data/resources/unicode_data/yi_syllables.yml +0 -18641
  733. data/resources/unicode_data/yijing_hexagram_symbols.yml +0 -1025
@@ -0,0 +1,433 @@
1
+ ---
2
+ 66352:
3
+ - 66352
4
+ - GOTHIC LETTER AHSA
5
+ - Lo
6
+ - '0'
7
+ - L
8
+ - ''
9
+ - ''
10
+ - ''
11
+ - ''
12
+ - N
13
+ - ''
14
+ - ''
15
+ - ''
16
+ - ''
17
+ - ''
18
+ 66353:
19
+ - 66353
20
+ - GOTHIC LETTER BAIRKAN
21
+ - Lo
22
+ - '0'
23
+ - L
24
+ - ''
25
+ - ''
26
+ - ''
27
+ - ''
28
+ - N
29
+ - ''
30
+ - ''
31
+ - ''
32
+ - ''
33
+ - ''
34
+ 66354:
35
+ - 66354
36
+ - GOTHIC LETTER GIBA
37
+ - Lo
38
+ - '0'
39
+ - L
40
+ - ''
41
+ - ''
42
+ - ''
43
+ - ''
44
+ - N
45
+ - ''
46
+ - ''
47
+ - ''
48
+ - ''
49
+ - ''
50
+ 66355:
51
+ - 66355
52
+ - GOTHIC LETTER DAGS
53
+ - Lo
54
+ - '0'
55
+ - L
56
+ - ''
57
+ - ''
58
+ - ''
59
+ - ''
60
+ - N
61
+ - ''
62
+ - ''
63
+ - ''
64
+ - ''
65
+ - ''
66
+ 66356:
67
+ - 66356
68
+ - GOTHIC LETTER AIHVUS
69
+ - Lo
70
+ - '0'
71
+ - L
72
+ - ''
73
+ - ''
74
+ - ''
75
+ - ''
76
+ - N
77
+ - ''
78
+ - ''
79
+ - ''
80
+ - ''
81
+ - ''
82
+ 66357:
83
+ - 66357
84
+ - GOTHIC LETTER QAIRTHRA
85
+ - Lo
86
+ - '0'
87
+ - L
88
+ - ''
89
+ - ''
90
+ - ''
91
+ - ''
92
+ - N
93
+ - ''
94
+ - ''
95
+ - ''
96
+ - ''
97
+ - ''
98
+ 66358:
99
+ - 66358
100
+ - GOTHIC LETTER IUJA
101
+ - Lo
102
+ - '0'
103
+ - L
104
+ - ''
105
+ - ''
106
+ - ''
107
+ - ''
108
+ - N
109
+ - ''
110
+ - ''
111
+ - ''
112
+ - ''
113
+ - ''
114
+ 66359:
115
+ - 66359
116
+ - GOTHIC LETTER HAGL
117
+ - Lo
118
+ - '0'
119
+ - L
120
+ - ''
121
+ - ''
122
+ - ''
123
+ - ''
124
+ - N
125
+ - ''
126
+ - ''
127
+ - ''
128
+ - ''
129
+ - ''
130
+ 66360:
131
+ - 66360
132
+ - GOTHIC LETTER THIUTH
133
+ - Lo
134
+ - '0'
135
+ - L
136
+ - ''
137
+ - ''
138
+ - ''
139
+ - ''
140
+ - N
141
+ - ''
142
+ - ''
143
+ - ''
144
+ - ''
145
+ - ''
146
+ 66361:
147
+ - 66361
148
+ - GOTHIC LETTER EIS
149
+ - Lo
150
+ - '0'
151
+ - L
152
+ - ''
153
+ - ''
154
+ - ''
155
+ - ''
156
+ - N
157
+ - ''
158
+ - ''
159
+ - ''
160
+ - ''
161
+ - ''
162
+ 66362:
163
+ - 66362
164
+ - GOTHIC LETTER KUSMA
165
+ - Lo
166
+ - '0'
167
+ - L
168
+ - ''
169
+ - ''
170
+ - ''
171
+ - ''
172
+ - N
173
+ - ''
174
+ - ''
175
+ - ''
176
+ - ''
177
+ - ''
178
+ 66363:
179
+ - 66363
180
+ - GOTHIC LETTER LAGUS
181
+ - Lo
182
+ - '0'
183
+ - L
184
+ - ''
185
+ - ''
186
+ - ''
187
+ - ''
188
+ - N
189
+ - ''
190
+ - ''
191
+ - ''
192
+ - ''
193
+ - ''
194
+ 66364:
195
+ - 66364
196
+ - GOTHIC LETTER MANNA
197
+ - Lo
198
+ - '0'
199
+ - L
200
+ - ''
201
+ - ''
202
+ - ''
203
+ - ''
204
+ - N
205
+ - ''
206
+ - ''
207
+ - ''
208
+ - ''
209
+ - ''
210
+ 66365:
211
+ - 66365
212
+ - GOTHIC LETTER NAUTHS
213
+ - Lo
214
+ - '0'
215
+ - L
216
+ - ''
217
+ - ''
218
+ - ''
219
+ - ''
220
+ - N
221
+ - ''
222
+ - ''
223
+ - ''
224
+ - ''
225
+ - ''
226
+ 66366:
227
+ - 66366
228
+ - GOTHIC LETTER JER
229
+ - Lo
230
+ - '0'
231
+ - L
232
+ - ''
233
+ - ''
234
+ - ''
235
+ - ''
236
+ - N
237
+ - ''
238
+ - ''
239
+ - ''
240
+ - ''
241
+ - ''
242
+ 66367:
243
+ - 66367
244
+ - GOTHIC LETTER URUS
245
+ - Lo
246
+ - '0'
247
+ - L
248
+ - ''
249
+ - ''
250
+ - ''
251
+ - ''
252
+ - N
253
+ - ''
254
+ - ''
255
+ - ''
256
+ - ''
257
+ - ''
258
+ 66368:
259
+ - 66368
260
+ - GOTHIC LETTER PAIRTHRA
261
+ - Lo
262
+ - '0'
263
+ - L
264
+ - ''
265
+ - ''
266
+ - ''
267
+ - ''
268
+ - N
269
+ - ''
270
+ - ''
271
+ - ''
272
+ - ''
273
+ - ''
274
+ 66369:
275
+ - 66369
276
+ - GOTHIC LETTER NINETY
277
+ - Nl
278
+ - '0'
279
+ - L
280
+ - ''
281
+ - ''
282
+ - ''
283
+ - '90'
284
+ - N
285
+ - ''
286
+ - ''
287
+ - ''
288
+ - ''
289
+ - ''
290
+ 66370:
291
+ - 66370
292
+ - GOTHIC LETTER RAIDA
293
+ - Lo
294
+ - '0'
295
+ - L
296
+ - ''
297
+ - ''
298
+ - ''
299
+ - ''
300
+ - N
301
+ - ''
302
+ - ''
303
+ - ''
304
+ - ''
305
+ - ''
306
+ 66371:
307
+ - 66371
308
+ - GOTHIC LETTER SAUIL
309
+ - Lo
310
+ - '0'
311
+ - L
312
+ - ''
313
+ - ''
314
+ - ''
315
+ - ''
316
+ - N
317
+ - ''
318
+ - ''
319
+ - ''
320
+ - ''
321
+ - ''
322
+ 66372:
323
+ - 66372
324
+ - GOTHIC LETTER TEIWS
325
+ - Lo
326
+ - '0'
327
+ - L
328
+ - ''
329
+ - ''
330
+ - ''
331
+ - ''
332
+ - N
333
+ - ''
334
+ - ''
335
+ - ''
336
+ - ''
337
+ - ''
338
+ 66373:
339
+ - 66373
340
+ - GOTHIC LETTER WINJA
341
+ - Lo
342
+ - '0'
343
+ - L
344
+ - ''
345
+ - ''
346
+ - ''
347
+ - ''
348
+ - N
349
+ - ''
350
+ - ''
351
+ - ''
352
+ - ''
353
+ - ''
354
+ 66374:
355
+ - 66374
356
+ - GOTHIC LETTER FAIHU
357
+ - Lo
358
+ - '0'
359
+ - L
360
+ - ''
361
+ - ''
362
+ - ''
363
+ - ''
364
+ - N
365
+ - ''
366
+ - ''
367
+ - ''
368
+ - ''
369
+ - ''
370
+ 66375:
371
+ - 66375
372
+ - GOTHIC LETTER IGGWS
373
+ - Lo
374
+ - '0'
375
+ - L
376
+ - ''
377
+ - ''
378
+ - ''
379
+ - ''
380
+ - N
381
+ - ''
382
+ - ''
383
+ - ''
384
+ - ''
385
+ - ''
386
+ 66376:
387
+ - 66376
388
+ - GOTHIC LETTER HWAIR
389
+ - Lo
390
+ - '0'
391
+ - L
392
+ - ''
393
+ - ''
394
+ - ''
395
+ - ''
396
+ - N
397
+ - ''
398
+ - ''
399
+ - ''
400
+ - ''
401
+ - ''
402
+ 66377:
403
+ - 66377
404
+ - GOTHIC LETTER OTHAL
405
+ - Lo
406
+ - '0'
407
+ - L
408
+ - ''
409
+ - ''
410
+ - ''
411
+ - ''
412
+ - N
413
+ - ''
414
+ - ''
415
+ - ''
416
+ - ''
417
+ - ''
418
+ 66378:
419
+ - 66378
420
+ - GOTHIC LETTER NINE HUNDRED
421
+ - Nl
422
+ - '0'
423
+ - L
424
+ - ''
425
+ - ''
426
+ - ''
427
+ - '900'
428
+ - N
429
+ - ''
430
+ - ''
431
+ - ''
432
+ - ''
433
+ - ''
@@ -1,2145 +1,2145 @@
1
- ---
2
- "0370":
3
- - "0370"
1
+ ---
2
+ 880:
3
+ - 880
4
4
  - GREEK CAPITAL LETTER HETA
5
5
  - Lu
6
- - "0"
7
- - L
8
- - ""
9
- - ""
10
- - ""
11
- - ""
12
- - N
13
- - ""
14
- - ""
15
- - ""
16
- - "0371"
17
- - ""
18
- "0371":
19
- - "0371"
6
+ - '0'
7
+ - L
8
+ - ''
9
+ - ''
10
+ - ''
11
+ - ''
12
+ - N
13
+ - ''
14
+ - ''
15
+ - ''
16
+ - '0371'
17
+ - ''
18
+ 881:
19
+ - 881
20
20
  - GREEK SMALL LETTER HETA
21
21
  - Ll
22
- - "0"
22
+ - '0'
23
23
  - L
24
- - ""
25
- - ""
26
- - ""
27
- - ""
24
+ - ''
25
+ - ''
26
+ - ''
27
+ - ''
28
28
  - N
29
- - ""
30
- - ""
31
- - "0370"
32
- - ""
33
- - "0370"
34
- "0372":
35
- - "0372"
29
+ - ''
30
+ - ''
31
+ - '0370'
32
+ - ''
33
+ - '0370'
34
+ 882:
35
+ - 882
36
36
  - GREEK CAPITAL LETTER ARCHAIC SAMPI
37
37
  - Lu
38
- - "0"
39
- - L
40
- - ""
41
- - ""
42
- - ""
43
- - ""
44
- - N
45
- - ""
46
- - ""
47
- - ""
48
- - "0373"
49
- - ""
50
- "0373":
51
- - "0373"
38
+ - '0'
39
+ - L
40
+ - ''
41
+ - ''
42
+ - ''
43
+ - ''
44
+ - N
45
+ - ''
46
+ - ''
47
+ - ''
48
+ - '0373'
49
+ - ''
50
+ 883:
51
+ - 883
52
52
  - GREEK SMALL LETTER ARCHAIC SAMPI
53
53
  - Ll
54
- - "0"
54
+ - '0'
55
55
  - L
56
- - ""
57
- - ""
58
- - ""
59
- - ""
56
+ - ''
57
+ - ''
58
+ - ''
59
+ - ''
60
60
  - N
61
- - ""
62
- - ""
63
- - "0372"
64
- - ""
65
- - "0372"
66
- "0374":
67
- - "0374"
61
+ - ''
62
+ - ''
63
+ - '0372'
64
+ - ''
65
+ - '0372'
66
+ 884:
67
+ - 884
68
68
  - GREEK NUMERAL SIGN
69
69
  - Lm
70
- - "0"
71
- - "ON"
70
+ - '0'
71
+ - 'ON'
72
72
  - 02B9
73
- - ""
74
- - ""
75
- - ""
73
+ - ''
74
+ - ''
75
+ - ''
76
76
  - N
77
77
  - GREEK UPPER NUMERAL SIGN
78
- - ""
79
- - ""
80
- - ""
81
- - ""
82
- "0375":
83
- - "0375"
78
+ - ''
79
+ - ''
80
+ - ''
81
+ - ''
82
+ 885:
83
+ - 885
84
84
  - GREEK LOWER NUMERAL SIGN
85
85
  - Sk
86
- - "0"
87
- - "ON"
88
- - ""
89
- - ""
90
- - ""
91
- - ""
92
- - N
93
- - ""
94
- - ""
95
- - ""
96
- - ""
97
- - ""
98
- "0376":
99
- - "0376"
86
+ - '0'
87
+ - 'ON'
88
+ - ''
89
+ - ''
90
+ - ''
91
+ - ''
92
+ - N
93
+ - ''
94
+ - ''
95
+ - ''
96
+ - ''
97
+ - ''
98
+ 886:
99
+ - 886
100
100
  - GREEK CAPITAL LETTER PAMPHYLIAN DIGAMMA
101
101
  - Lu
102
- - "0"
103
- - L
104
- - ""
105
- - ""
106
- - ""
107
- - ""
108
- - N
109
- - ""
110
- - ""
111
- - ""
112
- - "0377"
113
- - ""
114
- "0377":
115
- - "0377"
102
+ - '0'
103
+ - L
104
+ - ''
105
+ - ''
106
+ - ''
107
+ - ''
108
+ - N
109
+ - ''
110
+ - ''
111
+ - ''
112
+ - '0377'
113
+ - ''
114
+ 887:
115
+ - 887
116
116
  - GREEK SMALL LETTER PAMPHYLIAN DIGAMMA
117
117
  - Ll
118
- - "0"
118
+ - '0'
119
119
  - L
120
- - ""
121
- - ""
122
- - ""
123
- - ""
120
+ - ''
121
+ - ''
122
+ - ''
123
+ - ''
124
124
  - N
125
- - ""
126
- - ""
127
- - "0376"
128
- - ""
129
- - "0376"
130
- 037A:
131
- - 037A
125
+ - ''
126
+ - ''
127
+ - '0376'
128
+ - ''
129
+ - '0376'
130
+ 890:
131
+ - 890
132
132
  - GREEK YPOGEGRAMMENI
133
133
  - Lm
134
- - "0"
134
+ - '0'
135
135
  - L
136
136
  - <compat> 0020 0345
137
- - ""
138
- - ""
139
- - ""
137
+ - ''
138
+ - ''
139
+ - ''
140
140
  - N
141
141
  - GREEK SPACING IOTA BELOW
142
- - ""
143
- - ""
144
- - ""
145
- - ""
146
- 037B:
147
- - 037B
142
+ - ''
143
+ - ''
144
+ - ''
145
+ - ''
146
+ 891:
147
+ - 891
148
148
  - GREEK SMALL REVERSED LUNATE SIGMA SYMBOL
149
149
  - Ll
150
- - "0"
150
+ - '0'
151
151
  - L
152
- - ""
153
- - ""
154
- - ""
155
- - ""
152
+ - ''
153
+ - ''
154
+ - ''
155
+ - ''
156
156
  - N
157
- - ""
158
- - ""
157
+ - ''
158
+ - ''
159
159
  - 03FD
160
- - ""
160
+ - ''
161
161
  - 03FD
162
- 037C:
163
- - 037C
162
+ 892:
163
+ - 892
164
164
  - GREEK SMALL DOTTED LUNATE SIGMA SYMBOL
165
165
  - Ll
166
- - "0"
166
+ - '0'
167
167
  - L
168
- - ""
169
- - ""
170
- - ""
171
- - ""
168
+ - ''
169
+ - ''
170
+ - ''
171
+ - ''
172
172
  - N
173
- - ""
174
- - ""
173
+ - ''
174
+ - ''
175
175
  - 03FE
176
- - ""
176
+ - ''
177
177
  - 03FE
178
- 037D:
179
- - 037D
178
+ 893:
179
+ - 893
180
180
  - GREEK SMALL REVERSED DOTTED LUNATE SIGMA SYMBOL
181
181
  - Ll
182
- - "0"
182
+ - '0'
183
183
  - L
184
- - ""
185
- - ""
186
- - ""
187
- - ""
184
+ - ''
185
+ - ''
186
+ - ''
187
+ - ''
188
188
  - N
189
- - ""
190
- - ""
189
+ - ''
190
+ - ''
191
191
  - 03FF
192
- - ""
192
+ - ''
193
193
  - 03FF
194
- 037E:
195
- - 037E
194
+ 894:
195
+ - 894
196
196
  - GREEK QUESTION MARK
197
197
  - Po
198
- - "0"
199
- - "ON"
198
+ - '0'
199
+ - 'ON'
200
200
  - 003B
201
- - ""
202
- - ""
203
- - ""
204
- - N
205
- - ""
206
- - ""
207
- - ""
208
- - ""
209
- - ""
210
- 0384:
211
- - 0384
201
+ - ''
202
+ - ''
203
+ - ''
204
+ - N
205
+ - ''
206
+ - ''
207
+ - ''
208
+ - ''
209
+ - ''
210
+ 900:
211
+ - 900
212
212
  - GREEK TONOS
213
213
  - Sk
214
- - "0"
215
- - "ON"
214
+ - '0'
215
+ - 'ON'
216
216
  - <compat> 0020 0301
217
- - ""
218
- - ""
219
- - ""
217
+ - ''
218
+ - ''
219
+ - ''
220
220
  - N
221
221
  - GREEK SPACING TONOS
222
- - ""
223
- - ""
224
- - ""
225
- - ""
226
- 0385:
227
- - 0385
222
+ - ''
223
+ - ''
224
+ - ''
225
+ - ''
226
+ 901:
227
+ - 901
228
228
  - GREEK DIALYTIKA TONOS
229
229
  - Sk
230
- - "0"
231
- - "ON"
230
+ - '0'
231
+ - 'ON'
232
232
  - 00A8 0301
233
- - ""
234
- - ""
235
- - ""
233
+ - ''
234
+ - ''
235
+ - ''
236
236
  - N
237
237
  - GREEK SPACING DIAERESIS TONOS
238
- - ""
239
- - ""
240
- - ""
241
- - ""
242
- 0386:
243
- - 0386
238
+ - ''
239
+ - ''
240
+ - ''
241
+ - ''
242
+ 902:
243
+ - 902
244
244
  - GREEK CAPITAL LETTER ALPHA WITH TONOS
245
245
  - Lu
246
- - "0"
246
+ - '0'
247
247
  - L
248
248
  - 0391 0301
249
- - ""
250
- - ""
251
- - ""
249
+ - ''
250
+ - ''
251
+ - ''
252
252
  - N
253
253
  - GREEK CAPITAL LETTER ALPHA TONOS
254
- - ""
255
- - ""
254
+ - ''
255
+ - ''
256
256
  - 03AC
257
- - ""
258
- 0387:
259
- - 0387
257
+ - ''
258
+ 903:
259
+ - 903
260
260
  - GREEK ANO TELEIA
261
261
  - Po
262
- - "0"
263
- - "ON"
262
+ - '0'
263
+ - 'ON'
264
264
  - 00B7
265
- - ""
266
- - ""
267
- - ""
268
- - N
269
- - ""
270
- - ""
271
- - ""
272
- - ""
273
- - ""
274
- 0388:
275
- - 0388
265
+ - ''
266
+ - ''
267
+ - ''
268
+ - N
269
+ - ''
270
+ - ''
271
+ - ''
272
+ - ''
273
+ - ''
274
+ 904:
275
+ - 904
276
276
  - GREEK CAPITAL LETTER EPSILON WITH TONOS
277
277
  - Lu
278
- - "0"
278
+ - '0'
279
279
  - L
280
280
  - 0395 0301
281
- - ""
282
- - ""
283
- - ""
281
+ - ''
282
+ - ''
283
+ - ''
284
284
  - N
285
285
  - GREEK CAPITAL LETTER EPSILON TONOS
286
- - ""
287
- - ""
286
+ - ''
287
+ - ''
288
288
  - 03AD
289
- - ""
290
- 0389:
291
- - 0389
289
+ - ''
290
+ 905:
291
+ - 905
292
292
  - GREEK CAPITAL LETTER ETA WITH TONOS
293
293
  - Lu
294
- - "0"
294
+ - '0'
295
295
  - L
296
296
  - 0397 0301
297
- - ""
298
- - ""
299
- - ""
297
+ - ''
298
+ - ''
299
+ - ''
300
300
  - N
301
301
  - GREEK CAPITAL LETTER ETA TONOS
302
- - ""
303
- - ""
302
+ - ''
303
+ - ''
304
304
  - 03AE
305
- - ""
306
- 038A:
307
- - 038A
305
+ - ''
306
+ 906:
307
+ - 906
308
308
  - GREEK CAPITAL LETTER IOTA WITH TONOS
309
309
  - Lu
310
- - "0"
310
+ - '0'
311
311
  - L
312
312
  - 0399 0301
313
- - ""
314
- - ""
315
- - ""
313
+ - ''
314
+ - ''
315
+ - ''
316
316
  - N
317
317
  - GREEK CAPITAL LETTER IOTA TONOS
318
- - ""
319
- - ""
318
+ - ''
319
+ - ''
320
320
  - 03AF
321
- - ""
322
- 038C:
323
- - 038C
321
+ - ''
322
+ 908:
323
+ - 908
324
324
  - GREEK CAPITAL LETTER OMICRON WITH TONOS
325
325
  - Lu
326
- - "0"
326
+ - '0'
327
327
  - L
328
328
  - 039F 0301
329
- - ""
330
- - ""
331
- - ""
329
+ - ''
330
+ - ''
331
+ - ''
332
332
  - N
333
333
  - GREEK CAPITAL LETTER OMICRON TONOS
334
- - ""
335
- - ""
334
+ - ''
335
+ - ''
336
336
  - 03CC
337
- - ""
338
- 038E:
339
- - 038E
337
+ - ''
338
+ 910:
339
+ - 910
340
340
  - GREEK CAPITAL LETTER UPSILON WITH TONOS
341
341
  - Lu
342
- - "0"
342
+ - '0'
343
343
  - L
344
344
  - 03A5 0301
345
- - ""
346
- - ""
347
- - ""
345
+ - ''
346
+ - ''
347
+ - ''
348
348
  - N
349
349
  - GREEK CAPITAL LETTER UPSILON TONOS
350
- - ""
351
- - ""
350
+ - ''
351
+ - ''
352
352
  - 03CD
353
- - ""
354
- 038F:
355
- - 038F
353
+ - ''
354
+ 911:
355
+ - 911
356
356
  - GREEK CAPITAL LETTER OMEGA WITH TONOS
357
357
  - Lu
358
- - "0"
358
+ - '0'
359
359
  - L
360
360
  - 03A9 0301
361
- - ""
362
- - ""
363
- - ""
361
+ - ''
362
+ - ''
363
+ - ''
364
364
  - N
365
365
  - GREEK CAPITAL LETTER OMEGA TONOS
366
- - ""
367
- - ""
366
+ - ''
367
+ - ''
368
368
  - 03CE
369
- - ""
370
- 0390:
371
- - 0390
369
+ - ''
370
+ 912:
371
+ - 912
372
372
  - GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS
373
373
  - Ll
374
- - "0"
374
+ - '0'
375
375
  - L
376
376
  - 03CA 0301
377
- - ""
378
- - ""
379
- - ""
377
+ - ''
378
+ - ''
379
+ - ''
380
380
  - N
381
381
  - GREEK SMALL LETTER IOTA DIAERESIS TONOS
382
- - ""
383
- - ""
384
- - ""
385
- - ""
386
- 0391:
387
- - 0391
382
+ - ''
383
+ - ''
384
+ - ''
385
+ - ''
386
+ 913:
387
+ - 913
388
388
  - GREEK CAPITAL LETTER ALPHA
389
389
  - Lu
390
- - "0"
390
+ - '0'
391
391
  - L
392
- - ""
393
- - ""
394
- - ""
395
- - ""
392
+ - ''
393
+ - ''
394
+ - ''
395
+ - ''
396
396
  - N
397
- - ""
398
- - ""
399
- - ""
397
+ - ''
398
+ - ''
399
+ - ''
400
400
  - 03B1
401
- - ""
402
- 0392:
403
- - 0392
401
+ - ''
402
+ 914:
403
+ - 914
404
404
  - GREEK CAPITAL LETTER BETA
405
405
  - Lu
406
- - "0"
406
+ - '0'
407
407
  - L
408
- - ""
409
- - ""
410
- - ""
411
- - ""
408
+ - ''
409
+ - ''
410
+ - ''
411
+ - ''
412
412
  - N
413
- - ""
414
- - ""
415
- - ""
413
+ - ''
414
+ - ''
415
+ - ''
416
416
  - 03B2
417
- - ""
418
- 0393:
419
- - 0393
417
+ - ''
418
+ 915:
419
+ - 915
420
420
  - GREEK CAPITAL LETTER GAMMA
421
421
  - Lu
422
- - "0"
422
+ - '0'
423
423
  - L
424
- - ""
425
- - ""
426
- - ""
427
- - ""
424
+ - ''
425
+ - ''
426
+ - ''
427
+ - ''
428
428
  - N
429
- - ""
430
- - ""
431
- - ""
429
+ - ''
430
+ - ''
431
+ - ''
432
432
  - 03B3
433
- - ""
434
- 0394:
435
- - 0394
433
+ - ''
434
+ 916:
435
+ - 916
436
436
  - GREEK CAPITAL LETTER DELTA
437
437
  - Lu
438
- - "0"
438
+ - '0'
439
439
  - L
440
- - ""
441
- - ""
442
- - ""
443
- - ""
440
+ - ''
441
+ - ''
442
+ - ''
443
+ - ''
444
444
  - N
445
- - ""
446
- - ""
447
- - ""
445
+ - ''
446
+ - ''
447
+ - ''
448
448
  - 03B4
449
- - ""
450
- 0395:
451
- - 0395
449
+ - ''
450
+ 917:
451
+ - 917
452
452
  - GREEK CAPITAL LETTER EPSILON
453
453
  - Lu
454
- - "0"
454
+ - '0'
455
455
  - L
456
- - ""
457
- - ""
458
- - ""
459
- - ""
456
+ - ''
457
+ - ''
458
+ - ''
459
+ - ''
460
460
  - N
461
- - ""
462
- - ""
463
- - ""
461
+ - ''
462
+ - ''
463
+ - ''
464
464
  - 03B5
465
- - ""
466
- 0396:
467
- - 0396
465
+ - ''
466
+ 918:
467
+ - 918
468
468
  - GREEK CAPITAL LETTER ZETA
469
469
  - Lu
470
- - "0"
470
+ - '0'
471
471
  - L
472
- - ""
473
- - ""
474
- - ""
475
- - ""
472
+ - ''
473
+ - ''
474
+ - ''
475
+ - ''
476
476
  - N
477
- - ""
478
- - ""
479
- - ""
477
+ - ''
478
+ - ''
479
+ - ''
480
480
  - 03B6
481
- - ""
482
- 0397:
483
- - 0397
481
+ - ''
482
+ 919:
483
+ - 919
484
484
  - GREEK CAPITAL LETTER ETA
485
485
  - Lu
486
- - "0"
486
+ - '0'
487
487
  - L
488
- - ""
489
- - ""
490
- - ""
491
- - ""
488
+ - ''
489
+ - ''
490
+ - ''
491
+ - ''
492
492
  - N
493
- - ""
494
- - ""
495
- - ""
493
+ - ''
494
+ - ''
495
+ - ''
496
496
  - 03B7
497
- - ""
498
- 0398:
499
- - 0398
497
+ - ''
498
+ 920:
499
+ - 920
500
500
  - GREEK CAPITAL LETTER THETA
501
501
  - Lu
502
- - "0"
502
+ - '0'
503
503
  - L
504
- - ""
505
- - ""
506
- - ""
507
- - ""
504
+ - ''
505
+ - ''
506
+ - ''
507
+ - ''
508
508
  - N
509
- - ""
510
- - ""
511
- - ""
509
+ - ''
510
+ - ''
511
+ - ''
512
512
  - 03B8
513
- - ""
514
- 0399:
515
- - 0399
513
+ - ''
514
+ 921:
515
+ - 921
516
516
  - GREEK CAPITAL LETTER IOTA
517
517
  - Lu
518
- - "0"
518
+ - '0'
519
519
  - L
520
- - ""
521
- - ""
522
- - ""
523
- - ""
520
+ - ''
521
+ - ''
522
+ - ''
523
+ - ''
524
524
  - N
525
- - ""
526
- - ""
527
- - ""
525
+ - ''
526
+ - ''
527
+ - ''
528
528
  - 03B9
529
- - ""
530
- 039A:
531
- - 039A
529
+ - ''
530
+ 922:
531
+ - 922
532
532
  - GREEK CAPITAL LETTER KAPPA
533
533
  - Lu
534
- - "0"
534
+ - '0'
535
535
  - L
536
- - ""
537
- - ""
538
- - ""
539
- - ""
536
+ - ''
537
+ - ''
538
+ - ''
539
+ - ''
540
540
  - N
541
- - ""
542
- - ""
543
- - ""
541
+ - ''
542
+ - ''
543
+ - ''
544
544
  - 03BA
545
- - ""
546
- 039B:
547
- - 039B
545
+ - ''
546
+ 923:
547
+ - 923
548
548
  - GREEK CAPITAL LETTER LAMDA
549
549
  - Lu
550
- - "0"
550
+ - '0'
551
551
  - L
552
- - ""
553
- - ""
554
- - ""
555
- - ""
552
+ - ''
553
+ - ''
554
+ - ''
555
+ - ''
556
556
  - N
557
557
  - GREEK CAPITAL LETTER LAMBDA
558
- - ""
559
- - ""
558
+ - ''
559
+ - ''
560
560
  - 03BB
561
- - ""
562
- 039C:
563
- - 039C
561
+ - ''
562
+ 924:
563
+ - 924
564
564
  - GREEK CAPITAL LETTER MU
565
565
  - Lu
566
- - "0"
566
+ - '0'
567
567
  - L
568
- - ""
569
- - ""
570
- - ""
571
- - ""
568
+ - ''
569
+ - ''
570
+ - ''
571
+ - ''
572
572
  - N
573
- - ""
574
- - ""
575
- - ""
573
+ - ''
574
+ - ''
575
+ - ''
576
576
  - 03BC
577
- - ""
578
- 039D:
579
- - 039D
577
+ - ''
578
+ 925:
579
+ - 925
580
580
  - GREEK CAPITAL LETTER NU
581
581
  - Lu
582
- - "0"
582
+ - '0'
583
583
  - L
584
- - ""
585
- - ""
586
- - ""
587
- - ""
584
+ - ''
585
+ - ''
586
+ - ''
587
+ - ''
588
588
  - N
589
- - ""
590
- - ""
591
- - ""
589
+ - ''
590
+ - ''
591
+ - ''
592
592
  - 03BD
593
- - ""
594
- 039E:
595
- - 039E
593
+ - ''
594
+ 926:
595
+ - 926
596
596
  - GREEK CAPITAL LETTER XI
597
597
  - Lu
598
- - "0"
598
+ - '0'
599
599
  - L
600
- - ""
601
- - ""
602
- - ""
603
- - ""
600
+ - ''
601
+ - ''
602
+ - ''
603
+ - ''
604
604
  - N
605
- - ""
606
- - ""
607
- - ""
605
+ - ''
606
+ - ''
607
+ - ''
608
608
  - 03BE
609
- - ""
610
- 039F:
611
- - 039F
609
+ - ''
610
+ 927:
611
+ - 927
612
612
  - GREEK CAPITAL LETTER OMICRON
613
613
  - Lu
614
- - "0"
614
+ - '0'
615
615
  - L
616
- - ""
617
- - ""
618
- - ""
619
- - ""
616
+ - ''
617
+ - ''
618
+ - ''
619
+ - ''
620
620
  - N
621
- - ""
622
- - ""
623
- - ""
621
+ - ''
622
+ - ''
623
+ - ''
624
624
  - 03BF
625
- - ""
626
- 03A0:
627
- - 03A0
625
+ - ''
626
+ 928:
627
+ - 928
628
628
  - GREEK CAPITAL LETTER PI
629
629
  - Lu
630
- - "0"
630
+ - '0'
631
631
  - L
632
- - ""
633
- - ""
634
- - ""
635
- - ""
632
+ - ''
633
+ - ''
634
+ - ''
635
+ - ''
636
636
  - N
637
- - ""
638
- - ""
639
- - ""
637
+ - ''
638
+ - ''
639
+ - ''
640
640
  - 03C0
641
- - ""
642
- 03A1:
643
- - 03A1
641
+ - ''
642
+ 929:
643
+ - 929
644
644
  - GREEK CAPITAL LETTER RHO
645
645
  - Lu
646
- - "0"
646
+ - '0'
647
647
  - L
648
- - ""
649
- - ""
650
- - ""
651
- - ""
648
+ - ''
649
+ - ''
650
+ - ''
651
+ - ''
652
652
  - N
653
- - ""
654
- - ""
655
- - ""
653
+ - ''
654
+ - ''
655
+ - ''
656
656
  - 03C1
657
- - ""
658
- 03A3:
659
- - 03A3
657
+ - ''
658
+ 931:
659
+ - 931
660
660
  - GREEK CAPITAL LETTER SIGMA
661
661
  - Lu
662
- - "0"
662
+ - '0'
663
663
  - L
664
- - ""
665
- - ""
666
- - ""
667
- - ""
664
+ - ''
665
+ - ''
666
+ - ''
667
+ - ''
668
668
  - N
669
- - ""
670
- - ""
671
- - ""
669
+ - ''
670
+ - ''
671
+ - ''
672
672
  - 03C3
673
- - ""
674
- 03A4:
675
- - 03A4
673
+ - ''
674
+ 932:
675
+ - 932
676
676
  - GREEK CAPITAL LETTER TAU
677
677
  - Lu
678
- - "0"
678
+ - '0'
679
679
  - L
680
- - ""
681
- - ""
682
- - ""
683
- - ""
680
+ - ''
681
+ - ''
682
+ - ''
683
+ - ''
684
684
  - N
685
- - ""
686
- - ""
687
- - ""
685
+ - ''
686
+ - ''
687
+ - ''
688
688
  - 03C4
689
- - ""
690
- 03A5:
691
- - 03A5
689
+ - ''
690
+ 933:
691
+ - 933
692
692
  - GREEK CAPITAL LETTER UPSILON
693
693
  - Lu
694
- - "0"
694
+ - '0'
695
695
  - L
696
- - ""
697
- - ""
698
- - ""
699
- - ""
696
+ - ''
697
+ - ''
698
+ - ''
699
+ - ''
700
700
  - N
701
- - ""
702
- - ""
703
- - ""
701
+ - ''
702
+ - ''
703
+ - ''
704
704
  - 03C5
705
- - ""
706
- 03A6:
707
- - 03A6
705
+ - ''
706
+ 934:
707
+ - 934
708
708
  - GREEK CAPITAL LETTER PHI
709
709
  - Lu
710
- - "0"
710
+ - '0'
711
711
  - L
712
- - ""
713
- - ""
714
- - ""
715
- - ""
712
+ - ''
713
+ - ''
714
+ - ''
715
+ - ''
716
716
  - N
717
- - ""
718
- - ""
719
- - ""
717
+ - ''
718
+ - ''
719
+ - ''
720
720
  - 03C6
721
- - ""
722
- 03A7:
723
- - 03A7
721
+ - ''
722
+ 935:
723
+ - 935
724
724
  - GREEK CAPITAL LETTER CHI
725
725
  - Lu
726
- - "0"
726
+ - '0'
727
727
  - L
728
- - ""
729
- - ""
730
- - ""
731
- - ""
728
+ - ''
729
+ - ''
730
+ - ''
731
+ - ''
732
732
  - N
733
- - ""
734
- - ""
735
- - ""
733
+ - ''
734
+ - ''
735
+ - ''
736
736
  - 03C7
737
- - ""
738
- 03A8:
739
- - 03A8
737
+ - ''
738
+ 936:
739
+ - 936
740
740
  - GREEK CAPITAL LETTER PSI
741
741
  - Lu
742
- - "0"
742
+ - '0'
743
743
  - L
744
- - ""
745
- - ""
746
- - ""
747
- - ""
744
+ - ''
745
+ - ''
746
+ - ''
747
+ - ''
748
748
  - N
749
- - ""
750
- - ""
751
- - ""
749
+ - ''
750
+ - ''
751
+ - ''
752
752
  - 03C8
753
- - ""
754
- 03A9:
755
- - 03A9
753
+ - ''
754
+ 937:
755
+ - 937
756
756
  - GREEK CAPITAL LETTER OMEGA
757
757
  - Lu
758
- - "0"
758
+ - '0'
759
759
  - L
760
- - ""
761
- - ""
762
- - ""
763
- - ""
760
+ - ''
761
+ - ''
762
+ - ''
763
+ - ''
764
764
  - N
765
- - ""
766
- - ""
767
- - ""
765
+ - ''
766
+ - ''
767
+ - ''
768
768
  - 03C9
769
- - ""
770
- 03AA:
771
- - 03AA
769
+ - ''
770
+ 938:
771
+ - 938
772
772
  - GREEK CAPITAL LETTER IOTA WITH DIALYTIKA
773
773
  - Lu
774
- - "0"
774
+ - '0'
775
775
  - L
776
776
  - 0399 0308
777
- - ""
778
- - ""
779
- - ""
777
+ - ''
778
+ - ''
779
+ - ''
780
780
  - N
781
781
  - GREEK CAPITAL LETTER IOTA DIAERESIS
782
- - ""
783
- - ""
782
+ - ''
783
+ - ''
784
784
  - 03CA
785
- - ""
786
- 03AB:
787
- - 03AB
785
+ - ''
786
+ 939:
787
+ - 939
788
788
  - GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA
789
789
  - Lu
790
- - "0"
790
+ - '0'
791
791
  - L
792
792
  - 03A5 0308
793
- - ""
794
- - ""
795
- - ""
793
+ - ''
794
+ - ''
795
+ - ''
796
796
  - N
797
797
  - GREEK CAPITAL LETTER UPSILON DIAERESIS
798
- - ""
799
- - ""
798
+ - ''
799
+ - ''
800
800
  - 03CB
801
- - ""
802
- 03AC:
803
- - 03AC
801
+ - ''
802
+ 940:
803
+ - 940
804
804
  - GREEK SMALL LETTER ALPHA WITH TONOS
805
805
  - Ll
806
- - "0"
806
+ - '0'
807
807
  - L
808
808
  - 03B1 0301
809
- - ""
810
- - ""
811
- - ""
809
+ - ''
810
+ - ''
811
+ - ''
812
812
  - N
813
813
  - GREEK SMALL LETTER ALPHA TONOS
814
- - ""
814
+ - ''
815
815
  - 0386
816
- - ""
816
+ - ''
817
817
  - 0386
818
- 03AD:
819
- - 03AD
818
+ 941:
819
+ - 941
820
820
  - GREEK SMALL LETTER EPSILON WITH TONOS
821
821
  - Ll
822
- - "0"
822
+ - '0'
823
823
  - L
824
824
  - 03B5 0301
825
- - ""
826
- - ""
827
- - ""
825
+ - ''
826
+ - ''
827
+ - ''
828
828
  - N
829
829
  - GREEK SMALL LETTER EPSILON TONOS
830
- - ""
830
+ - ''
831
831
  - 0388
832
- - ""
832
+ - ''
833
833
  - 0388
834
- 03AE:
835
- - 03AE
834
+ 942:
835
+ - 942
836
836
  - GREEK SMALL LETTER ETA WITH TONOS
837
837
  - Ll
838
- - "0"
838
+ - '0'
839
839
  - L
840
840
  - 03B7 0301
841
- - ""
842
- - ""
843
- - ""
841
+ - ''
842
+ - ''
843
+ - ''
844
844
  - N
845
845
  - GREEK SMALL LETTER ETA TONOS
846
- - ""
846
+ - ''
847
847
  - 0389
848
- - ""
848
+ - ''
849
849
  - 0389
850
- 03AF:
851
- - 03AF
850
+ 943:
851
+ - 943
852
852
  - GREEK SMALL LETTER IOTA WITH TONOS
853
853
  - Ll
854
- - "0"
854
+ - '0'
855
855
  - L
856
856
  - 03B9 0301
857
- - ""
858
- - ""
859
- - ""
857
+ - ''
858
+ - ''
859
+ - ''
860
860
  - N
861
861
  - GREEK SMALL LETTER IOTA TONOS
862
- - ""
862
+ - ''
863
863
  - 038A
864
- - ""
864
+ - ''
865
865
  - 038A
866
- 03B0:
867
- - 03B0
866
+ 944:
867
+ - 944
868
868
  - GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS
869
869
  - Ll
870
- - "0"
870
+ - '0'
871
871
  - L
872
872
  - 03CB 0301
873
- - ""
874
- - ""
875
- - ""
873
+ - ''
874
+ - ''
875
+ - ''
876
876
  - N
877
877
  - GREEK SMALL LETTER UPSILON DIAERESIS TONOS
878
- - ""
879
- - ""
880
- - ""
881
- - ""
882
- 03B1:
883
- - 03B1
878
+ - ''
879
+ - ''
880
+ - ''
881
+ - ''
882
+ 945:
883
+ - 945
884
884
  - GREEK SMALL LETTER ALPHA
885
885
  - Ll
886
- - "0"
886
+ - '0'
887
887
  - L
888
- - ""
889
- - ""
890
- - ""
891
- - ""
888
+ - ''
889
+ - ''
890
+ - ''
891
+ - ''
892
892
  - N
893
- - ""
894
- - ""
893
+ - ''
894
+ - ''
895
895
  - 0391
896
- - ""
896
+ - ''
897
897
  - 0391
898
- 03B2:
899
- - 03B2
898
+ 946:
899
+ - 946
900
900
  - GREEK SMALL LETTER BETA
901
901
  - Ll
902
- - "0"
902
+ - '0'
903
903
  - L
904
- - ""
905
- - ""
906
- - ""
907
- - ""
904
+ - ''
905
+ - ''
906
+ - ''
907
+ - ''
908
908
  - N
909
- - ""
910
- - ""
909
+ - ''
910
+ - ''
911
911
  - 0392
912
- - ""
912
+ - ''
913
913
  - 0392
914
- 03B3:
915
- - 03B3
914
+ 947:
915
+ - 947
916
916
  - GREEK SMALL LETTER GAMMA
917
917
  - Ll
918
- - "0"
918
+ - '0'
919
919
  - L
920
- - ""
921
- - ""
922
- - ""
923
- - ""
920
+ - ''
921
+ - ''
922
+ - ''
923
+ - ''
924
924
  - N
925
- - ""
926
- - ""
925
+ - ''
926
+ - ''
927
927
  - 0393
928
- - ""
928
+ - ''
929
929
  - 0393
930
- 03B4:
931
- - 03B4
930
+ 948:
931
+ - 948
932
932
  - GREEK SMALL LETTER DELTA
933
933
  - Ll
934
- - "0"
934
+ - '0'
935
935
  - L
936
- - ""
937
- - ""
938
- - ""
939
- - ""
936
+ - ''
937
+ - ''
938
+ - ''
939
+ - ''
940
940
  - N
941
- - ""
942
- - ""
941
+ - ''
942
+ - ''
943
943
  - 0394
944
- - ""
944
+ - ''
945
945
  - 0394
946
- 03B5:
947
- - 03B5
946
+ 949:
947
+ - 949
948
948
  - GREEK SMALL LETTER EPSILON
949
949
  - Ll
950
- - "0"
950
+ - '0'
951
951
  - L
952
- - ""
953
- - ""
954
- - ""
955
- - ""
952
+ - ''
953
+ - ''
954
+ - ''
955
+ - ''
956
956
  - N
957
- - ""
958
- - ""
957
+ - ''
958
+ - ''
959
959
  - 0395
960
- - ""
960
+ - ''
961
961
  - 0395
962
- 03B6:
963
- - 03B6
962
+ 950:
963
+ - 950
964
964
  - GREEK SMALL LETTER ZETA
965
965
  - Ll
966
- - "0"
966
+ - '0'
967
967
  - L
968
- - ""
969
- - ""
970
- - ""
971
- - ""
968
+ - ''
969
+ - ''
970
+ - ''
971
+ - ''
972
972
  - N
973
- - ""
974
- - ""
973
+ - ''
974
+ - ''
975
975
  - 0396
976
- - ""
976
+ - ''
977
977
  - 0396
978
- 03B7:
979
- - 03B7
978
+ 951:
979
+ - 951
980
980
  - GREEK SMALL LETTER ETA
981
981
  - Ll
982
- - "0"
982
+ - '0'
983
983
  - L
984
- - ""
985
- - ""
986
- - ""
987
- - ""
984
+ - ''
985
+ - ''
986
+ - ''
987
+ - ''
988
988
  - N
989
- - ""
990
- - ""
989
+ - ''
990
+ - ''
991
991
  - 0397
992
- - ""
992
+ - ''
993
993
  - 0397
994
- 03B8:
995
- - 03B8
994
+ 952:
995
+ - 952
996
996
  - GREEK SMALL LETTER THETA
997
997
  - Ll
998
- - "0"
998
+ - '0'
999
999
  - L
1000
- - ""
1001
- - ""
1002
- - ""
1003
- - ""
1000
+ - ''
1001
+ - ''
1002
+ - ''
1003
+ - ''
1004
1004
  - N
1005
- - ""
1006
- - ""
1005
+ - ''
1006
+ - ''
1007
1007
  - 0398
1008
- - ""
1008
+ - ''
1009
1009
  - 0398
1010
- 03B9:
1011
- - 03B9
1010
+ 953:
1011
+ - 953
1012
1012
  - GREEK SMALL LETTER IOTA
1013
1013
  - Ll
1014
- - "0"
1014
+ - '0'
1015
1015
  - L
1016
- - ""
1017
- - ""
1018
- - ""
1019
- - ""
1016
+ - ''
1017
+ - ''
1018
+ - ''
1019
+ - ''
1020
1020
  - N
1021
- - ""
1022
- - ""
1021
+ - ''
1022
+ - ''
1023
1023
  - 0399
1024
- - ""
1024
+ - ''
1025
1025
  - 0399
1026
- 03BA:
1027
- - 03BA
1026
+ 954:
1027
+ - 954
1028
1028
  - GREEK SMALL LETTER KAPPA
1029
1029
  - Ll
1030
- - "0"
1030
+ - '0'
1031
1031
  - L
1032
- - ""
1033
- - ""
1034
- - ""
1035
- - ""
1032
+ - ''
1033
+ - ''
1034
+ - ''
1035
+ - ''
1036
1036
  - N
1037
- - ""
1038
- - ""
1037
+ - ''
1038
+ - ''
1039
1039
  - 039A
1040
- - ""
1040
+ - ''
1041
1041
  - 039A
1042
- 03BB:
1043
- - 03BB
1042
+ 955:
1043
+ - 955
1044
1044
  - GREEK SMALL LETTER LAMDA
1045
1045
  - Ll
1046
- - "0"
1046
+ - '0'
1047
1047
  - L
1048
- - ""
1049
- - ""
1050
- - ""
1051
- - ""
1048
+ - ''
1049
+ - ''
1050
+ - ''
1051
+ - ''
1052
1052
  - N
1053
1053
  - GREEK SMALL LETTER LAMBDA
1054
- - ""
1054
+ - ''
1055
1055
  - 039B
1056
- - ""
1056
+ - ''
1057
1057
  - 039B
1058
- 03BC:
1059
- - 03BC
1058
+ 956:
1059
+ - 956
1060
1060
  - GREEK SMALL LETTER MU
1061
1061
  - Ll
1062
- - "0"
1062
+ - '0'
1063
1063
  - L
1064
- - ""
1065
- - ""
1066
- - ""
1067
- - ""
1064
+ - ''
1065
+ - ''
1066
+ - ''
1067
+ - ''
1068
1068
  - N
1069
- - ""
1070
- - ""
1069
+ - ''
1070
+ - ''
1071
1071
  - 039C
1072
- - ""
1072
+ - ''
1073
1073
  - 039C
1074
- 03BD:
1075
- - 03BD
1074
+ 957:
1075
+ - 957
1076
1076
  - GREEK SMALL LETTER NU
1077
1077
  - Ll
1078
- - "0"
1078
+ - '0'
1079
1079
  - L
1080
- - ""
1081
- - ""
1082
- - ""
1083
- - ""
1080
+ - ''
1081
+ - ''
1082
+ - ''
1083
+ - ''
1084
1084
  - N
1085
- - ""
1086
- - ""
1085
+ - ''
1086
+ - ''
1087
1087
  - 039D
1088
- - ""
1088
+ - ''
1089
1089
  - 039D
1090
- 03BE:
1091
- - 03BE
1090
+ 958:
1091
+ - 958
1092
1092
  - GREEK SMALL LETTER XI
1093
1093
  - Ll
1094
- - "0"
1094
+ - '0'
1095
1095
  - L
1096
- - ""
1097
- - ""
1098
- - ""
1099
- - ""
1096
+ - ''
1097
+ - ''
1098
+ - ''
1099
+ - ''
1100
1100
  - N
1101
- - ""
1102
- - ""
1101
+ - ''
1102
+ - ''
1103
1103
  - 039E
1104
- - ""
1104
+ - ''
1105
1105
  - 039E
1106
- 03BF:
1107
- - 03BF
1106
+ 959:
1107
+ - 959
1108
1108
  - GREEK SMALL LETTER OMICRON
1109
1109
  - Ll
1110
- - "0"
1110
+ - '0'
1111
1111
  - L
1112
- - ""
1113
- - ""
1114
- - ""
1115
- - ""
1112
+ - ''
1113
+ - ''
1114
+ - ''
1115
+ - ''
1116
1116
  - N
1117
- - ""
1118
- - ""
1117
+ - ''
1118
+ - ''
1119
1119
  - 039F
1120
- - ""
1120
+ - ''
1121
1121
  - 039F
1122
- 03C0:
1123
- - 03C0
1122
+ 960:
1123
+ - 960
1124
1124
  - GREEK SMALL LETTER PI
1125
1125
  - Ll
1126
- - "0"
1126
+ - '0'
1127
1127
  - L
1128
- - ""
1129
- - ""
1130
- - ""
1131
- - ""
1128
+ - ''
1129
+ - ''
1130
+ - ''
1131
+ - ''
1132
1132
  - N
1133
- - ""
1134
- - ""
1133
+ - ''
1134
+ - ''
1135
1135
  - 03A0
1136
- - ""
1136
+ - ''
1137
1137
  - 03A0
1138
- 03C1:
1139
- - 03C1
1138
+ 961:
1139
+ - 961
1140
1140
  - GREEK SMALL LETTER RHO
1141
1141
  - Ll
1142
- - "0"
1142
+ - '0'
1143
1143
  - L
1144
- - ""
1145
- - ""
1146
- - ""
1147
- - ""
1144
+ - ''
1145
+ - ''
1146
+ - ''
1147
+ - ''
1148
1148
  - N
1149
- - ""
1150
- - ""
1149
+ - ''
1150
+ - ''
1151
1151
  - 03A1
1152
- - ""
1152
+ - ''
1153
1153
  - 03A1
1154
- 03C2:
1155
- - 03C2
1154
+ 962:
1155
+ - 962
1156
1156
  - GREEK SMALL LETTER FINAL SIGMA
1157
1157
  - Ll
1158
- - "0"
1158
+ - '0'
1159
1159
  - L
1160
- - ""
1161
- - ""
1162
- - ""
1163
- - ""
1160
+ - ''
1161
+ - ''
1162
+ - ''
1163
+ - ''
1164
1164
  - N
1165
- - ""
1166
- - ""
1165
+ - ''
1166
+ - ''
1167
1167
  - 03A3
1168
- - ""
1168
+ - ''
1169
1169
  - 03A3
1170
- 03C3:
1171
- - 03C3
1170
+ 963:
1171
+ - 963
1172
1172
  - GREEK SMALL LETTER SIGMA
1173
1173
  - Ll
1174
- - "0"
1174
+ - '0'
1175
1175
  - L
1176
- - ""
1177
- - ""
1178
- - ""
1179
- - ""
1176
+ - ''
1177
+ - ''
1178
+ - ''
1179
+ - ''
1180
1180
  - N
1181
- - ""
1182
- - ""
1181
+ - ''
1182
+ - ''
1183
1183
  - 03A3
1184
- - ""
1184
+ - ''
1185
1185
  - 03A3
1186
- 03C4:
1187
- - 03C4
1186
+ 964:
1187
+ - 964
1188
1188
  - GREEK SMALL LETTER TAU
1189
1189
  - Ll
1190
- - "0"
1190
+ - '0'
1191
1191
  - L
1192
- - ""
1193
- - ""
1194
- - ""
1195
- - ""
1192
+ - ''
1193
+ - ''
1194
+ - ''
1195
+ - ''
1196
1196
  - N
1197
- - ""
1198
- - ""
1197
+ - ''
1198
+ - ''
1199
1199
  - 03A4
1200
- - ""
1200
+ - ''
1201
1201
  - 03A4
1202
- 03C5:
1203
- - 03C5
1202
+ 965:
1203
+ - 965
1204
1204
  - GREEK SMALL LETTER UPSILON
1205
1205
  - Ll
1206
- - "0"
1206
+ - '0'
1207
1207
  - L
1208
- - ""
1209
- - ""
1210
- - ""
1211
- - ""
1208
+ - ''
1209
+ - ''
1210
+ - ''
1211
+ - ''
1212
1212
  - N
1213
- - ""
1214
- - ""
1213
+ - ''
1214
+ - ''
1215
1215
  - 03A5
1216
- - ""
1216
+ - ''
1217
1217
  - 03A5
1218
- 03C6:
1219
- - 03C6
1218
+ 966:
1219
+ - 966
1220
1220
  - GREEK SMALL LETTER PHI
1221
1221
  - Ll
1222
- - "0"
1222
+ - '0'
1223
1223
  - L
1224
- - ""
1225
- - ""
1226
- - ""
1227
- - ""
1224
+ - ''
1225
+ - ''
1226
+ - ''
1227
+ - ''
1228
1228
  - N
1229
- - ""
1230
- - ""
1229
+ - ''
1230
+ - ''
1231
1231
  - 03A6
1232
- - ""
1232
+ - ''
1233
1233
  - 03A6
1234
- 03C7:
1235
- - 03C7
1234
+ 967:
1235
+ - 967
1236
1236
  - GREEK SMALL LETTER CHI
1237
1237
  - Ll
1238
- - "0"
1238
+ - '0'
1239
1239
  - L
1240
- - ""
1241
- - ""
1242
- - ""
1243
- - ""
1240
+ - ''
1241
+ - ''
1242
+ - ''
1243
+ - ''
1244
1244
  - N
1245
- - ""
1246
- - ""
1245
+ - ''
1246
+ - ''
1247
1247
  - 03A7
1248
- - ""
1248
+ - ''
1249
1249
  - 03A7
1250
- 03C8:
1251
- - 03C8
1250
+ 968:
1251
+ - 968
1252
1252
  - GREEK SMALL LETTER PSI
1253
1253
  - Ll
1254
- - "0"
1254
+ - '0'
1255
1255
  - L
1256
- - ""
1257
- - ""
1258
- - ""
1259
- - ""
1256
+ - ''
1257
+ - ''
1258
+ - ''
1259
+ - ''
1260
1260
  - N
1261
- - ""
1262
- - ""
1261
+ - ''
1262
+ - ''
1263
1263
  - 03A8
1264
- - ""
1264
+ - ''
1265
1265
  - 03A8
1266
- 03C9:
1267
- - 03C9
1266
+ 969:
1267
+ - 969
1268
1268
  - GREEK SMALL LETTER OMEGA
1269
1269
  - Ll
1270
- - "0"
1270
+ - '0'
1271
1271
  - L
1272
- - ""
1273
- - ""
1274
- - ""
1275
- - ""
1272
+ - ''
1273
+ - ''
1274
+ - ''
1275
+ - ''
1276
1276
  - N
1277
- - ""
1278
- - ""
1277
+ - ''
1278
+ - ''
1279
1279
  - 03A9
1280
- - ""
1280
+ - ''
1281
1281
  - 03A9
1282
- 03CA:
1283
- - 03CA
1282
+ 970:
1283
+ - 970
1284
1284
  - GREEK SMALL LETTER IOTA WITH DIALYTIKA
1285
1285
  - Ll
1286
- - "0"
1286
+ - '0'
1287
1287
  - L
1288
1288
  - 03B9 0308
1289
- - ""
1290
- - ""
1291
- - ""
1289
+ - ''
1290
+ - ''
1291
+ - ''
1292
1292
  - N
1293
1293
  - GREEK SMALL LETTER IOTA DIAERESIS
1294
- - ""
1294
+ - ''
1295
1295
  - 03AA
1296
- - ""
1296
+ - ''
1297
1297
  - 03AA
1298
- 03CB:
1299
- - 03CB
1298
+ 971:
1299
+ - 971
1300
1300
  - GREEK SMALL LETTER UPSILON WITH DIALYTIKA
1301
1301
  - Ll
1302
- - "0"
1302
+ - '0'
1303
1303
  - L
1304
1304
  - 03C5 0308
1305
- - ""
1306
- - ""
1307
- - ""
1305
+ - ''
1306
+ - ''
1307
+ - ''
1308
1308
  - N
1309
1309
  - GREEK SMALL LETTER UPSILON DIAERESIS
1310
- - ""
1310
+ - ''
1311
1311
  - 03AB
1312
- - ""
1312
+ - ''
1313
1313
  - 03AB
1314
- 03CC:
1315
- - 03CC
1314
+ 972:
1315
+ - 972
1316
1316
  - GREEK SMALL LETTER OMICRON WITH TONOS
1317
1317
  - Ll
1318
- - "0"
1318
+ - '0'
1319
1319
  - L
1320
1320
  - 03BF 0301
1321
- - ""
1322
- - ""
1323
- - ""
1321
+ - ''
1322
+ - ''
1323
+ - ''
1324
1324
  - N
1325
1325
  - GREEK SMALL LETTER OMICRON TONOS
1326
- - ""
1326
+ - ''
1327
1327
  - 038C
1328
- - ""
1328
+ - ''
1329
1329
  - 038C
1330
- 03CD:
1331
- - 03CD
1330
+ 973:
1331
+ - 973
1332
1332
  - GREEK SMALL LETTER UPSILON WITH TONOS
1333
1333
  - Ll
1334
- - "0"
1334
+ - '0'
1335
1335
  - L
1336
1336
  - 03C5 0301
1337
- - ""
1338
- - ""
1339
- - ""
1337
+ - ''
1338
+ - ''
1339
+ - ''
1340
1340
  - N
1341
1341
  - GREEK SMALL LETTER UPSILON TONOS
1342
- - ""
1342
+ - ''
1343
1343
  - 038E
1344
- - ""
1344
+ - ''
1345
1345
  - 038E
1346
- 03CE:
1347
- - 03CE
1346
+ 974:
1347
+ - 974
1348
1348
  - GREEK SMALL LETTER OMEGA WITH TONOS
1349
1349
  - Ll
1350
- - "0"
1350
+ - '0'
1351
1351
  - L
1352
1352
  - 03C9 0301
1353
- - ""
1354
- - ""
1355
- - ""
1353
+ - ''
1354
+ - ''
1355
+ - ''
1356
1356
  - N
1357
1357
  - GREEK SMALL LETTER OMEGA TONOS
1358
- - ""
1358
+ - ''
1359
1359
  - 038F
1360
- - ""
1360
+ - ''
1361
1361
  - 038F
1362
- 03CF:
1363
- - 03CF
1362
+ 975:
1363
+ - 975
1364
1364
  - GREEK CAPITAL KAI SYMBOL
1365
1365
  - Lu
1366
- - "0"
1366
+ - '0'
1367
1367
  - L
1368
- - ""
1369
- - ""
1370
- - ""
1371
- - ""
1368
+ - ''
1369
+ - ''
1370
+ - ''
1371
+ - ''
1372
1372
  - N
1373
- - ""
1374
- - ""
1375
- - ""
1373
+ - ''
1374
+ - ''
1375
+ - ''
1376
1376
  - 03D7
1377
- - ""
1378
- 03D0:
1379
- - 03D0
1377
+ - ''
1378
+ 976:
1379
+ - 976
1380
1380
  - GREEK BETA SYMBOL
1381
1381
  - Ll
1382
- - "0"
1382
+ - '0'
1383
1383
  - L
1384
1384
  - <compat> 03B2
1385
- - ""
1386
- - ""
1387
- - ""
1385
+ - ''
1386
+ - ''
1387
+ - ''
1388
1388
  - N
1389
1389
  - GREEK SMALL LETTER CURLED BETA
1390
- - ""
1390
+ - ''
1391
1391
  - 0392
1392
- - ""
1392
+ - ''
1393
1393
  - 0392
1394
- 03D1:
1395
- - 03D1
1394
+ 977:
1395
+ - 977
1396
1396
  - GREEK THETA SYMBOL
1397
1397
  - Ll
1398
- - "0"
1398
+ - '0'
1399
1399
  - L
1400
1400
  - <compat> 03B8
1401
- - ""
1402
- - ""
1403
- - ""
1401
+ - ''
1402
+ - ''
1403
+ - ''
1404
1404
  - N
1405
1405
  - GREEK SMALL LETTER SCRIPT THETA
1406
- - ""
1406
+ - ''
1407
1407
  - 0398
1408
- - ""
1408
+ - ''
1409
1409
  - 0398
1410
- 03D2:
1411
- - 03D2
1410
+ 978:
1411
+ - 978
1412
1412
  - GREEK UPSILON WITH HOOK SYMBOL
1413
1413
  - Lu
1414
- - "0"
1414
+ - '0'
1415
1415
  - L
1416
1416
  - <compat> 03A5
1417
- - ""
1418
- - ""
1419
- - ""
1417
+ - ''
1418
+ - ''
1419
+ - ''
1420
1420
  - N
1421
1421
  - GREEK CAPITAL LETTER UPSILON HOOK
1422
- - ""
1423
- - ""
1424
- - ""
1425
- - ""
1426
- 03D3:
1427
- - 03D3
1422
+ - ''
1423
+ - ''
1424
+ - ''
1425
+ - ''
1426
+ 979:
1427
+ - 979
1428
1428
  - GREEK UPSILON WITH ACUTE AND HOOK SYMBOL
1429
1429
  - Lu
1430
- - "0"
1430
+ - '0'
1431
1431
  - L
1432
1432
  - 03D2 0301
1433
- - ""
1434
- - ""
1435
- - ""
1433
+ - ''
1434
+ - ''
1435
+ - ''
1436
1436
  - N
1437
1437
  - GREEK CAPITAL LETTER UPSILON HOOK TONOS
1438
- - ""
1439
- - ""
1440
- - ""
1441
- - ""
1442
- 03D4:
1443
- - 03D4
1438
+ - ''
1439
+ - ''
1440
+ - ''
1441
+ - ''
1442
+ 980:
1443
+ - 980
1444
1444
  - GREEK UPSILON WITH DIAERESIS AND HOOK SYMBOL
1445
1445
  - Lu
1446
- - "0"
1446
+ - '0'
1447
1447
  - L
1448
1448
  - 03D2 0308
1449
- - ""
1450
- - ""
1451
- - ""
1449
+ - ''
1450
+ - ''
1451
+ - ''
1452
1452
  - N
1453
1453
  - GREEK CAPITAL LETTER UPSILON HOOK DIAERESIS
1454
- - ""
1455
- - ""
1456
- - ""
1457
- - ""
1458
- 03D5:
1459
- - 03D5
1454
+ - ''
1455
+ - ''
1456
+ - ''
1457
+ - ''
1458
+ 981:
1459
+ - 981
1460
1460
  - GREEK PHI SYMBOL
1461
1461
  - Ll
1462
- - "0"
1462
+ - '0'
1463
1463
  - L
1464
1464
  - <compat> 03C6
1465
- - ""
1466
- - ""
1467
- - ""
1465
+ - ''
1466
+ - ''
1467
+ - ''
1468
1468
  - N
1469
1469
  - GREEK SMALL LETTER SCRIPT PHI
1470
- - ""
1470
+ - ''
1471
1471
  - 03A6
1472
- - ""
1472
+ - ''
1473
1473
  - 03A6
1474
- 03D6:
1475
- - 03D6
1474
+ 982:
1475
+ - 982
1476
1476
  - GREEK PI SYMBOL
1477
1477
  - Ll
1478
- - "0"
1478
+ - '0'
1479
1479
  - L
1480
1480
  - <compat> 03C0
1481
- - ""
1482
- - ""
1483
- - ""
1481
+ - ''
1482
+ - ''
1483
+ - ''
1484
1484
  - N
1485
1485
  - GREEK SMALL LETTER OMEGA PI
1486
- - ""
1486
+ - ''
1487
1487
  - 03A0
1488
- - ""
1488
+ - ''
1489
1489
  - 03A0
1490
- 03D7:
1491
- - 03D7
1490
+ 983:
1491
+ - 983
1492
1492
  - GREEK KAI SYMBOL
1493
1493
  - Ll
1494
- - "0"
1494
+ - '0'
1495
1495
  - L
1496
- - ""
1497
- - ""
1498
- - ""
1499
- - ""
1496
+ - ''
1497
+ - ''
1498
+ - ''
1499
+ - ''
1500
1500
  - N
1501
- - ""
1502
- - ""
1501
+ - ''
1502
+ - ''
1503
1503
  - 03CF
1504
- - ""
1504
+ - ''
1505
1505
  - 03CF
1506
- 03D8:
1507
- - 03D8
1506
+ 984:
1507
+ - 984
1508
1508
  - GREEK LETTER ARCHAIC KOPPA
1509
1509
  - Lu
1510
- - "0"
1510
+ - '0'
1511
1511
  - L
1512
- - ""
1513
- - ""
1514
- - ""
1515
- - ""
1512
+ - ''
1513
+ - ''
1514
+ - ''
1515
+ - ''
1516
1516
  - N
1517
- - ""
1518
- - ""
1519
- - ""
1520
- - 03D9
1521
- - ""
1522
- 03D9:
1517
+ - ''
1518
+ - ''
1519
+ - ''
1523
1520
  - 03D9
1521
+ - ''
1522
+ 985:
1523
+ - 985
1524
1524
  - GREEK SMALL LETTER ARCHAIC KOPPA
1525
1525
  - Ll
1526
- - "0"
1526
+ - '0'
1527
1527
  - L
1528
- - ""
1529
- - ""
1530
- - ""
1531
- - ""
1528
+ - ''
1529
+ - ''
1530
+ - ''
1531
+ - ''
1532
1532
  - N
1533
- - ""
1534
- - ""
1533
+ - ''
1534
+ - ''
1535
1535
  - 03D8
1536
- - ""
1536
+ - ''
1537
1537
  - 03D8
1538
- 03DA:
1539
- - 03DA
1538
+ 986:
1539
+ - 986
1540
1540
  - GREEK LETTER STIGMA
1541
1541
  - Lu
1542
- - "0"
1542
+ - '0'
1543
1543
  - L
1544
- - ""
1545
- - ""
1546
- - ""
1547
- - ""
1544
+ - ''
1545
+ - ''
1546
+ - ''
1547
+ - ''
1548
1548
  - N
1549
1549
  - GREEK CAPITAL LETTER STIGMA
1550
- - ""
1551
- - ""
1552
- - 03DB
1553
- - ""
1554
- 03DB:
1550
+ - ''
1551
+ - ''
1555
1552
  - 03DB
1553
+ - ''
1554
+ 987:
1555
+ - 987
1556
1556
  - GREEK SMALL LETTER STIGMA
1557
1557
  - Ll
1558
- - "0"
1558
+ - '0'
1559
1559
  - L
1560
- - ""
1561
- - ""
1562
- - ""
1563
- - ""
1560
+ - ''
1561
+ - ''
1562
+ - ''
1563
+ - ''
1564
1564
  - N
1565
- - ""
1566
- - ""
1565
+ - ''
1566
+ - ''
1567
1567
  - 03DA
1568
- - ""
1568
+ - ''
1569
1569
  - 03DA
1570
- 03DC:
1571
- - 03DC
1570
+ 988:
1571
+ - 988
1572
1572
  - GREEK LETTER DIGAMMA
1573
1573
  - Lu
1574
- - "0"
1574
+ - '0'
1575
1575
  - L
1576
- - ""
1577
- - ""
1578
- - ""
1579
- - ""
1576
+ - ''
1577
+ - ''
1578
+ - ''
1579
+ - ''
1580
1580
  - N
1581
1581
  - GREEK CAPITAL LETTER DIGAMMA
1582
- - ""
1583
- - ""
1584
- - 03DD
1585
- - ""
1586
- 03DD:
1582
+ - ''
1583
+ - ''
1587
1584
  - 03DD
1585
+ - ''
1586
+ 989:
1587
+ - 989
1588
1588
  - GREEK SMALL LETTER DIGAMMA
1589
1589
  - Ll
1590
- - "0"
1590
+ - '0'
1591
1591
  - L
1592
- - ""
1593
- - ""
1594
- - ""
1595
- - ""
1592
+ - ''
1593
+ - ''
1594
+ - ''
1595
+ - ''
1596
1596
  - N
1597
- - ""
1598
- - ""
1597
+ - ''
1598
+ - ''
1599
1599
  - 03DC
1600
- - ""
1600
+ - ''
1601
1601
  - 03DC
1602
- 03DE:
1603
- - 03DE
1602
+ 990:
1603
+ - 990
1604
1604
  - GREEK LETTER KOPPA
1605
1605
  - Lu
1606
- - "0"
1606
+ - '0'
1607
1607
  - L
1608
- - ""
1609
- - ""
1610
- - ""
1611
- - ""
1608
+ - ''
1609
+ - ''
1610
+ - ''
1611
+ - ''
1612
1612
  - N
1613
1613
  - GREEK CAPITAL LETTER KOPPA
1614
- - ""
1615
- - ""
1616
- - 03DF
1617
- - ""
1618
- 03DF:
1614
+ - ''
1615
+ - ''
1619
1616
  - 03DF
1617
+ - ''
1618
+ 991:
1619
+ - 991
1620
1620
  - GREEK SMALL LETTER KOPPA
1621
1621
  - Ll
1622
- - "0"
1622
+ - '0'
1623
1623
  - L
1624
- - ""
1625
- - ""
1626
- - ""
1627
- - ""
1624
+ - ''
1625
+ - ''
1626
+ - ''
1627
+ - ''
1628
1628
  - N
1629
- - ""
1630
- - ""
1629
+ - ''
1630
+ - ''
1631
1631
  - 03DE
1632
- - ""
1632
+ - ''
1633
1633
  - 03DE
1634
- 03E0:
1635
- - 03E0
1634
+ 992:
1635
+ - 992
1636
1636
  - GREEK LETTER SAMPI
1637
1637
  - Lu
1638
- - "0"
1638
+ - '0'
1639
1639
  - L
1640
- - ""
1641
- - ""
1642
- - ""
1643
- - ""
1640
+ - ''
1641
+ - ''
1642
+ - ''
1643
+ - ''
1644
1644
  - N
1645
1645
  - GREEK CAPITAL LETTER SAMPI
1646
- - ""
1647
- - ""
1648
- - 03E1
1649
- - ""
1650
- 03E1:
1646
+ - ''
1647
+ - ''
1651
1648
  - 03E1
1649
+ - ''
1650
+ 993:
1651
+ - 993
1652
1652
  - GREEK SMALL LETTER SAMPI
1653
1653
  - Ll
1654
- - "0"
1654
+ - '0'
1655
1655
  - L
1656
- - ""
1657
- - ""
1658
- - ""
1659
- - ""
1656
+ - ''
1657
+ - ''
1658
+ - ''
1659
+ - ''
1660
1660
  - N
1661
- - ""
1662
- - ""
1661
+ - ''
1662
+ - ''
1663
1663
  - 03E0
1664
- - ""
1664
+ - ''
1665
1665
  - 03E0
1666
- 03E2:
1667
- - 03E2
1666
+ 994:
1667
+ - 994
1668
1668
  - COPTIC CAPITAL LETTER SHEI
1669
1669
  - Lu
1670
- - "0"
1670
+ - '0'
1671
1671
  - L
1672
- - ""
1673
- - ""
1674
- - ""
1675
- - ""
1672
+ - ''
1673
+ - ''
1674
+ - ''
1675
+ - ''
1676
1676
  - N
1677
1677
  - GREEK CAPITAL LETTER SHEI
1678
- - ""
1679
- - ""
1680
- - 03E3
1681
- - ""
1682
- 03E3:
1678
+ - ''
1679
+ - ''
1683
1680
  - 03E3
1681
+ - ''
1682
+ 995:
1683
+ - 995
1684
1684
  - COPTIC SMALL LETTER SHEI
1685
1685
  - Ll
1686
- - "0"
1686
+ - '0'
1687
1687
  - L
1688
- - ""
1689
- - ""
1690
- - ""
1691
- - ""
1688
+ - ''
1689
+ - ''
1690
+ - ''
1691
+ - ''
1692
1692
  - N
1693
1693
  - GREEK SMALL LETTER SHEI
1694
- - ""
1694
+ - ''
1695
1695
  - 03E2
1696
- - ""
1696
+ - ''
1697
1697
  - 03E2
1698
- 03E4:
1699
- - 03E4
1698
+ 996:
1699
+ - 996
1700
1700
  - COPTIC CAPITAL LETTER FEI
1701
1701
  - Lu
1702
- - "0"
1702
+ - '0'
1703
1703
  - L
1704
- - ""
1705
- - ""
1706
- - ""
1707
- - ""
1704
+ - ''
1705
+ - ''
1706
+ - ''
1707
+ - ''
1708
1708
  - N
1709
1709
  - GREEK CAPITAL LETTER FEI
1710
- - ""
1711
- - ""
1712
- - 03E5
1713
- - ""
1714
- 03E5:
1710
+ - ''
1711
+ - ''
1715
1712
  - 03E5
1713
+ - ''
1714
+ 997:
1715
+ - 997
1716
1716
  - COPTIC SMALL LETTER FEI
1717
1717
  - Ll
1718
- - "0"
1718
+ - '0'
1719
1719
  - L
1720
- - ""
1721
- - ""
1722
- - ""
1723
- - ""
1720
+ - ''
1721
+ - ''
1722
+ - ''
1723
+ - ''
1724
1724
  - N
1725
1725
  - GREEK SMALL LETTER FEI
1726
- - ""
1726
+ - ''
1727
1727
  - 03E4
1728
- - ""
1728
+ - ''
1729
1729
  - 03E4
1730
- 03E6:
1731
- - 03E6
1730
+ 998:
1731
+ - 998
1732
1732
  - COPTIC CAPITAL LETTER KHEI
1733
1733
  - Lu
1734
- - "0"
1734
+ - '0'
1735
1735
  - L
1736
- - ""
1737
- - ""
1738
- - ""
1739
- - ""
1736
+ - ''
1737
+ - ''
1738
+ - ''
1739
+ - ''
1740
1740
  - N
1741
1741
  - GREEK CAPITAL LETTER KHEI
1742
- - ""
1743
- - ""
1744
- - 03E7
1745
- - ""
1746
- 03E7:
1742
+ - ''
1743
+ - ''
1747
1744
  - 03E7
1745
+ - ''
1746
+ 999:
1747
+ - 999
1748
1748
  - COPTIC SMALL LETTER KHEI
1749
1749
  - Ll
1750
- - "0"
1750
+ - '0'
1751
1751
  - L
1752
- - ""
1753
- - ""
1754
- - ""
1755
- - ""
1752
+ - ''
1753
+ - ''
1754
+ - ''
1755
+ - ''
1756
1756
  - N
1757
1757
  - GREEK SMALL LETTER KHEI
1758
- - ""
1758
+ - ''
1759
1759
  - 03E6
1760
- - ""
1760
+ - ''
1761
1761
  - 03E6
1762
- 03E8:
1763
- - 03E8
1762
+ 1000:
1763
+ - 1000
1764
1764
  - COPTIC CAPITAL LETTER HORI
1765
1765
  - Lu
1766
- - "0"
1766
+ - '0'
1767
1767
  - L
1768
- - ""
1769
- - ""
1770
- - ""
1771
- - ""
1768
+ - ''
1769
+ - ''
1770
+ - ''
1771
+ - ''
1772
1772
  - N
1773
1773
  - GREEK CAPITAL LETTER HORI
1774
- - ""
1775
- - ""
1776
- - 03E9
1777
- - ""
1778
- 03E9:
1774
+ - ''
1775
+ - ''
1779
1776
  - 03E9
1777
+ - ''
1778
+ 1001:
1779
+ - 1001
1780
1780
  - COPTIC SMALL LETTER HORI
1781
1781
  - Ll
1782
- - "0"
1782
+ - '0'
1783
1783
  - L
1784
- - ""
1785
- - ""
1786
- - ""
1787
- - ""
1784
+ - ''
1785
+ - ''
1786
+ - ''
1787
+ - ''
1788
1788
  - N
1789
1789
  - GREEK SMALL LETTER HORI
1790
- - ""
1790
+ - ''
1791
1791
  - 03E8
1792
- - ""
1792
+ - ''
1793
1793
  - 03E8
1794
- 03EA:
1795
- - 03EA
1794
+ 1002:
1795
+ - 1002
1796
1796
  - COPTIC CAPITAL LETTER GANGIA
1797
1797
  - Lu
1798
- - "0"
1798
+ - '0'
1799
1799
  - L
1800
- - ""
1801
- - ""
1802
- - ""
1803
- - ""
1800
+ - ''
1801
+ - ''
1802
+ - ''
1803
+ - ''
1804
1804
  - N
1805
1805
  - GREEK CAPITAL LETTER GANGIA
1806
- - ""
1807
- - ""
1808
- - 03EB
1809
- - ""
1810
- 03EB:
1806
+ - ''
1807
+ - ''
1811
1808
  - 03EB
1809
+ - ''
1810
+ 1003:
1811
+ - 1003
1812
1812
  - COPTIC SMALL LETTER GANGIA
1813
1813
  - Ll
1814
- - "0"
1814
+ - '0'
1815
1815
  - L
1816
- - ""
1817
- - ""
1818
- - ""
1819
- - ""
1816
+ - ''
1817
+ - ''
1818
+ - ''
1819
+ - ''
1820
1820
  - N
1821
1821
  - GREEK SMALL LETTER GANGIA
1822
- - ""
1822
+ - ''
1823
1823
  - 03EA
1824
- - ""
1824
+ - ''
1825
1825
  - 03EA
1826
- 03EC:
1827
- - 03EC
1826
+ 1004:
1827
+ - 1004
1828
1828
  - COPTIC CAPITAL LETTER SHIMA
1829
1829
  - Lu
1830
- - "0"
1830
+ - '0'
1831
1831
  - L
1832
- - ""
1833
- - ""
1834
- - ""
1835
- - ""
1832
+ - ''
1833
+ - ''
1834
+ - ''
1835
+ - ''
1836
1836
  - N
1837
1837
  - GREEK CAPITAL LETTER SHIMA
1838
- - ""
1839
- - ""
1840
- - 03ED
1841
- - ""
1842
- 03ED:
1838
+ - ''
1839
+ - ''
1843
1840
  - 03ED
1841
+ - ''
1842
+ 1005:
1843
+ - 1005
1844
1844
  - COPTIC SMALL LETTER SHIMA
1845
1845
  - Ll
1846
- - "0"
1846
+ - '0'
1847
1847
  - L
1848
- - ""
1849
- - ""
1850
- - ""
1851
- - ""
1848
+ - ''
1849
+ - ''
1850
+ - ''
1851
+ - ''
1852
1852
  - N
1853
1853
  - GREEK SMALL LETTER SHIMA
1854
- - ""
1854
+ - ''
1855
1855
  - 03EC
1856
- - ""
1856
+ - ''
1857
1857
  - 03EC
1858
- 03EE:
1859
- - 03EE
1858
+ 1006:
1859
+ - 1006
1860
1860
  - COPTIC CAPITAL LETTER DEI
1861
1861
  - Lu
1862
- - "0"
1862
+ - '0'
1863
1863
  - L
1864
- - ""
1865
- - ""
1866
- - ""
1867
- - ""
1864
+ - ''
1865
+ - ''
1866
+ - ''
1867
+ - ''
1868
1868
  - N
1869
1869
  - GREEK CAPITAL LETTER DEI
1870
- - ""
1871
- - ""
1872
- - 03EF
1873
- - ""
1874
- 03EF:
1870
+ - ''
1871
+ - ''
1875
1872
  - 03EF
1873
+ - ''
1874
+ 1007:
1875
+ - 1007
1876
1876
  - COPTIC SMALL LETTER DEI
1877
1877
  - Ll
1878
- - "0"
1878
+ - '0'
1879
1879
  - L
1880
- - ""
1881
- - ""
1882
- - ""
1883
- - ""
1880
+ - ''
1881
+ - ''
1882
+ - ''
1883
+ - ''
1884
1884
  - N
1885
1885
  - GREEK SMALL LETTER DEI
1886
- - ""
1886
+ - ''
1887
1887
  - 03EE
1888
- - ""
1888
+ - ''
1889
1889
  - 03EE
1890
- 03F0:
1891
- - 03F0
1890
+ 1008:
1891
+ - 1008
1892
1892
  - GREEK KAPPA SYMBOL
1893
1893
  - Ll
1894
- - "0"
1894
+ - '0'
1895
1895
  - L
1896
1896
  - <compat> 03BA
1897
- - ""
1898
- - ""
1899
- - ""
1897
+ - ''
1898
+ - ''
1899
+ - ''
1900
1900
  - N
1901
1901
  - GREEK SMALL LETTER SCRIPT KAPPA
1902
- - ""
1902
+ - ''
1903
1903
  - 039A
1904
- - ""
1904
+ - ''
1905
1905
  - 039A
1906
- 03F1:
1907
- - 03F1
1906
+ 1009:
1907
+ - 1009
1908
1908
  - GREEK RHO SYMBOL
1909
1909
  - Ll
1910
- - "0"
1910
+ - '0'
1911
1911
  - L
1912
1912
  - <compat> 03C1
1913
- - ""
1914
- - ""
1915
- - ""
1913
+ - ''
1914
+ - ''
1915
+ - ''
1916
1916
  - N
1917
1917
  - GREEK SMALL LETTER TAILED RHO
1918
- - ""
1918
+ - ''
1919
1919
  - 03A1
1920
- - ""
1920
+ - ''
1921
1921
  - 03A1
1922
- 03F2:
1923
- - 03F2
1922
+ 1010:
1923
+ - 1010
1924
1924
  - GREEK LUNATE SIGMA SYMBOL
1925
1925
  - Ll
1926
- - "0"
1926
+ - '0'
1927
1927
  - L
1928
1928
  - <compat> 03C2
1929
- - ""
1930
- - ""
1931
- - ""
1929
+ - ''
1930
+ - ''
1931
+ - ''
1932
1932
  - N
1933
1933
  - GREEK SMALL LETTER LUNATE SIGMA
1934
- - ""
1934
+ - ''
1935
1935
  - 03F9
1936
- - ""
1936
+ - ''
1937
1937
  - 03F9
1938
- 03F3:
1939
- - 03F3
1938
+ 1011:
1939
+ - 1011
1940
1940
  - GREEK LETTER YOT
1941
1941
  - Ll
1942
- - "0"
1942
+ - '0'
1943
1943
  - L
1944
- - ""
1945
- - ""
1946
- - ""
1947
- - ""
1944
+ - ''
1945
+ - ''
1946
+ - ''
1947
+ - ''
1948
1948
  - N
1949
- - ""
1950
- - ""
1951
- - ""
1952
- - ""
1953
- - ""
1954
- 03F4:
1955
- - 03F4
1949
+ - ''
1950
+ - ''
1951
+ - ''
1952
+ - ''
1953
+ - ''
1954
+ 1012:
1955
+ - 1012
1956
1956
  - GREEK CAPITAL THETA SYMBOL
1957
1957
  - Lu
1958
- - "0"
1958
+ - '0'
1959
1959
  - L
1960
1960
  - <compat> 0398
1961
- - ""
1962
- - ""
1963
- - ""
1961
+ - ''
1962
+ - ''
1963
+ - ''
1964
1964
  - N
1965
- - ""
1966
- - ""
1967
- - ""
1965
+ - ''
1966
+ - ''
1967
+ - ''
1968
1968
  - 03B8
1969
- - ""
1970
- 03F5:
1971
- - 03F5
1969
+ - ''
1970
+ 1013:
1971
+ - 1013
1972
1972
  - GREEK LUNATE EPSILON SYMBOL
1973
1973
  - Ll
1974
- - "0"
1974
+ - '0'
1975
1975
  - L
1976
1976
  - <compat> 03B5
1977
- - ""
1978
- - ""
1979
- - ""
1977
+ - ''
1978
+ - ''
1979
+ - ''
1980
1980
  - N
1981
- - ""
1982
- - ""
1981
+ - ''
1982
+ - ''
1983
1983
  - 0395
1984
- - ""
1984
+ - ''
1985
1985
  - 0395
1986
- 03F6:
1987
- - 03F6
1986
+ 1014:
1987
+ - 1014
1988
1988
  - GREEK REVERSED LUNATE EPSILON SYMBOL
1989
1989
  - Sm
1990
- - "0"
1991
- - "ON"
1992
- - ""
1993
- - ""
1994
- - ""
1995
- - ""
1996
- - N
1997
- - ""
1998
- - ""
1999
- - ""
2000
- - ""
2001
- - ""
2002
- 03F7:
2003
- - 03F7
1990
+ - '0'
1991
+ - 'ON'
1992
+ - ''
1993
+ - ''
1994
+ - ''
1995
+ - ''
1996
+ - N
1997
+ - ''
1998
+ - ''
1999
+ - ''
2000
+ - ''
2001
+ - ''
2002
+ 1015:
2003
+ - 1015
2004
2004
  - GREEK CAPITAL LETTER SHO
2005
2005
  - Lu
2006
- - "0"
2006
+ - '0'
2007
2007
  - L
2008
- - ""
2009
- - ""
2010
- - ""
2011
- - ""
2008
+ - ''
2009
+ - ''
2010
+ - ''
2011
+ - ''
2012
2012
  - N
2013
- - ""
2014
- - ""
2015
- - ""
2016
- - 03F8
2017
- - ""
2018
- 03F8:
2013
+ - ''
2014
+ - ''
2015
+ - ''
2019
2016
  - 03F8
2017
+ - ''
2018
+ 1016:
2019
+ - 1016
2020
2020
  - GREEK SMALL LETTER SHO
2021
2021
  - Ll
2022
- - "0"
2022
+ - '0'
2023
2023
  - L
2024
- - ""
2025
- - ""
2026
- - ""
2027
- - ""
2024
+ - ''
2025
+ - ''
2026
+ - ''
2027
+ - ''
2028
2028
  - N
2029
- - ""
2030
- - ""
2029
+ - ''
2030
+ - ''
2031
2031
  - 03F7
2032
- - ""
2032
+ - ''
2033
2033
  - 03F7
2034
- 03F9:
2035
- - 03F9
2034
+ 1017:
2035
+ - 1017
2036
2036
  - GREEK CAPITAL LUNATE SIGMA SYMBOL
2037
2037
  - Lu
2038
- - "0"
2038
+ - '0'
2039
2039
  - L
2040
2040
  - <compat> 03A3
2041
- - ""
2042
- - ""
2043
- - ""
2041
+ - ''
2042
+ - ''
2043
+ - ''
2044
2044
  - N
2045
- - ""
2046
- - ""
2047
- - ""
2045
+ - ''
2046
+ - ''
2047
+ - ''
2048
2048
  - 03F2
2049
- - ""
2050
- 03FA:
2051
- - 03FA
2049
+ - ''
2050
+ 1018:
2051
+ - 1018
2052
2052
  - GREEK CAPITAL LETTER SAN
2053
2053
  - Lu
2054
- - "0"
2054
+ - '0'
2055
2055
  - L
2056
- - ""
2057
- - ""
2058
- - ""
2059
- - ""
2056
+ - ''
2057
+ - ''
2058
+ - ''
2059
+ - ''
2060
2060
  - N
2061
- - ""
2062
- - ""
2063
- - ""
2064
- - 03FB
2065
- - ""
2066
- 03FB:
2061
+ - ''
2062
+ - ''
2063
+ - ''
2067
2064
  - 03FB
2065
+ - ''
2066
+ 1019:
2067
+ - 1019
2068
2068
  - GREEK SMALL LETTER SAN
2069
2069
  - Ll
2070
- - "0"
2070
+ - '0'
2071
2071
  - L
2072
- - ""
2073
- - ""
2074
- - ""
2075
- - ""
2072
+ - ''
2073
+ - ''
2074
+ - ''
2075
+ - ''
2076
2076
  - N
2077
- - ""
2078
- - ""
2077
+ - ''
2078
+ - ''
2079
2079
  - 03FA
2080
- - ""
2080
+ - ''
2081
2081
  - 03FA
2082
- 03FC:
2083
- - 03FC
2082
+ 1020:
2083
+ - 1020
2084
2084
  - GREEK RHO WITH STROKE SYMBOL
2085
2085
  - Ll
2086
- - "0"
2086
+ - '0'
2087
2087
  - L
2088
- - ""
2089
- - ""
2090
- - ""
2091
- - ""
2088
+ - ''
2089
+ - ''
2090
+ - ''
2091
+ - ''
2092
2092
  - N
2093
- - ""
2094
- - ""
2095
- - ""
2096
- - ""
2097
- - ""
2098
- 03FD:
2099
- - 03FD
2093
+ - ''
2094
+ - ''
2095
+ - ''
2096
+ - ''
2097
+ - ''
2098
+ 1021:
2099
+ - 1021
2100
2100
  - GREEK CAPITAL REVERSED LUNATE SIGMA SYMBOL
2101
2101
  - Lu
2102
- - "0"
2102
+ - '0'
2103
2103
  - L
2104
- - ""
2105
- - ""
2106
- - ""
2107
- - ""
2104
+ - ''
2105
+ - ''
2106
+ - ''
2107
+ - ''
2108
2108
  - N
2109
- - ""
2110
- - ""
2111
- - ""
2109
+ - ''
2110
+ - ''
2111
+ - ''
2112
2112
  - 037B
2113
- - ""
2114
- 03FE:
2115
- - 03FE
2113
+ - ''
2114
+ 1022:
2115
+ - 1022
2116
2116
  - GREEK CAPITAL DOTTED LUNATE SIGMA SYMBOL
2117
2117
  - Lu
2118
- - "0"
2118
+ - '0'
2119
2119
  - L
2120
- - ""
2121
- - ""
2122
- - ""
2123
- - ""
2120
+ - ''
2121
+ - ''
2122
+ - ''
2123
+ - ''
2124
2124
  - N
2125
- - ""
2126
- - ""
2127
- - ""
2125
+ - ''
2126
+ - ''
2127
+ - ''
2128
2128
  - 037C
2129
- - ""
2130
- 03FF:
2131
- - 03FF
2129
+ - ''
2130
+ 1023:
2131
+ - 1023
2132
2132
  - GREEK CAPITAL REVERSED DOTTED LUNATE SIGMA SYMBOL
2133
2133
  - Lu
2134
- - "0"
2134
+ - '0'
2135
2135
  - L
2136
- - ""
2137
- - ""
2138
- - ""
2139
- - ""
2136
+ - ''
2137
+ - ''
2138
+ - ''
2139
+ - ''
2140
2140
  - N
2141
- - ""
2142
- - ""
2143
- - ""
2141
+ - ''
2142
+ - ''
2143
+ - ''
2144
2144
  - 037D
2145
- - ""
2145
+ - ''