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
@@ -1,2049 +1,2049 @@
1
- ---
2
- "0100":
3
- - "0100"
1
+ ---
2
+ 256:
3
+ - 256
4
4
  - LATIN CAPITAL LETTER A WITH MACRON
5
5
  - Lu
6
- - "0"
6
+ - '0'
7
7
  - L
8
8
  - 0041 0304
9
- - ""
10
- - ""
11
- - ""
9
+ - ''
10
+ - ''
11
+ - ''
12
12
  - N
13
13
  - LATIN CAPITAL LETTER A MACRON
14
- - ""
15
- - ""
16
- - "0101"
17
- - ""
18
- "0101":
19
- - "0101"
14
+ - ''
15
+ - ''
16
+ - '0101'
17
+ - ''
18
+ 257:
19
+ - 257
20
20
  - LATIN SMALL LETTER A WITH MACRON
21
21
  - Ll
22
- - "0"
22
+ - '0'
23
23
  - L
24
24
  - 0061 0304
25
- - ""
26
- - ""
27
- - ""
25
+ - ''
26
+ - ''
27
+ - ''
28
28
  - N
29
29
  - LATIN SMALL LETTER A MACRON
30
- - ""
31
- - "0100"
32
- - ""
33
- - "0100"
34
- "0102":
35
- - "0102"
30
+ - ''
31
+ - '0100'
32
+ - ''
33
+ - '0100'
34
+ 258:
35
+ - 258
36
36
  - LATIN CAPITAL LETTER A WITH BREVE
37
37
  - Lu
38
- - "0"
38
+ - '0'
39
39
  - L
40
40
  - 0041 0306
41
- - ""
42
- - ""
43
- - ""
41
+ - ''
42
+ - ''
43
+ - ''
44
44
  - N
45
45
  - LATIN CAPITAL LETTER A BREVE
46
- - ""
47
- - ""
48
- - "0103"
49
- - ""
50
- "0103":
51
- - "0103"
46
+ - ''
47
+ - ''
48
+ - '0103'
49
+ - ''
50
+ 259:
51
+ - 259
52
52
  - LATIN SMALL LETTER A WITH BREVE
53
53
  - Ll
54
- - "0"
54
+ - '0'
55
55
  - L
56
56
  - 0061 0306
57
- - ""
58
- - ""
59
- - ""
57
+ - ''
58
+ - ''
59
+ - ''
60
60
  - N
61
61
  - LATIN SMALL LETTER A BREVE
62
- - ""
63
- - "0102"
64
- - ""
65
- - "0102"
66
- "0104":
67
- - "0104"
62
+ - ''
63
+ - '0102'
64
+ - ''
65
+ - '0102'
66
+ 260:
67
+ - 260
68
68
  - LATIN CAPITAL LETTER A WITH OGONEK
69
69
  - Lu
70
- - "0"
70
+ - '0'
71
71
  - L
72
72
  - 0041 0328
73
- - ""
74
- - ""
75
- - ""
73
+ - ''
74
+ - ''
75
+ - ''
76
76
  - N
77
77
  - LATIN CAPITAL LETTER A OGONEK
78
- - ""
79
- - ""
80
- - "0105"
81
- - ""
82
- "0105":
83
- - "0105"
78
+ - ''
79
+ - ''
80
+ - '0105'
81
+ - ''
82
+ 261:
83
+ - 261
84
84
  - LATIN SMALL LETTER A WITH OGONEK
85
85
  - Ll
86
- - "0"
86
+ - '0'
87
87
  - L
88
88
  - 0061 0328
89
- - ""
90
- - ""
91
- - ""
89
+ - ''
90
+ - ''
91
+ - ''
92
92
  - N
93
93
  - LATIN SMALL LETTER A OGONEK
94
- - ""
95
- - "0104"
96
- - ""
97
- - "0104"
98
- "0106":
99
- - "0106"
94
+ - ''
95
+ - '0104'
96
+ - ''
97
+ - '0104'
98
+ 262:
99
+ - 262
100
100
  - LATIN CAPITAL LETTER C WITH ACUTE
101
101
  - Lu
102
- - "0"
102
+ - '0'
103
103
  - L
104
104
  - 0043 0301
105
- - ""
106
- - ""
107
- - ""
105
+ - ''
106
+ - ''
107
+ - ''
108
108
  - N
109
109
  - LATIN CAPITAL LETTER C ACUTE
110
- - ""
111
- - ""
112
- - "0107"
113
- - ""
114
- "0107":
115
- - "0107"
110
+ - ''
111
+ - ''
112
+ - '0107'
113
+ - ''
114
+ 263:
115
+ - 263
116
116
  - LATIN SMALL LETTER C WITH ACUTE
117
117
  - Ll
118
- - "0"
118
+ - '0'
119
119
  - L
120
120
  - 0063 0301
121
- - ""
122
- - ""
123
- - ""
121
+ - ''
122
+ - ''
123
+ - ''
124
124
  - N
125
125
  - LATIN SMALL LETTER C ACUTE
126
- - ""
127
- - "0106"
128
- - ""
129
- - "0106"
130
- 0108:
131
- - 0108
126
+ - ''
127
+ - '0106'
128
+ - ''
129
+ - '0106'
130
+ 264:
131
+ - 264
132
132
  - LATIN CAPITAL LETTER C WITH CIRCUMFLEX
133
133
  - Lu
134
- - "0"
134
+ - '0'
135
135
  - L
136
136
  - 0043 0302
137
- - ""
138
- - ""
139
- - ""
137
+ - ''
138
+ - ''
139
+ - ''
140
140
  - N
141
141
  - LATIN CAPITAL LETTER C CIRCUMFLEX
142
- - ""
143
- - ""
144
- - 0109
145
- - ""
146
- 0109:
142
+ - ''
143
+ - ''
147
144
  - 0109
145
+ - ''
146
+ 265:
147
+ - 265
148
148
  - LATIN SMALL LETTER C WITH CIRCUMFLEX
149
149
  - Ll
150
- - "0"
150
+ - '0'
151
151
  - L
152
152
  - 0063 0302
153
- - ""
154
- - ""
155
- - ""
153
+ - ''
154
+ - ''
155
+ - ''
156
156
  - N
157
157
  - LATIN SMALL LETTER C CIRCUMFLEX
158
- - ""
158
+ - ''
159
159
  - 0108
160
- - ""
160
+ - ''
161
161
  - 0108
162
- 010A:
163
- - 010A
162
+ 266:
163
+ - 266
164
164
  - LATIN CAPITAL LETTER C WITH DOT ABOVE
165
165
  - Lu
166
- - "0"
166
+ - '0'
167
167
  - L
168
168
  - 0043 0307
169
- - ""
170
- - ""
171
- - ""
169
+ - ''
170
+ - ''
171
+ - ''
172
172
  - N
173
173
  - LATIN CAPITAL LETTER C DOT
174
- - ""
175
- - ""
176
- - 010B
177
- - ""
178
- 010B:
174
+ - ''
175
+ - ''
179
176
  - 010B
177
+ - ''
178
+ 267:
179
+ - 267
180
180
  - LATIN SMALL LETTER C WITH DOT ABOVE
181
181
  - Ll
182
- - "0"
182
+ - '0'
183
183
  - L
184
184
  - 0063 0307
185
- - ""
186
- - ""
187
- - ""
185
+ - ''
186
+ - ''
187
+ - ''
188
188
  - N
189
189
  - LATIN SMALL LETTER C DOT
190
- - ""
190
+ - ''
191
191
  - 010A
192
- - ""
192
+ - ''
193
193
  - 010A
194
- 010C:
195
- - 010C
194
+ 268:
195
+ - 268
196
196
  - LATIN CAPITAL LETTER C WITH CARON
197
197
  - Lu
198
- - "0"
198
+ - '0'
199
199
  - L
200
200
  - 0043 030C
201
- - ""
202
- - ""
203
- - ""
201
+ - ''
202
+ - ''
203
+ - ''
204
204
  - N
205
205
  - LATIN CAPITAL LETTER C HACEK
206
- - ""
207
- - ""
208
- - 010D
209
- - ""
210
- 010D:
206
+ - ''
207
+ - ''
211
208
  - 010D
209
+ - ''
210
+ 269:
211
+ - 269
212
212
  - LATIN SMALL LETTER C WITH CARON
213
213
  - Ll
214
- - "0"
214
+ - '0'
215
215
  - L
216
216
  - 0063 030C
217
- - ""
218
- - ""
219
- - ""
217
+ - ''
218
+ - ''
219
+ - ''
220
220
  - N
221
221
  - LATIN SMALL LETTER C HACEK
222
- - ""
222
+ - ''
223
223
  - 010C
224
- - ""
224
+ - ''
225
225
  - 010C
226
- 010E:
227
- - 010E
226
+ 270:
227
+ - 270
228
228
  - LATIN CAPITAL LETTER D WITH CARON
229
229
  - Lu
230
- - "0"
230
+ - '0'
231
231
  - L
232
232
  - 0044 030C
233
- - ""
234
- - ""
235
- - ""
233
+ - ''
234
+ - ''
235
+ - ''
236
236
  - N
237
237
  - LATIN CAPITAL LETTER D HACEK
238
- - ""
239
- - ""
240
- - 010F
241
- - ""
242
- 010F:
238
+ - ''
239
+ - ''
243
240
  - 010F
241
+ - ''
242
+ 271:
243
+ - 271
244
244
  - LATIN SMALL LETTER D WITH CARON
245
245
  - Ll
246
- - "0"
246
+ - '0'
247
247
  - L
248
248
  - 0064 030C
249
- - ""
250
- - ""
251
- - ""
249
+ - ''
250
+ - ''
251
+ - ''
252
252
  - N
253
253
  - LATIN SMALL LETTER D HACEK
254
- - ""
254
+ - ''
255
255
  - 010E
256
- - ""
256
+ - ''
257
257
  - 010E
258
- "0110":
259
- - "0110"
258
+ 272:
259
+ - 272
260
260
  - LATIN CAPITAL LETTER D WITH STROKE
261
261
  - Lu
262
- - "0"
262
+ - '0'
263
263
  - L
264
- - ""
265
- - ""
266
- - ""
267
- - ""
264
+ - ''
265
+ - ''
266
+ - ''
267
+ - ''
268
268
  - N
269
269
  - LATIN CAPITAL LETTER D BAR
270
- - ""
271
- - ""
272
- - "0111"
273
- - ""
274
- "0111":
275
- - "0111"
270
+ - ''
271
+ - ''
272
+ - '0111'
273
+ - ''
274
+ 273:
275
+ - 273
276
276
  - LATIN SMALL LETTER D WITH STROKE
277
277
  - Ll
278
- - "0"
278
+ - '0'
279
279
  - L
280
- - ""
281
- - ""
282
- - ""
283
- - ""
280
+ - ''
281
+ - ''
282
+ - ''
283
+ - ''
284
284
  - N
285
285
  - LATIN SMALL LETTER D BAR
286
- - ""
287
- - "0110"
288
- - ""
289
- - "0110"
290
- "0112":
291
- - "0112"
286
+ - ''
287
+ - '0110'
288
+ - ''
289
+ - '0110'
290
+ 274:
291
+ - 274
292
292
  - LATIN CAPITAL LETTER E WITH MACRON
293
293
  - Lu
294
- - "0"
294
+ - '0'
295
295
  - L
296
296
  - 0045 0304
297
- - ""
298
- - ""
299
- - ""
297
+ - ''
298
+ - ''
299
+ - ''
300
300
  - N
301
301
  - LATIN CAPITAL LETTER E MACRON
302
- - ""
303
- - ""
304
- - "0113"
305
- - ""
306
- "0113":
307
- - "0113"
302
+ - ''
303
+ - ''
304
+ - '0113'
305
+ - ''
306
+ 275:
307
+ - 275
308
308
  - LATIN SMALL LETTER E WITH MACRON
309
309
  - Ll
310
- - "0"
310
+ - '0'
311
311
  - L
312
312
  - 0065 0304
313
- - ""
314
- - ""
315
- - ""
313
+ - ''
314
+ - ''
315
+ - ''
316
316
  - N
317
317
  - LATIN SMALL LETTER E MACRON
318
- - ""
319
- - "0112"
320
- - ""
321
- - "0112"
322
- "0114":
323
- - "0114"
318
+ - ''
319
+ - '0112'
320
+ - ''
321
+ - '0112'
322
+ 276:
323
+ - 276
324
324
  - LATIN CAPITAL LETTER E WITH BREVE
325
325
  - Lu
326
- - "0"
326
+ - '0'
327
327
  - L
328
328
  - 0045 0306
329
- - ""
330
- - ""
331
- - ""
329
+ - ''
330
+ - ''
331
+ - ''
332
332
  - N
333
333
  - LATIN CAPITAL LETTER E BREVE
334
- - ""
335
- - ""
336
- - "0115"
337
- - ""
338
- "0115":
339
- - "0115"
334
+ - ''
335
+ - ''
336
+ - '0115'
337
+ - ''
338
+ 277:
339
+ - 277
340
340
  - LATIN SMALL LETTER E WITH BREVE
341
341
  - Ll
342
- - "0"
342
+ - '0'
343
343
  - L
344
344
  - 0065 0306
345
- - ""
346
- - ""
347
- - ""
345
+ - ''
346
+ - ''
347
+ - ''
348
348
  - N
349
349
  - LATIN SMALL LETTER E BREVE
350
- - ""
351
- - "0114"
352
- - ""
353
- - "0114"
354
- "0116":
355
- - "0116"
350
+ - ''
351
+ - '0114'
352
+ - ''
353
+ - '0114'
354
+ 278:
355
+ - 278
356
356
  - LATIN CAPITAL LETTER E WITH DOT ABOVE
357
357
  - Lu
358
- - "0"
358
+ - '0'
359
359
  - L
360
360
  - 0045 0307
361
- - ""
362
- - ""
363
- - ""
361
+ - ''
362
+ - ''
363
+ - ''
364
364
  - N
365
365
  - LATIN CAPITAL LETTER E DOT
366
- - ""
367
- - ""
368
- - "0117"
369
- - ""
370
- "0117":
371
- - "0117"
366
+ - ''
367
+ - ''
368
+ - '0117'
369
+ - ''
370
+ 279:
371
+ - 279
372
372
  - LATIN SMALL LETTER E WITH DOT ABOVE
373
373
  - Ll
374
- - "0"
374
+ - '0'
375
375
  - L
376
376
  - 0065 0307
377
- - ""
378
- - ""
379
- - ""
377
+ - ''
378
+ - ''
379
+ - ''
380
380
  - N
381
381
  - LATIN SMALL LETTER E DOT
382
- - ""
383
- - "0116"
384
- - ""
385
- - "0116"
386
- 0118:
387
- - 0118
382
+ - ''
383
+ - '0116'
384
+ - ''
385
+ - '0116'
386
+ 280:
387
+ - 280
388
388
  - LATIN CAPITAL LETTER E WITH OGONEK
389
389
  - Lu
390
- - "0"
390
+ - '0'
391
391
  - L
392
392
  - 0045 0328
393
- - ""
394
- - ""
395
- - ""
393
+ - ''
394
+ - ''
395
+ - ''
396
396
  - N
397
397
  - LATIN CAPITAL LETTER E OGONEK
398
- - ""
399
- - ""
400
- - 0119
401
- - ""
402
- 0119:
398
+ - ''
399
+ - ''
403
400
  - 0119
401
+ - ''
402
+ 281:
403
+ - 281
404
404
  - LATIN SMALL LETTER E WITH OGONEK
405
405
  - Ll
406
- - "0"
406
+ - '0'
407
407
  - L
408
408
  - 0065 0328
409
- - ""
410
- - ""
411
- - ""
409
+ - ''
410
+ - ''
411
+ - ''
412
412
  - N
413
413
  - LATIN SMALL LETTER E OGONEK
414
- - ""
414
+ - ''
415
415
  - 0118
416
- - ""
416
+ - ''
417
417
  - 0118
418
- 011A:
419
- - 011A
418
+ 282:
419
+ - 282
420
420
  - LATIN CAPITAL LETTER E WITH CARON
421
421
  - Lu
422
- - "0"
422
+ - '0'
423
423
  - L
424
424
  - 0045 030C
425
- - ""
426
- - ""
427
- - ""
425
+ - ''
426
+ - ''
427
+ - ''
428
428
  - N
429
429
  - LATIN CAPITAL LETTER E HACEK
430
- - ""
431
- - ""
432
- - 011B
433
- - ""
434
- 011B:
430
+ - ''
431
+ - ''
435
432
  - 011B
433
+ - ''
434
+ 283:
435
+ - 283
436
436
  - LATIN SMALL LETTER E WITH CARON
437
437
  - Ll
438
- - "0"
438
+ - '0'
439
439
  - L
440
440
  - 0065 030C
441
- - ""
442
- - ""
443
- - ""
441
+ - ''
442
+ - ''
443
+ - ''
444
444
  - N
445
445
  - LATIN SMALL LETTER E HACEK
446
- - ""
446
+ - ''
447
447
  - 011A
448
- - ""
448
+ - ''
449
449
  - 011A
450
- 011C:
451
- - 011C
450
+ 284:
451
+ - 284
452
452
  - LATIN CAPITAL LETTER G WITH CIRCUMFLEX
453
453
  - Lu
454
- - "0"
454
+ - '0'
455
455
  - L
456
456
  - 0047 0302
457
- - ""
458
- - ""
459
- - ""
457
+ - ''
458
+ - ''
459
+ - ''
460
460
  - N
461
461
  - LATIN CAPITAL LETTER G CIRCUMFLEX
462
- - ""
463
- - ""
464
- - 011D
465
- - ""
466
- 011D:
462
+ - ''
463
+ - ''
467
464
  - 011D
465
+ - ''
466
+ 285:
467
+ - 285
468
468
  - LATIN SMALL LETTER G WITH CIRCUMFLEX
469
469
  - Ll
470
- - "0"
470
+ - '0'
471
471
  - L
472
472
  - 0067 0302
473
- - ""
474
- - ""
475
- - ""
473
+ - ''
474
+ - ''
475
+ - ''
476
476
  - N
477
477
  - LATIN SMALL LETTER G CIRCUMFLEX
478
- - ""
478
+ - ''
479
479
  - 011C
480
- - ""
480
+ - ''
481
481
  - 011C
482
- 011E:
483
- - 011E
482
+ 286:
483
+ - 286
484
484
  - LATIN CAPITAL LETTER G WITH BREVE
485
485
  - Lu
486
- - "0"
486
+ - '0'
487
487
  - L
488
488
  - 0047 0306
489
- - ""
490
- - ""
491
- - ""
489
+ - ''
490
+ - ''
491
+ - ''
492
492
  - N
493
493
  - LATIN CAPITAL LETTER G BREVE
494
- - ""
495
- - ""
496
- - 011F
497
- - ""
498
- 011F:
494
+ - ''
495
+ - ''
499
496
  - 011F
497
+ - ''
498
+ 287:
499
+ - 287
500
500
  - LATIN SMALL LETTER G WITH BREVE
501
501
  - Ll
502
- - "0"
502
+ - '0'
503
503
  - L
504
504
  - 0067 0306
505
- - ""
506
- - ""
507
- - ""
505
+ - ''
506
+ - ''
507
+ - ''
508
508
  - N
509
509
  - LATIN SMALL LETTER G BREVE
510
- - ""
510
+ - ''
511
511
  - 011E
512
- - ""
512
+ - ''
513
513
  - 011E
514
- "0120":
515
- - "0120"
514
+ 288:
515
+ - 288
516
516
  - LATIN CAPITAL LETTER G WITH DOT ABOVE
517
517
  - Lu
518
- - "0"
518
+ - '0'
519
519
  - L
520
520
  - 0047 0307
521
- - ""
522
- - ""
523
- - ""
521
+ - ''
522
+ - ''
523
+ - ''
524
524
  - N
525
525
  - LATIN CAPITAL LETTER G DOT
526
- - ""
527
- - ""
528
- - "0121"
529
- - ""
530
- "0121":
531
- - "0121"
526
+ - ''
527
+ - ''
528
+ - '0121'
529
+ - ''
530
+ 289:
531
+ - 289
532
532
  - LATIN SMALL LETTER G WITH DOT ABOVE
533
533
  - Ll
534
- - "0"
534
+ - '0'
535
535
  - L
536
536
  - 0067 0307
537
- - ""
538
- - ""
539
- - ""
537
+ - ''
538
+ - ''
539
+ - ''
540
540
  - N
541
541
  - LATIN SMALL LETTER G DOT
542
- - ""
543
- - "0120"
544
- - ""
545
- - "0120"
546
- "0122":
547
- - "0122"
542
+ - ''
543
+ - '0120'
544
+ - ''
545
+ - '0120'
546
+ 290:
547
+ - 290
548
548
  - LATIN CAPITAL LETTER G WITH CEDILLA
549
549
  - Lu
550
- - "0"
550
+ - '0'
551
551
  - L
552
552
  - 0047 0327
553
- - ""
554
- - ""
555
- - ""
553
+ - ''
554
+ - ''
555
+ - ''
556
556
  - N
557
557
  - LATIN CAPITAL LETTER G CEDILLA
558
- - ""
559
- - ""
560
- - "0123"
561
- - ""
562
- "0123":
563
- - "0123"
558
+ - ''
559
+ - ''
560
+ - '0123'
561
+ - ''
562
+ 291:
563
+ - 291
564
564
  - LATIN SMALL LETTER G WITH CEDILLA
565
565
  - Ll
566
- - "0"
566
+ - '0'
567
567
  - L
568
568
  - 0067 0327
569
- - ""
570
- - ""
571
- - ""
569
+ - ''
570
+ - ''
571
+ - ''
572
572
  - N
573
573
  - LATIN SMALL LETTER G CEDILLA
574
- - ""
575
- - "0122"
576
- - ""
577
- - "0122"
578
- "0124":
579
- - "0124"
574
+ - ''
575
+ - '0122'
576
+ - ''
577
+ - '0122'
578
+ 292:
579
+ - 292
580
580
  - LATIN CAPITAL LETTER H WITH CIRCUMFLEX
581
581
  - Lu
582
- - "0"
582
+ - '0'
583
583
  - L
584
584
  - 0048 0302
585
- - ""
586
- - ""
587
- - ""
585
+ - ''
586
+ - ''
587
+ - ''
588
588
  - N
589
589
  - LATIN CAPITAL LETTER H CIRCUMFLEX
590
- - ""
591
- - ""
592
- - "0125"
593
- - ""
594
- "0125":
595
- - "0125"
590
+ - ''
591
+ - ''
592
+ - '0125'
593
+ - ''
594
+ 293:
595
+ - 293
596
596
  - LATIN SMALL LETTER H WITH CIRCUMFLEX
597
597
  - Ll
598
- - "0"
598
+ - '0'
599
599
  - L
600
600
  - 0068 0302
601
- - ""
602
- - ""
603
- - ""
601
+ - ''
602
+ - ''
603
+ - ''
604
604
  - N
605
605
  - LATIN SMALL LETTER H CIRCUMFLEX
606
- - ""
607
- - "0124"
608
- - ""
609
- - "0124"
610
- "0126":
611
- - "0126"
606
+ - ''
607
+ - '0124'
608
+ - ''
609
+ - '0124'
610
+ 294:
611
+ - 294
612
612
  - LATIN CAPITAL LETTER H WITH STROKE
613
613
  - Lu
614
- - "0"
614
+ - '0'
615
615
  - L
616
- - ""
617
- - ""
618
- - ""
619
- - ""
616
+ - ''
617
+ - ''
618
+ - ''
619
+ - ''
620
620
  - N
621
621
  - LATIN CAPITAL LETTER H BAR
622
- - ""
623
- - ""
624
- - "0127"
625
- - ""
626
- "0127":
627
- - "0127"
622
+ - ''
623
+ - ''
624
+ - '0127'
625
+ - ''
626
+ 295:
627
+ - 295
628
628
  - LATIN SMALL LETTER H WITH STROKE
629
629
  - Ll
630
- - "0"
630
+ - '0'
631
631
  - L
632
- - ""
633
- - ""
634
- - ""
635
- - ""
632
+ - ''
633
+ - ''
634
+ - ''
635
+ - ''
636
636
  - N
637
637
  - LATIN SMALL LETTER H BAR
638
- - ""
639
- - "0126"
640
- - ""
641
- - "0126"
642
- 0128:
643
- - 0128
638
+ - ''
639
+ - '0126'
640
+ - ''
641
+ - '0126'
642
+ 296:
643
+ - 296
644
644
  - LATIN CAPITAL LETTER I WITH TILDE
645
645
  - Lu
646
- - "0"
646
+ - '0'
647
647
  - L
648
648
  - 0049 0303
649
- - ""
650
- - ""
651
- - ""
649
+ - ''
650
+ - ''
651
+ - ''
652
652
  - N
653
653
  - LATIN CAPITAL LETTER I TILDE
654
- - ""
655
- - ""
656
- - 0129
657
- - ""
658
- 0129:
654
+ - ''
655
+ - ''
659
656
  - 0129
657
+ - ''
658
+ 297:
659
+ - 297
660
660
  - LATIN SMALL LETTER I WITH TILDE
661
661
  - Ll
662
- - "0"
662
+ - '0'
663
663
  - L
664
664
  - 0069 0303
665
- - ""
666
- - ""
667
- - ""
665
+ - ''
666
+ - ''
667
+ - ''
668
668
  - N
669
669
  - LATIN SMALL LETTER I TILDE
670
- - ""
670
+ - ''
671
671
  - 0128
672
- - ""
672
+ - ''
673
673
  - 0128
674
- 012A:
675
- - 012A
674
+ 298:
675
+ - 298
676
676
  - LATIN CAPITAL LETTER I WITH MACRON
677
677
  - Lu
678
- - "0"
678
+ - '0'
679
679
  - L
680
680
  - 0049 0304
681
- - ""
682
- - ""
683
- - ""
681
+ - ''
682
+ - ''
683
+ - ''
684
684
  - N
685
685
  - LATIN CAPITAL LETTER I MACRON
686
- - ""
687
- - ""
688
- - 012B
689
- - ""
690
- 012B:
686
+ - ''
687
+ - ''
691
688
  - 012B
689
+ - ''
690
+ 299:
691
+ - 299
692
692
  - LATIN SMALL LETTER I WITH MACRON
693
693
  - Ll
694
- - "0"
694
+ - '0'
695
695
  - L
696
696
  - 0069 0304
697
- - ""
698
- - ""
699
- - ""
697
+ - ''
698
+ - ''
699
+ - ''
700
700
  - N
701
701
  - LATIN SMALL LETTER I MACRON
702
- - ""
702
+ - ''
703
703
  - 012A
704
- - ""
704
+ - ''
705
705
  - 012A
706
- 012C:
707
- - 012C
706
+ 300:
707
+ - 300
708
708
  - LATIN CAPITAL LETTER I WITH BREVE
709
709
  - Lu
710
- - "0"
710
+ - '0'
711
711
  - L
712
712
  - 0049 0306
713
- - ""
714
- - ""
715
- - ""
713
+ - ''
714
+ - ''
715
+ - ''
716
716
  - N
717
717
  - LATIN CAPITAL LETTER I BREVE
718
- - ""
719
- - ""
720
- - 012D
721
- - ""
722
- 012D:
718
+ - ''
719
+ - ''
723
720
  - 012D
721
+ - ''
722
+ 301:
723
+ - 301
724
724
  - LATIN SMALL LETTER I WITH BREVE
725
725
  - Ll
726
- - "0"
726
+ - '0'
727
727
  - L
728
728
  - 0069 0306
729
- - ""
730
- - ""
731
- - ""
729
+ - ''
730
+ - ''
731
+ - ''
732
732
  - N
733
733
  - LATIN SMALL LETTER I BREVE
734
- - ""
734
+ - ''
735
735
  - 012C
736
- - ""
736
+ - ''
737
737
  - 012C
738
- 012E:
739
- - 012E
738
+ 302:
739
+ - 302
740
740
  - LATIN CAPITAL LETTER I WITH OGONEK
741
741
  - Lu
742
- - "0"
742
+ - '0'
743
743
  - L
744
744
  - 0049 0328
745
- - ""
746
- - ""
747
- - ""
745
+ - ''
746
+ - ''
747
+ - ''
748
748
  - N
749
749
  - LATIN CAPITAL LETTER I OGONEK
750
- - ""
751
- - ""
752
- - 012F
753
- - ""
754
- 012F:
750
+ - ''
751
+ - ''
755
752
  - 012F
753
+ - ''
754
+ 303:
755
+ - 303
756
756
  - LATIN SMALL LETTER I WITH OGONEK
757
757
  - Ll
758
- - "0"
758
+ - '0'
759
759
  - L
760
760
  - 0069 0328
761
- - ""
762
- - ""
763
- - ""
761
+ - ''
762
+ - ''
763
+ - ''
764
764
  - N
765
765
  - LATIN SMALL LETTER I OGONEK
766
- - ""
766
+ - ''
767
767
  - 012E
768
- - ""
768
+ - ''
769
769
  - 012E
770
- "0130":
771
- - "0130"
770
+ 304:
771
+ - 304
772
772
  - LATIN CAPITAL LETTER I WITH DOT ABOVE
773
773
  - Lu
774
- - "0"
774
+ - '0'
775
775
  - L
776
776
  - 0049 0307
777
- - ""
778
- - ""
779
- - ""
777
+ - ''
778
+ - ''
779
+ - ''
780
780
  - N
781
781
  - LATIN CAPITAL LETTER I DOT
782
- - ""
783
- - ""
782
+ - ''
783
+ - ''
784
784
  - 0069
785
- - ""
786
- "0131":
787
- - "0131"
785
+ - ''
786
+ 305:
787
+ - 305
788
788
  - LATIN SMALL LETTER DOTLESS I
789
789
  - Ll
790
- - "0"
790
+ - '0'
791
791
  - L
792
- - ""
793
- - ""
794
- - ""
795
- - ""
792
+ - ''
793
+ - ''
794
+ - ''
795
+ - ''
796
796
  - N
797
- - ""
798
- - ""
797
+ - ''
798
+ - ''
799
799
  - 0049
800
- - ""
800
+ - ''
801
801
  - 0049
802
- "0132":
803
- - "0132"
802
+ 306:
803
+ - 306
804
804
  - LATIN CAPITAL LIGATURE IJ
805
805
  - Lu
806
- - "0"
806
+ - '0'
807
807
  - L
808
808
  - <compat> 0049 004A
809
- - ""
810
- - ""
811
- - ""
809
+ - ''
810
+ - ''
811
+ - ''
812
812
  - N
813
813
  - LATIN CAPITAL LETTER I J
814
- - ""
815
- - ""
816
- - "0133"
817
- - ""
818
- "0133":
819
- - "0133"
814
+ - ''
815
+ - ''
816
+ - '0133'
817
+ - ''
818
+ 307:
819
+ - 307
820
820
  - LATIN SMALL LIGATURE IJ
821
821
  - Ll
822
- - "0"
822
+ - '0'
823
823
  - L
824
824
  - <compat> 0069 006A
825
- - ""
826
- - ""
827
- - ""
825
+ - ''
826
+ - ''
827
+ - ''
828
828
  - N
829
829
  - LATIN SMALL LETTER I J
830
- - ""
831
- - "0132"
832
- - ""
833
- - "0132"
834
- "0134":
835
- - "0134"
830
+ - ''
831
+ - '0132'
832
+ - ''
833
+ - '0132'
834
+ 308:
835
+ - 308
836
836
  - LATIN CAPITAL LETTER J WITH CIRCUMFLEX
837
837
  - Lu
838
- - "0"
838
+ - '0'
839
839
  - L
840
840
  - 004A 0302
841
- - ""
842
- - ""
843
- - ""
841
+ - ''
842
+ - ''
843
+ - ''
844
844
  - N
845
845
  - LATIN CAPITAL LETTER J CIRCUMFLEX
846
- - ""
847
- - ""
848
- - "0135"
849
- - ""
850
- "0135":
851
- - "0135"
846
+ - ''
847
+ - ''
848
+ - '0135'
849
+ - ''
850
+ 309:
851
+ - 309
852
852
  - LATIN SMALL LETTER J WITH CIRCUMFLEX
853
853
  - Ll
854
- - "0"
854
+ - '0'
855
855
  - L
856
856
  - 006A 0302
857
- - ""
858
- - ""
859
- - ""
857
+ - ''
858
+ - ''
859
+ - ''
860
860
  - N
861
861
  - LATIN SMALL LETTER J CIRCUMFLEX
862
- - ""
863
- - "0134"
864
- - ""
865
- - "0134"
866
- "0136":
867
- - "0136"
862
+ - ''
863
+ - '0134'
864
+ - ''
865
+ - '0134'
866
+ 310:
867
+ - 310
868
868
  - LATIN CAPITAL LETTER K WITH CEDILLA
869
869
  - Lu
870
- - "0"
870
+ - '0'
871
871
  - L
872
872
  - 004B 0327
873
- - ""
874
- - ""
875
- - ""
873
+ - ''
874
+ - ''
875
+ - ''
876
876
  - N
877
877
  - LATIN CAPITAL LETTER K CEDILLA
878
- - ""
879
- - ""
880
- - "0137"
881
- - ""
882
- "0137":
883
- - "0137"
878
+ - ''
879
+ - ''
880
+ - '0137'
881
+ - ''
882
+ 311:
883
+ - 311
884
884
  - LATIN SMALL LETTER K WITH CEDILLA
885
885
  - Ll
886
- - "0"
886
+ - '0'
887
887
  - L
888
888
  - 006B 0327
889
- - ""
890
- - ""
891
- - ""
889
+ - ''
890
+ - ''
891
+ - ''
892
892
  - N
893
893
  - LATIN SMALL LETTER K CEDILLA
894
- - ""
895
- - "0136"
896
- - ""
897
- - "0136"
898
- 0138:
899
- - 0138
894
+ - ''
895
+ - '0136'
896
+ - ''
897
+ - '0136'
898
+ 312:
899
+ - 312
900
900
  - LATIN SMALL LETTER KRA
901
901
  - Ll
902
- - "0"
902
+ - '0'
903
903
  - L
904
- - ""
905
- - ""
906
- - ""
907
- - ""
904
+ - ''
905
+ - ''
906
+ - ''
907
+ - ''
908
908
  - N
909
- - ""
910
- - ""
911
- - ""
912
- - ""
913
- - ""
914
- 0139:
915
- - 0139
909
+ - ''
910
+ - ''
911
+ - ''
912
+ - ''
913
+ - ''
914
+ 313:
915
+ - 313
916
916
  - LATIN CAPITAL LETTER L WITH ACUTE
917
917
  - Lu
918
- - "0"
918
+ - '0'
919
919
  - L
920
920
  - 004C 0301
921
- - ""
922
- - ""
923
- - ""
921
+ - ''
922
+ - ''
923
+ - ''
924
924
  - N
925
925
  - LATIN CAPITAL LETTER L ACUTE
926
- - ""
927
- - ""
928
- - 013A
929
- - ""
930
- 013A:
926
+ - ''
927
+ - ''
931
928
  - 013A
929
+ - ''
930
+ 314:
931
+ - 314
932
932
  - LATIN SMALL LETTER L WITH ACUTE
933
933
  - Ll
934
- - "0"
934
+ - '0'
935
935
  - L
936
936
  - 006C 0301
937
- - ""
938
- - ""
939
- - ""
937
+ - ''
938
+ - ''
939
+ - ''
940
940
  - N
941
941
  - LATIN SMALL LETTER L ACUTE
942
- - ""
942
+ - ''
943
943
  - 0139
944
- - ""
944
+ - ''
945
945
  - 0139
946
- 013B:
947
- - 013B
946
+ 315:
947
+ - 315
948
948
  - LATIN CAPITAL LETTER L WITH CEDILLA
949
949
  - Lu
950
- - "0"
950
+ - '0'
951
951
  - L
952
952
  - 004C 0327
953
- - ""
954
- - ""
955
- - ""
953
+ - ''
954
+ - ''
955
+ - ''
956
956
  - N
957
957
  - LATIN CAPITAL LETTER L CEDILLA
958
- - ""
959
- - ""
960
- - 013C
961
- - ""
962
- 013C:
958
+ - ''
959
+ - ''
963
960
  - 013C
961
+ - ''
962
+ 316:
963
+ - 316
964
964
  - LATIN SMALL LETTER L WITH CEDILLA
965
965
  - Ll
966
- - "0"
966
+ - '0'
967
967
  - L
968
968
  - 006C 0327
969
- - ""
970
- - ""
971
- - ""
969
+ - ''
970
+ - ''
971
+ - ''
972
972
  - N
973
973
  - LATIN SMALL LETTER L CEDILLA
974
- - ""
974
+ - ''
975
975
  - 013B
976
- - ""
976
+ - ''
977
977
  - 013B
978
- 013D:
979
- - 013D
978
+ 317:
979
+ - 317
980
980
  - LATIN CAPITAL LETTER L WITH CARON
981
981
  - Lu
982
- - "0"
982
+ - '0'
983
983
  - L
984
984
  - 004C 030C
985
- - ""
986
- - ""
987
- - ""
985
+ - ''
986
+ - ''
987
+ - ''
988
988
  - N
989
989
  - LATIN CAPITAL LETTER L HACEK
990
- - ""
991
- - ""
992
- - 013E
993
- - ""
994
- 013E:
990
+ - ''
991
+ - ''
995
992
  - 013E
993
+ - ''
994
+ 318:
995
+ - 318
996
996
  - LATIN SMALL LETTER L WITH CARON
997
997
  - Ll
998
- - "0"
998
+ - '0'
999
999
  - L
1000
1000
  - 006C 030C
1001
- - ""
1002
- - ""
1003
- - ""
1001
+ - ''
1002
+ - ''
1003
+ - ''
1004
1004
  - N
1005
1005
  - LATIN SMALL LETTER L HACEK
1006
- - ""
1006
+ - ''
1007
1007
  - 013D
1008
- - ""
1008
+ - ''
1009
1009
  - 013D
1010
- 013F:
1011
- - 013F
1010
+ 319:
1011
+ - 319
1012
1012
  - LATIN CAPITAL LETTER L WITH MIDDLE DOT
1013
1013
  - Lu
1014
- - "0"
1014
+ - '0'
1015
1015
  - L
1016
1016
  - <compat> 004C 00B7
1017
- - ""
1018
- - ""
1019
- - ""
1020
- - N
1021
- - ""
1022
- - ""
1023
- - ""
1024
- - "0140"
1025
- - ""
1026
- "0140":
1027
- - "0140"
1017
+ - ''
1018
+ - ''
1019
+ - ''
1020
+ - N
1021
+ - ''
1022
+ - ''
1023
+ - ''
1024
+ - '0140'
1025
+ - ''
1026
+ 320:
1027
+ - 320
1028
1028
  - LATIN SMALL LETTER L WITH MIDDLE DOT
1029
1029
  - Ll
1030
- - "0"
1030
+ - '0'
1031
1031
  - L
1032
1032
  - <compat> 006C 00B7
1033
- - ""
1034
- - ""
1035
- - ""
1033
+ - ''
1034
+ - ''
1035
+ - ''
1036
1036
  - N
1037
- - ""
1038
- - ""
1037
+ - ''
1038
+ - ''
1039
1039
  - 013F
1040
- - ""
1040
+ - ''
1041
1041
  - 013F
1042
- "0141":
1043
- - "0141"
1042
+ 321:
1043
+ - 321
1044
1044
  - LATIN CAPITAL LETTER L WITH STROKE
1045
1045
  - Lu
1046
- - "0"
1046
+ - '0'
1047
1047
  - L
1048
- - ""
1049
- - ""
1050
- - ""
1051
- - ""
1048
+ - ''
1049
+ - ''
1050
+ - ''
1051
+ - ''
1052
1052
  - N
1053
1053
  - LATIN CAPITAL LETTER L SLASH
1054
- - ""
1055
- - ""
1056
- - "0142"
1057
- - ""
1058
- "0142":
1059
- - "0142"
1054
+ - ''
1055
+ - ''
1056
+ - '0142'
1057
+ - ''
1058
+ 322:
1059
+ - 322
1060
1060
  - LATIN SMALL LETTER L WITH STROKE
1061
1061
  - Ll
1062
- - "0"
1062
+ - '0'
1063
1063
  - L
1064
- - ""
1065
- - ""
1066
- - ""
1067
- - ""
1064
+ - ''
1065
+ - ''
1066
+ - ''
1067
+ - ''
1068
1068
  - N
1069
1069
  - LATIN SMALL LETTER L SLASH
1070
- - ""
1071
- - "0141"
1072
- - ""
1073
- - "0141"
1074
- "0143":
1075
- - "0143"
1070
+ - ''
1071
+ - '0141'
1072
+ - ''
1073
+ - '0141'
1074
+ 323:
1075
+ - 323
1076
1076
  - LATIN CAPITAL LETTER N WITH ACUTE
1077
1077
  - Lu
1078
- - "0"
1078
+ - '0'
1079
1079
  - L
1080
1080
  - 004E 0301
1081
- - ""
1082
- - ""
1083
- - ""
1081
+ - ''
1082
+ - ''
1083
+ - ''
1084
1084
  - N
1085
1085
  - LATIN CAPITAL LETTER N ACUTE
1086
- - ""
1087
- - ""
1088
- - "0144"
1089
- - ""
1090
- "0144":
1091
- - "0144"
1086
+ - ''
1087
+ - ''
1088
+ - '0144'
1089
+ - ''
1090
+ 324:
1091
+ - 324
1092
1092
  - LATIN SMALL LETTER N WITH ACUTE
1093
1093
  - Ll
1094
- - "0"
1094
+ - '0'
1095
1095
  - L
1096
1096
  - 006E 0301
1097
- - ""
1098
- - ""
1099
- - ""
1097
+ - ''
1098
+ - ''
1099
+ - ''
1100
1100
  - N
1101
1101
  - LATIN SMALL LETTER N ACUTE
1102
- - ""
1103
- - "0143"
1104
- - ""
1105
- - "0143"
1106
- "0145":
1107
- - "0145"
1102
+ - ''
1103
+ - '0143'
1104
+ - ''
1105
+ - '0143'
1106
+ 325:
1107
+ - 325
1108
1108
  - LATIN CAPITAL LETTER N WITH CEDILLA
1109
1109
  - Lu
1110
- - "0"
1110
+ - '0'
1111
1111
  - L
1112
1112
  - 004E 0327
1113
- - ""
1114
- - ""
1115
- - ""
1113
+ - ''
1114
+ - ''
1115
+ - ''
1116
1116
  - N
1117
1117
  - LATIN CAPITAL LETTER N CEDILLA
1118
- - ""
1119
- - ""
1120
- - "0146"
1121
- - ""
1122
- "0146":
1123
- - "0146"
1118
+ - ''
1119
+ - ''
1120
+ - '0146'
1121
+ - ''
1122
+ 326:
1123
+ - 326
1124
1124
  - LATIN SMALL LETTER N WITH CEDILLA
1125
1125
  - Ll
1126
- - "0"
1126
+ - '0'
1127
1127
  - L
1128
1128
  - 006E 0327
1129
- - ""
1130
- - ""
1131
- - ""
1129
+ - ''
1130
+ - ''
1131
+ - ''
1132
1132
  - N
1133
1133
  - LATIN SMALL LETTER N CEDILLA
1134
- - ""
1135
- - "0145"
1136
- - ""
1137
- - "0145"
1138
- "0147":
1139
- - "0147"
1134
+ - ''
1135
+ - '0145'
1136
+ - ''
1137
+ - '0145'
1138
+ 327:
1139
+ - 327
1140
1140
  - LATIN CAPITAL LETTER N WITH CARON
1141
1141
  - Lu
1142
- - "0"
1142
+ - '0'
1143
1143
  - L
1144
1144
  - 004E 030C
1145
- - ""
1146
- - ""
1147
- - ""
1145
+ - ''
1146
+ - ''
1147
+ - ''
1148
1148
  - N
1149
1149
  - LATIN CAPITAL LETTER N HACEK
1150
- - ""
1151
- - ""
1152
- - 0148
1153
- - ""
1154
- 0148:
1150
+ - ''
1151
+ - ''
1155
1152
  - 0148
1153
+ - ''
1154
+ 328:
1155
+ - 328
1156
1156
  - LATIN SMALL LETTER N WITH CARON
1157
1157
  - Ll
1158
- - "0"
1158
+ - '0'
1159
1159
  - L
1160
1160
  - 006E 030C
1161
- - ""
1162
- - ""
1163
- - ""
1161
+ - ''
1162
+ - ''
1163
+ - ''
1164
1164
  - N
1165
1165
  - LATIN SMALL LETTER N HACEK
1166
- - ""
1167
- - "0147"
1168
- - ""
1169
- - "0147"
1170
- 0149:
1171
- - 0149
1166
+ - ''
1167
+ - '0147'
1168
+ - ''
1169
+ - '0147'
1170
+ 329:
1171
+ - 329
1172
1172
  - LATIN SMALL LETTER N PRECEDED BY APOSTROPHE
1173
1173
  - Ll
1174
- - "0"
1174
+ - '0'
1175
1175
  - L
1176
1176
  - <compat> 02BC 006E
1177
- - ""
1178
- - ""
1179
- - ""
1177
+ - ''
1178
+ - ''
1179
+ - ''
1180
1180
  - N
1181
1181
  - LATIN SMALL LETTER APOSTROPHE N
1182
- - ""
1183
- - ""
1184
- - ""
1185
- - ""
1186
- 014A:
1187
- - 014A
1182
+ - ''
1183
+ - ''
1184
+ - ''
1185
+ - ''
1186
+ 330:
1187
+ - 330
1188
1188
  - LATIN CAPITAL LETTER ENG
1189
1189
  - Lu
1190
- - "0"
1190
+ - '0'
1191
1191
  - L
1192
- - ""
1193
- - ""
1194
- - ""
1195
- - ""
1192
+ - ''
1193
+ - ''
1194
+ - ''
1195
+ - ''
1196
1196
  - N
1197
- - ""
1198
- - ""
1199
- - ""
1200
- - 014B
1201
- - ""
1202
- 014B:
1197
+ - ''
1198
+ - ''
1199
+ - ''
1203
1200
  - 014B
1201
+ - ''
1202
+ 331:
1203
+ - 331
1204
1204
  - LATIN SMALL LETTER ENG
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
  - 014A
1216
- - ""
1216
+ - ''
1217
1217
  - 014A
1218
- 014C:
1219
- - 014C
1218
+ 332:
1219
+ - 332
1220
1220
  - LATIN CAPITAL LETTER O WITH MACRON
1221
1221
  - Lu
1222
- - "0"
1222
+ - '0'
1223
1223
  - L
1224
1224
  - 004F 0304
1225
- - ""
1226
- - ""
1227
- - ""
1225
+ - ''
1226
+ - ''
1227
+ - ''
1228
1228
  - N
1229
1229
  - LATIN CAPITAL LETTER O MACRON
1230
- - ""
1231
- - ""
1232
- - 014D
1233
- - ""
1234
- 014D:
1230
+ - ''
1231
+ - ''
1235
1232
  - 014D
1233
+ - ''
1234
+ 333:
1235
+ - 333
1236
1236
  - LATIN SMALL LETTER O WITH MACRON
1237
1237
  - Ll
1238
- - "0"
1238
+ - '0'
1239
1239
  - L
1240
1240
  - 006F 0304
1241
- - ""
1242
- - ""
1243
- - ""
1241
+ - ''
1242
+ - ''
1243
+ - ''
1244
1244
  - N
1245
1245
  - LATIN SMALL LETTER O MACRON
1246
- - ""
1246
+ - ''
1247
1247
  - 014C
1248
- - ""
1248
+ - ''
1249
1249
  - 014C
1250
- 014E:
1251
- - 014E
1250
+ 334:
1251
+ - 334
1252
1252
  - LATIN CAPITAL LETTER O WITH BREVE
1253
1253
  - Lu
1254
- - "0"
1254
+ - '0'
1255
1255
  - L
1256
1256
  - 004F 0306
1257
- - ""
1258
- - ""
1259
- - ""
1257
+ - ''
1258
+ - ''
1259
+ - ''
1260
1260
  - N
1261
1261
  - LATIN CAPITAL LETTER O BREVE
1262
- - ""
1263
- - ""
1264
- - 014F
1265
- - ""
1266
- 014F:
1262
+ - ''
1263
+ - ''
1267
1264
  - 014F
1265
+ - ''
1266
+ 335:
1267
+ - 335
1268
1268
  - LATIN SMALL LETTER O WITH BREVE
1269
1269
  - Ll
1270
- - "0"
1270
+ - '0'
1271
1271
  - L
1272
1272
  - 006F 0306
1273
- - ""
1274
- - ""
1275
- - ""
1273
+ - ''
1274
+ - ''
1275
+ - ''
1276
1276
  - N
1277
1277
  - LATIN SMALL LETTER O BREVE
1278
- - ""
1278
+ - ''
1279
1279
  - 014E
1280
- - ""
1280
+ - ''
1281
1281
  - 014E
1282
- "0150":
1283
- - "0150"
1282
+ 336:
1283
+ - 336
1284
1284
  - LATIN CAPITAL LETTER O WITH DOUBLE ACUTE
1285
1285
  - Lu
1286
- - "0"
1286
+ - '0'
1287
1287
  - L
1288
1288
  - 004F 030B
1289
- - ""
1290
- - ""
1291
- - ""
1289
+ - ''
1290
+ - ''
1291
+ - ''
1292
1292
  - N
1293
1293
  - LATIN CAPITAL LETTER O DOUBLE ACUTE
1294
- - ""
1295
- - ""
1296
- - "0151"
1297
- - ""
1298
- "0151":
1299
- - "0151"
1294
+ - ''
1295
+ - ''
1296
+ - '0151'
1297
+ - ''
1298
+ 337:
1299
+ - 337
1300
1300
  - LATIN SMALL LETTER O WITH DOUBLE ACUTE
1301
1301
  - Ll
1302
- - "0"
1302
+ - '0'
1303
1303
  - L
1304
1304
  - 006F 030B
1305
- - ""
1306
- - ""
1307
- - ""
1305
+ - ''
1306
+ - ''
1307
+ - ''
1308
1308
  - N
1309
1309
  - LATIN SMALL LETTER O DOUBLE ACUTE
1310
- - ""
1311
- - "0150"
1312
- - ""
1313
- - "0150"
1314
- "0152":
1315
- - "0152"
1310
+ - ''
1311
+ - '0150'
1312
+ - ''
1313
+ - '0150'
1314
+ 338:
1315
+ - 338
1316
1316
  - LATIN CAPITAL LIGATURE OE
1317
1317
  - Lu
1318
- - "0"
1318
+ - '0'
1319
1319
  - L
1320
- - ""
1321
- - ""
1322
- - ""
1323
- - ""
1320
+ - ''
1321
+ - ''
1322
+ - ''
1323
+ - ''
1324
1324
  - N
1325
1325
  - LATIN CAPITAL LETTER O E
1326
- - ""
1327
- - ""
1328
- - "0153"
1329
- - ""
1330
- "0153":
1331
- - "0153"
1326
+ - ''
1327
+ - ''
1328
+ - '0153'
1329
+ - ''
1330
+ 339:
1331
+ - 339
1332
1332
  - LATIN SMALL LIGATURE OE
1333
1333
  - Ll
1334
- - "0"
1334
+ - '0'
1335
1335
  - L
1336
- - ""
1337
- - ""
1338
- - ""
1339
- - ""
1336
+ - ''
1337
+ - ''
1338
+ - ''
1339
+ - ''
1340
1340
  - N
1341
1341
  - LATIN SMALL LETTER O E
1342
- - ""
1343
- - "0152"
1344
- - ""
1345
- - "0152"
1346
- "0154":
1347
- - "0154"
1342
+ - ''
1343
+ - '0152'
1344
+ - ''
1345
+ - '0152'
1346
+ 340:
1347
+ - 340
1348
1348
  - LATIN CAPITAL LETTER R WITH ACUTE
1349
1349
  - Lu
1350
- - "0"
1350
+ - '0'
1351
1351
  - L
1352
1352
  - 0052 0301
1353
- - ""
1354
- - ""
1355
- - ""
1353
+ - ''
1354
+ - ''
1355
+ - ''
1356
1356
  - N
1357
1357
  - LATIN CAPITAL LETTER R ACUTE
1358
- - ""
1359
- - ""
1360
- - "0155"
1361
- - ""
1362
- "0155":
1363
- - "0155"
1358
+ - ''
1359
+ - ''
1360
+ - '0155'
1361
+ - ''
1362
+ 341:
1363
+ - 341
1364
1364
  - LATIN SMALL LETTER R WITH ACUTE
1365
1365
  - Ll
1366
- - "0"
1366
+ - '0'
1367
1367
  - L
1368
1368
  - 0072 0301
1369
- - ""
1370
- - ""
1371
- - ""
1369
+ - ''
1370
+ - ''
1371
+ - ''
1372
1372
  - N
1373
1373
  - LATIN SMALL LETTER R ACUTE
1374
- - ""
1375
- - "0154"
1376
- - ""
1377
- - "0154"
1378
- "0156":
1379
- - "0156"
1374
+ - ''
1375
+ - '0154'
1376
+ - ''
1377
+ - '0154'
1378
+ 342:
1379
+ - 342
1380
1380
  - LATIN CAPITAL LETTER R WITH CEDILLA
1381
1381
  - Lu
1382
- - "0"
1382
+ - '0'
1383
1383
  - L
1384
1384
  - 0052 0327
1385
- - ""
1386
- - ""
1387
- - ""
1385
+ - ''
1386
+ - ''
1387
+ - ''
1388
1388
  - N
1389
1389
  - LATIN CAPITAL LETTER R CEDILLA
1390
- - ""
1391
- - ""
1392
- - "0157"
1393
- - ""
1394
- "0157":
1395
- - "0157"
1390
+ - ''
1391
+ - ''
1392
+ - '0157'
1393
+ - ''
1394
+ 343:
1395
+ - 343
1396
1396
  - LATIN SMALL LETTER R WITH CEDILLA
1397
1397
  - Ll
1398
- - "0"
1398
+ - '0'
1399
1399
  - L
1400
1400
  - 0072 0327
1401
- - ""
1402
- - ""
1403
- - ""
1401
+ - ''
1402
+ - ''
1403
+ - ''
1404
1404
  - N
1405
1405
  - LATIN SMALL LETTER R CEDILLA
1406
- - ""
1407
- - "0156"
1408
- - ""
1409
- - "0156"
1410
- 0158:
1411
- - 0158
1406
+ - ''
1407
+ - '0156'
1408
+ - ''
1409
+ - '0156'
1410
+ 344:
1411
+ - 344
1412
1412
  - LATIN CAPITAL LETTER R WITH CARON
1413
1413
  - Lu
1414
- - "0"
1414
+ - '0'
1415
1415
  - L
1416
1416
  - 0052 030C
1417
- - ""
1418
- - ""
1419
- - ""
1417
+ - ''
1418
+ - ''
1419
+ - ''
1420
1420
  - N
1421
1421
  - LATIN CAPITAL LETTER R HACEK
1422
- - ""
1423
- - ""
1424
- - 0159
1425
- - ""
1426
- 0159:
1422
+ - ''
1423
+ - ''
1427
1424
  - 0159
1425
+ - ''
1426
+ 345:
1427
+ - 345
1428
1428
  - LATIN SMALL LETTER R WITH CARON
1429
1429
  - Ll
1430
- - "0"
1430
+ - '0'
1431
1431
  - L
1432
1432
  - 0072 030C
1433
- - ""
1434
- - ""
1435
- - ""
1433
+ - ''
1434
+ - ''
1435
+ - ''
1436
1436
  - N
1437
1437
  - LATIN SMALL LETTER R HACEK
1438
- - ""
1438
+ - ''
1439
1439
  - 0158
1440
- - ""
1440
+ - ''
1441
1441
  - 0158
1442
- 015A:
1443
- - 015A
1442
+ 346:
1443
+ - 346
1444
1444
  - LATIN CAPITAL LETTER S WITH ACUTE
1445
1445
  - Lu
1446
- - "0"
1446
+ - '0'
1447
1447
  - L
1448
1448
  - 0053 0301
1449
- - ""
1450
- - ""
1451
- - ""
1449
+ - ''
1450
+ - ''
1451
+ - ''
1452
1452
  - N
1453
1453
  - LATIN CAPITAL LETTER S ACUTE
1454
- - ""
1455
- - ""
1456
- - 015B
1457
- - ""
1458
- 015B:
1454
+ - ''
1455
+ - ''
1459
1456
  - 015B
1457
+ - ''
1458
+ 347:
1459
+ - 347
1460
1460
  - LATIN SMALL LETTER S WITH ACUTE
1461
1461
  - Ll
1462
- - "0"
1462
+ - '0'
1463
1463
  - L
1464
1464
  - 0073 0301
1465
- - ""
1466
- - ""
1467
- - ""
1465
+ - ''
1466
+ - ''
1467
+ - ''
1468
1468
  - N
1469
1469
  - LATIN SMALL LETTER S ACUTE
1470
- - ""
1470
+ - ''
1471
1471
  - 015A
1472
- - ""
1472
+ - ''
1473
1473
  - 015A
1474
- 015C:
1475
- - 015C
1474
+ 348:
1475
+ - 348
1476
1476
  - LATIN CAPITAL LETTER S WITH CIRCUMFLEX
1477
1477
  - Lu
1478
- - "0"
1478
+ - '0'
1479
1479
  - L
1480
1480
  - 0053 0302
1481
- - ""
1482
- - ""
1483
- - ""
1481
+ - ''
1482
+ - ''
1483
+ - ''
1484
1484
  - N
1485
1485
  - LATIN CAPITAL LETTER S CIRCUMFLEX
1486
- - ""
1487
- - ""
1488
- - 015D
1489
- - ""
1490
- 015D:
1486
+ - ''
1487
+ - ''
1491
1488
  - 015D
1489
+ - ''
1490
+ 349:
1491
+ - 349
1492
1492
  - LATIN SMALL LETTER S WITH CIRCUMFLEX
1493
1493
  - Ll
1494
- - "0"
1494
+ - '0'
1495
1495
  - L
1496
1496
  - 0073 0302
1497
- - ""
1498
- - ""
1499
- - ""
1497
+ - ''
1498
+ - ''
1499
+ - ''
1500
1500
  - N
1501
1501
  - LATIN SMALL LETTER S CIRCUMFLEX
1502
- - ""
1502
+ - ''
1503
1503
  - 015C
1504
- - ""
1504
+ - ''
1505
1505
  - 015C
1506
- 015E:
1507
- - 015E
1506
+ 350:
1507
+ - 350
1508
1508
  - LATIN CAPITAL LETTER S WITH CEDILLA
1509
1509
  - Lu
1510
- - "0"
1510
+ - '0'
1511
1511
  - L
1512
1512
  - 0053 0327
1513
- - ""
1514
- - ""
1515
- - ""
1513
+ - ''
1514
+ - ''
1515
+ - ''
1516
1516
  - N
1517
1517
  - LATIN CAPITAL LETTER S CEDILLA
1518
- - ""
1519
- - ""
1520
- - 015F
1521
- - ""
1522
- 015F:
1518
+ - ''
1519
+ - ''
1523
1520
  - 015F
1521
+ - ''
1522
+ 351:
1523
+ - 351
1524
1524
  - LATIN SMALL LETTER S WITH CEDILLA
1525
1525
  - Ll
1526
- - "0"
1526
+ - '0'
1527
1527
  - L
1528
1528
  - 0073 0327
1529
- - ""
1530
- - ""
1531
- - ""
1529
+ - ''
1530
+ - ''
1531
+ - ''
1532
1532
  - N
1533
1533
  - LATIN SMALL LETTER S CEDILLA
1534
- - ""
1534
+ - ''
1535
1535
  - 015E
1536
- - ""
1536
+ - ''
1537
1537
  - 015E
1538
- "0160":
1539
- - "0160"
1538
+ 352:
1539
+ - 352
1540
1540
  - LATIN CAPITAL LETTER S WITH CARON
1541
1541
  - Lu
1542
- - "0"
1542
+ - '0'
1543
1543
  - L
1544
1544
  - 0053 030C
1545
- - ""
1546
- - ""
1547
- - ""
1545
+ - ''
1546
+ - ''
1547
+ - ''
1548
1548
  - N
1549
1549
  - LATIN CAPITAL LETTER S HACEK
1550
- - ""
1551
- - ""
1552
- - "0161"
1553
- - ""
1554
- "0161":
1555
- - "0161"
1550
+ - ''
1551
+ - ''
1552
+ - '0161'
1553
+ - ''
1554
+ 353:
1555
+ - 353
1556
1556
  - LATIN SMALL LETTER S WITH CARON
1557
1557
  - Ll
1558
- - "0"
1558
+ - '0'
1559
1559
  - L
1560
1560
  - 0073 030C
1561
- - ""
1562
- - ""
1563
- - ""
1561
+ - ''
1562
+ - ''
1563
+ - ''
1564
1564
  - N
1565
1565
  - LATIN SMALL LETTER S HACEK
1566
- - ""
1567
- - "0160"
1568
- - ""
1569
- - "0160"
1570
- "0162":
1571
- - "0162"
1566
+ - ''
1567
+ - '0160'
1568
+ - ''
1569
+ - '0160'
1570
+ 354:
1571
+ - 354
1572
1572
  - LATIN CAPITAL LETTER T WITH CEDILLA
1573
1573
  - Lu
1574
- - "0"
1574
+ - '0'
1575
1575
  - L
1576
1576
  - 0054 0327
1577
- - ""
1578
- - ""
1579
- - ""
1577
+ - ''
1578
+ - ''
1579
+ - ''
1580
1580
  - N
1581
1581
  - LATIN CAPITAL LETTER T CEDILLA
1582
- - ""
1583
- - ""
1584
- - "0163"
1585
- - ""
1586
- "0163":
1587
- - "0163"
1582
+ - ''
1583
+ - ''
1584
+ - '0163'
1585
+ - ''
1586
+ 355:
1587
+ - 355
1588
1588
  - LATIN SMALL LETTER T WITH CEDILLA
1589
1589
  - Ll
1590
- - "0"
1590
+ - '0'
1591
1591
  - L
1592
1592
  - 0074 0327
1593
- - ""
1594
- - ""
1595
- - ""
1593
+ - ''
1594
+ - ''
1595
+ - ''
1596
1596
  - N
1597
1597
  - LATIN SMALL LETTER T CEDILLA
1598
- - ""
1599
- - "0162"
1600
- - ""
1601
- - "0162"
1602
- "0164":
1603
- - "0164"
1598
+ - ''
1599
+ - '0162'
1600
+ - ''
1601
+ - '0162'
1602
+ 356:
1603
+ - 356
1604
1604
  - LATIN CAPITAL LETTER T WITH CARON
1605
1605
  - Lu
1606
- - "0"
1606
+ - '0'
1607
1607
  - L
1608
1608
  - 0054 030C
1609
- - ""
1610
- - ""
1611
- - ""
1609
+ - ''
1610
+ - ''
1611
+ - ''
1612
1612
  - N
1613
1613
  - LATIN CAPITAL LETTER T HACEK
1614
- - ""
1615
- - ""
1616
- - "0165"
1617
- - ""
1618
- "0165":
1619
- - "0165"
1614
+ - ''
1615
+ - ''
1616
+ - '0165'
1617
+ - ''
1618
+ 357:
1619
+ - 357
1620
1620
  - LATIN SMALL LETTER T WITH CARON
1621
1621
  - Ll
1622
- - "0"
1622
+ - '0'
1623
1623
  - L
1624
1624
  - 0074 030C
1625
- - ""
1626
- - ""
1627
- - ""
1625
+ - ''
1626
+ - ''
1627
+ - ''
1628
1628
  - N
1629
1629
  - LATIN SMALL LETTER T HACEK
1630
- - ""
1631
- - "0164"
1632
- - ""
1633
- - "0164"
1634
- "0166":
1635
- - "0166"
1630
+ - ''
1631
+ - '0164'
1632
+ - ''
1633
+ - '0164'
1634
+ 358:
1635
+ - 358
1636
1636
  - LATIN CAPITAL LETTER T WITH STROKE
1637
1637
  - Lu
1638
- - "0"
1638
+ - '0'
1639
1639
  - L
1640
- - ""
1641
- - ""
1642
- - ""
1643
- - ""
1640
+ - ''
1641
+ - ''
1642
+ - ''
1643
+ - ''
1644
1644
  - N
1645
1645
  - LATIN CAPITAL LETTER T BAR
1646
- - ""
1647
- - ""
1648
- - "0167"
1649
- - ""
1650
- "0167":
1651
- - "0167"
1646
+ - ''
1647
+ - ''
1648
+ - '0167'
1649
+ - ''
1650
+ 359:
1651
+ - 359
1652
1652
  - LATIN SMALL LETTER T WITH STROKE
1653
1653
  - Ll
1654
- - "0"
1654
+ - '0'
1655
1655
  - L
1656
- - ""
1657
- - ""
1658
- - ""
1659
- - ""
1656
+ - ''
1657
+ - ''
1658
+ - ''
1659
+ - ''
1660
1660
  - N
1661
1661
  - LATIN SMALL LETTER T BAR
1662
- - ""
1663
- - "0166"
1664
- - ""
1665
- - "0166"
1666
- 0168:
1667
- - 0168
1662
+ - ''
1663
+ - '0166'
1664
+ - ''
1665
+ - '0166'
1666
+ 360:
1667
+ - 360
1668
1668
  - LATIN CAPITAL LETTER U WITH TILDE
1669
1669
  - Lu
1670
- - "0"
1670
+ - '0'
1671
1671
  - L
1672
1672
  - 0055 0303
1673
- - ""
1674
- - ""
1675
- - ""
1673
+ - ''
1674
+ - ''
1675
+ - ''
1676
1676
  - N
1677
1677
  - LATIN CAPITAL LETTER U TILDE
1678
- - ""
1679
- - ""
1680
- - 0169
1681
- - ""
1682
- 0169:
1678
+ - ''
1679
+ - ''
1683
1680
  - 0169
1681
+ - ''
1682
+ 361:
1683
+ - 361
1684
1684
  - LATIN SMALL LETTER U WITH TILDE
1685
1685
  - Ll
1686
- - "0"
1686
+ - '0'
1687
1687
  - L
1688
1688
  - 0075 0303
1689
- - ""
1690
- - ""
1691
- - ""
1689
+ - ''
1690
+ - ''
1691
+ - ''
1692
1692
  - N
1693
1693
  - LATIN SMALL LETTER U TILDE
1694
- - ""
1694
+ - ''
1695
1695
  - 0168
1696
- - ""
1696
+ - ''
1697
1697
  - 0168
1698
- 016A:
1699
- - 016A
1698
+ 362:
1699
+ - 362
1700
1700
  - LATIN CAPITAL LETTER U WITH MACRON
1701
1701
  - Lu
1702
- - "0"
1702
+ - '0'
1703
1703
  - L
1704
1704
  - 0055 0304
1705
- - ""
1706
- - ""
1707
- - ""
1705
+ - ''
1706
+ - ''
1707
+ - ''
1708
1708
  - N
1709
1709
  - LATIN CAPITAL LETTER U MACRON
1710
- - ""
1711
- - ""
1712
- - 016B
1713
- - ""
1714
- 016B:
1710
+ - ''
1711
+ - ''
1715
1712
  - 016B
1713
+ - ''
1714
+ 363:
1715
+ - 363
1716
1716
  - LATIN SMALL LETTER U WITH MACRON
1717
1717
  - Ll
1718
- - "0"
1718
+ - '0'
1719
1719
  - L
1720
1720
  - 0075 0304
1721
- - ""
1722
- - ""
1723
- - ""
1721
+ - ''
1722
+ - ''
1723
+ - ''
1724
1724
  - N
1725
1725
  - LATIN SMALL LETTER U MACRON
1726
- - ""
1726
+ - ''
1727
1727
  - 016A
1728
- - ""
1728
+ - ''
1729
1729
  - 016A
1730
- 016C:
1731
- - 016C
1730
+ 364:
1731
+ - 364
1732
1732
  - LATIN CAPITAL LETTER U WITH BREVE
1733
1733
  - Lu
1734
- - "0"
1734
+ - '0'
1735
1735
  - L
1736
1736
  - 0055 0306
1737
- - ""
1738
- - ""
1739
- - ""
1737
+ - ''
1738
+ - ''
1739
+ - ''
1740
1740
  - N
1741
1741
  - LATIN CAPITAL LETTER U BREVE
1742
- - ""
1743
- - ""
1744
- - 016D
1745
- - ""
1746
- 016D:
1742
+ - ''
1743
+ - ''
1747
1744
  - 016D
1745
+ - ''
1746
+ 365:
1747
+ - 365
1748
1748
  - LATIN SMALL LETTER U WITH BREVE
1749
1749
  - Ll
1750
- - "0"
1750
+ - '0'
1751
1751
  - L
1752
1752
  - 0075 0306
1753
- - ""
1754
- - ""
1755
- - ""
1753
+ - ''
1754
+ - ''
1755
+ - ''
1756
1756
  - N
1757
1757
  - LATIN SMALL LETTER U BREVE
1758
- - ""
1758
+ - ''
1759
1759
  - 016C
1760
- - ""
1760
+ - ''
1761
1761
  - 016C
1762
- 016E:
1763
- - 016E
1762
+ 366:
1763
+ - 366
1764
1764
  - LATIN CAPITAL LETTER U WITH RING ABOVE
1765
1765
  - Lu
1766
- - "0"
1766
+ - '0'
1767
1767
  - L
1768
1768
  - 0055 030A
1769
- - ""
1770
- - ""
1771
- - ""
1769
+ - ''
1770
+ - ''
1771
+ - ''
1772
1772
  - N
1773
1773
  - LATIN CAPITAL LETTER U RING
1774
- - ""
1775
- - ""
1776
- - 016F
1777
- - ""
1778
- 016F:
1774
+ - ''
1775
+ - ''
1779
1776
  - 016F
1777
+ - ''
1778
+ 367:
1779
+ - 367
1780
1780
  - LATIN SMALL LETTER U WITH RING ABOVE
1781
1781
  - Ll
1782
- - "0"
1782
+ - '0'
1783
1783
  - L
1784
1784
  - 0075 030A
1785
- - ""
1786
- - ""
1787
- - ""
1785
+ - ''
1786
+ - ''
1787
+ - ''
1788
1788
  - N
1789
1789
  - LATIN SMALL LETTER U RING
1790
- - ""
1790
+ - ''
1791
1791
  - 016E
1792
- - ""
1792
+ - ''
1793
1793
  - 016E
1794
- "0170":
1795
- - "0170"
1794
+ 368:
1795
+ - 368
1796
1796
  - LATIN CAPITAL LETTER U WITH DOUBLE ACUTE
1797
1797
  - Lu
1798
- - "0"
1798
+ - '0'
1799
1799
  - L
1800
1800
  - 0055 030B
1801
- - ""
1802
- - ""
1803
- - ""
1801
+ - ''
1802
+ - ''
1803
+ - ''
1804
1804
  - N
1805
1805
  - LATIN CAPITAL LETTER U DOUBLE ACUTE
1806
- - ""
1807
- - ""
1808
- - "0171"
1809
- - ""
1810
- "0171":
1811
- - "0171"
1806
+ - ''
1807
+ - ''
1808
+ - '0171'
1809
+ - ''
1810
+ 369:
1811
+ - 369
1812
1812
  - LATIN SMALL LETTER U WITH DOUBLE ACUTE
1813
1813
  - Ll
1814
- - "0"
1814
+ - '0'
1815
1815
  - L
1816
1816
  - 0075 030B
1817
- - ""
1818
- - ""
1819
- - ""
1817
+ - ''
1818
+ - ''
1819
+ - ''
1820
1820
  - N
1821
1821
  - LATIN SMALL LETTER U DOUBLE ACUTE
1822
- - ""
1823
- - "0170"
1824
- - ""
1825
- - "0170"
1826
- "0172":
1827
- - "0172"
1822
+ - ''
1823
+ - '0170'
1824
+ - ''
1825
+ - '0170'
1826
+ 370:
1827
+ - 370
1828
1828
  - LATIN CAPITAL LETTER U WITH OGONEK
1829
1829
  - Lu
1830
- - "0"
1830
+ - '0'
1831
1831
  - L
1832
1832
  - 0055 0328
1833
- - ""
1834
- - ""
1835
- - ""
1833
+ - ''
1834
+ - ''
1835
+ - ''
1836
1836
  - N
1837
1837
  - LATIN CAPITAL LETTER U OGONEK
1838
- - ""
1839
- - ""
1840
- - "0173"
1841
- - ""
1842
- "0173":
1843
- - "0173"
1838
+ - ''
1839
+ - ''
1840
+ - '0173'
1841
+ - ''
1842
+ 371:
1843
+ - 371
1844
1844
  - LATIN SMALL LETTER U WITH OGONEK
1845
1845
  - Ll
1846
- - "0"
1846
+ - '0'
1847
1847
  - L
1848
1848
  - 0075 0328
1849
- - ""
1850
- - ""
1851
- - ""
1849
+ - ''
1850
+ - ''
1851
+ - ''
1852
1852
  - N
1853
1853
  - LATIN SMALL LETTER U OGONEK
1854
- - ""
1855
- - "0172"
1856
- - ""
1857
- - "0172"
1858
- "0174":
1859
- - "0174"
1854
+ - ''
1855
+ - '0172'
1856
+ - ''
1857
+ - '0172'
1858
+ 372:
1859
+ - 372
1860
1860
  - LATIN CAPITAL LETTER W WITH CIRCUMFLEX
1861
1861
  - Lu
1862
- - "0"
1862
+ - '0'
1863
1863
  - L
1864
1864
  - 0057 0302
1865
- - ""
1866
- - ""
1867
- - ""
1865
+ - ''
1866
+ - ''
1867
+ - ''
1868
1868
  - N
1869
1869
  - LATIN CAPITAL LETTER W CIRCUMFLEX
1870
- - ""
1871
- - ""
1872
- - "0175"
1873
- - ""
1874
- "0175":
1875
- - "0175"
1870
+ - ''
1871
+ - ''
1872
+ - '0175'
1873
+ - ''
1874
+ 373:
1875
+ - 373
1876
1876
  - LATIN SMALL LETTER W WITH CIRCUMFLEX
1877
1877
  - Ll
1878
- - "0"
1878
+ - '0'
1879
1879
  - L
1880
1880
  - 0077 0302
1881
- - ""
1882
- - ""
1883
- - ""
1881
+ - ''
1882
+ - ''
1883
+ - ''
1884
1884
  - N
1885
1885
  - LATIN SMALL LETTER W CIRCUMFLEX
1886
- - ""
1887
- - "0174"
1888
- - ""
1889
- - "0174"
1890
- "0176":
1891
- - "0176"
1886
+ - ''
1887
+ - '0174'
1888
+ - ''
1889
+ - '0174'
1890
+ 374:
1891
+ - 374
1892
1892
  - LATIN CAPITAL LETTER Y WITH CIRCUMFLEX
1893
1893
  - Lu
1894
- - "0"
1894
+ - '0'
1895
1895
  - L
1896
1896
  - 0059 0302
1897
- - ""
1898
- - ""
1899
- - ""
1897
+ - ''
1898
+ - ''
1899
+ - ''
1900
1900
  - N
1901
1901
  - LATIN CAPITAL LETTER Y CIRCUMFLEX
1902
- - ""
1903
- - ""
1904
- - "0177"
1905
- - ""
1906
- "0177":
1907
- - "0177"
1902
+ - ''
1903
+ - ''
1904
+ - '0177'
1905
+ - ''
1906
+ 375:
1907
+ - 375
1908
1908
  - LATIN SMALL LETTER Y WITH CIRCUMFLEX
1909
1909
  - Ll
1910
- - "0"
1910
+ - '0'
1911
1911
  - L
1912
1912
  - 0079 0302
1913
- - ""
1914
- - ""
1915
- - ""
1913
+ - ''
1914
+ - ''
1915
+ - ''
1916
1916
  - N
1917
1917
  - LATIN SMALL LETTER Y CIRCUMFLEX
1918
- - ""
1919
- - "0176"
1920
- - ""
1921
- - "0176"
1922
- 0178:
1923
- - 0178
1918
+ - ''
1919
+ - '0176'
1920
+ - ''
1921
+ - '0176'
1922
+ 376:
1923
+ - 376
1924
1924
  - LATIN CAPITAL LETTER Y WITH DIAERESIS
1925
1925
  - Lu
1926
- - "0"
1926
+ - '0'
1927
1927
  - L
1928
1928
  - 0059 0308
1929
- - ""
1930
- - ""
1931
- - ""
1929
+ - ''
1930
+ - ''
1931
+ - ''
1932
1932
  - N
1933
1933
  - LATIN CAPITAL LETTER Y DIAERESIS
1934
- - ""
1935
- - ""
1934
+ - ''
1935
+ - ''
1936
1936
  - 00FF
1937
- - ""
1938
- 0179:
1939
- - 0179
1937
+ - ''
1938
+ 377:
1939
+ - 377
1940
1940
  - LATIN CAPITAL LETTER Z WITH ACUTE
1941
1941
  - Lu
1942
- - "0"
1942
+ - '0'
1943
1943
  - L
1944
1944
  - 005A 0301
1945
- - ""
1946
- - ""
1947
- - ""
1945
+ - ''
1946
+ - ''
1947
+ - ''
1948
1948
  - N
1949
1949
  - LATIN CAPITAL LETTER Z ACUTE
1950
- - ""
1951
- - ""
1952
- - 017A
1953
- - ""
1954
- 017A:
1950
+ - ''
1951
+ - ''
1955
1952
  - 017A
1953
+ - ''
1954
+ 378:
1955
+ - 378
1956
1956
  - LATIN SMALL LETTER Z WITH ACUTE
1957
1957
  - Ll
1958
- - "0"
1958
+ - '0'
1959
1959
  - L
1960
1960
  - 007A 0301
1961
- - ""
1962
- - ""
1963
- - ""
1961
+ - ''
1962
+ - ''
1963
+ - ''
1964
1964
  - N
1965
1965
  - LATIN SMALL LETTER Z ACUTE
1966
- - ""
1966
+ - ''
1967
1967
  - 0179
1968
- - ""
1968
+ - ''
1969
1969
  - 0179
1970
- 017B:
1971
- - 017B
1970
+ 379:
1971
+ - 379
1972
1972
  - LATIN CAPITAL LETTER Z WITH DOT ABOVE
1973
1973
  - Lu
1974
- - "0"
1974
+ - '0'
1975
1975
  - L
1976
1976
  - 005A 0307
1977
- - ""
1978
- - ""
1979
- - ""
1977
+ - ''
1978
+ - ''
1979
+ - ''
1980
1980
  - N
1981
1981
  - LATIN CAPITAL LETTER Z DOT
1982
- - ""
1983
- - ""
1984
- - 017C
1985
- - ""
1986
- 017C:
1982
+ - ''
1983
+ - ''
1987
1984
  - 017C
1985
+ - ''
1986
+ 380:
1987
+ - 380
1988
1988
  - LATIN SMALL LETTER Z WITH DOT ABOVE
1989
1989
  - Ll
1990
- - "0"
1990
+ - '0'
1991
1991
  - L
1992
1992
  - 007A 0307
1993
- - ""
1994
- - ""
1995
- - ""
1993
+ - ''
1994
+ - ''
1995
+ - ''
1996
1996
  - N
1997
1997
  - LATIN SMALL LETTER Z DOT
1998
- - ""
1998
+ - ''
1999
1999
  - 017B
2000
- - ""
2000
+ - ''
2001
2001
  - 017B
2002
- 017D:
2003
- - 017D
2002
+ 381:
2003
+ - 381
2004
2004
  - LATIN CAPITAL LETTER Z WITH CARON
2005
2005
  - Lu
2006
- - "0"
2006
+ - '0'
2007
2007
  - L
2008
2008
  - 005A 030C
2009
- - ""
2010
- - ""
2011
- - ""
2009
+ - ''
2010
+ - ''
2011
+ - ''
2012
2012
  - N
2013
2013
  - LATIN CAPITAL LETTER Z HACEK
2014
- - ""
2015
- - ""
2016
- - 017E
2017
- - ""
2018
- 017E:
2014
+ - ''
2015
+ - ''
2019
2016
  - 017E
2017
+ - ''
2018
+ 382:
2019
+ - 382
2020
2020
  - LATIN SMALL LETTER Z WITH CARON
2021
2021
  - Ll
2022
- - "0"
2022
+ - '0'
2023
2023
  - L
2024
2024
  - 007A 030C
2025
- - ""
2026
- - ""
2027
- - ""
2025
+ - ''
2026
+ - ''
2027
+ - ''
2028
2028
  - N
2029
2029
  - LATIN SMALL LETTER Z HACEK
2030
- - ""
2030
+ - ''
2031
2031
  - 017D
2032
- - ""
2032
+ - ''
2033
2033
  - 017D
2034
- 017F:
2035
- - 017F
2034
+ 383:
2035
+ - 383
2036
2036
  - LATIN SMALL LETTER LONG S
2037
2037
  - Ll
2038
- - "0"
2038
+ - '0'
2039
2039
  - L
2040
2040
  - <compat> 0073
2041
- - ""
2042
- - ""
2043
- - ""
2044
- - N
2045
- - ""
2046
- - ""
2047
- - "0053"
2048
- - ""
2049
- - "0053"
2041
+ - ''
2042
+ - ''
2043
+ - ''
2044
+ - N
2045
+ - ''
2046
+ - ''
2047
+ - '0053'
2048
+ - ''
2049
+ - '0053'