liblouis-rb 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (517) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +520 -0
  3. data/README.md +100 -0
  4. data/Rakefile +80 -0
  5. data/ext/liblouis/braille_character.c +200 -0
  6. data/ext/liblouis/braille_table.c +198 -0
  7. data/ext/liblouis/braille_text.c +223 -0
  8. data/ext/liblouis/extconf.rb +73 -0
  9. data/ext/liblouis/liblouis.c +168 -0
  10. data/ext/liblouis/liblouis_ext.h +49 -0
  11. data/ext/liblouis/table_source.c +161 -0
  12. data/ext/liblouis/translation.c +443 -0
  13. data/liblouis-rb.gemspec +49 -0
  14. data/spec/liblouis_spec.rb +62 -0
  15. data/test/integration/packaging_test.rb +82 -0
  16. data/test/table_source_cases.rb +9 -0
  17. data/test/test_braille_character.rb +62 -0
  18. data/test/test_braille_table.rb +379 -0
  19. data/test/test_braille_text.rb +30 -0
  20. data/test/test_helper.rb +7 -0
  21. data/test/translation_cases.rb +33 -0
  22. data/vendor/liblouis/COPYING +674 -0
  23. data/vendor/liblouis/COPYING.LESSER +502 -0
  24. data/vendor/liblouis/configure.ac +290 -0
  25. data/vendor/liblouis/liblouis/commonTranslationFunctions.c +95 -0
  26. data/vendor/liblouis/liblouis/compileTranslationTable.c +5515 -0
  27. data/vendor/liblouis/liblouis/internal.h +781 -0
  28. data/vendor/liblouis/liblouis/liblouis.h.in +514 -0
  29. data/vendor/liblouis/liblouis/logging.c +233 -0
  30. data/vendor/liblouis/liblouis/lou_backTranslateString.c +1855 -0
  31. data/vendor/liblouis/liblouis/lou_translateString.c +4177 -0
  32. data/vendor/liblouis/liblouis/maketable.c +463 -0
  33. data/vendor/liblouis/liblouis/metadata.c +1258 -0
  34. data/vendor/liblouis/liblouis/pattern.c +1632 -0
  35. data/vendor/liblouis/liblouis/utils.c +448 -0
  36. data/vendor/liblouis/tables/Es-Es-G0.utb +248 -0
  37. data/vendor/liblouis/tables/IPA-unicode-range.uti +200 -0
  38. data/vendor/liblouis/tables/IPA.utb +164 -0
  39. data/vendor/liblouis/tables/Lv-Lv-g1.utb +509 -0
  40. data/vendor/liblouis/tables/Makefile.am +503 -0
  41. data/vendor/liblouis/tables/Pl-Pl-g1.utb +312 -0
  42. data/vendor/liblouis/tables/README +6 -0
  43. data/vendor/liblouis/tables/afr-za-g1.ctb +63 -0
  44. data/vendor/liblouis/tables/afr-za-g2.ctb +1050 -0
  45. data/vendor/liblouis/tables/akk-borger.utb +997 -0
  46. data/vendor/liblouis/tables/akk.utb +1002 -0
  47. data/vendor/liblouis/tables/ancient-languages-borger.utb +114 -0
  48. data/vendor/liblouis/tables/ancient-languages-us.utb +114 -0
  49. data/vendor/liblouis/tables/ar-ar-comp8.utb +293 -0
  50. data/vendor/liblouis/tables/ar-ar-g1-core.uti +291 -0
  51. data/vendor/liblouis/tables/ar-ar-g1.utb +26 -0
  52. data/vendor/liblouis/tables/ar-ar-g2.ctb +447 -0
  53. data/vendor/liblouis/tables/ar-ar-math.uti +501 -0
  54. data/vendor/liblouis/tables/ar.tbl +17 -0
  55. data/vendor/liblouis/tables/as-in-g1.utb +27 -0
  56. data/vendor/liblouis/tables/as.tbl +18 -0
  57. data/vendor/liblouis/tables/aw-in-g1.utb +27 -0
  58. data/vendor/liblouis/tables/awa.tbl +18 -0
  59. data/vendor/liblouis/tables/ba.utb +64 -0
  60. data/vendor/liblouis/tables/be-in-g1.utb +27 -0
  61. data/vendor/liblouis/tables/bel-comp.utb +42 -0
  62. data/vendor/liblouis/tables/bel-detailed.utb +32 -0
  63. data/vendor/liblouis/tables/bel.utb +61 -0
  64. data/vendor/liblouis/tables/bengali.cti +238 -0
  65. data/vendor/liblouis/tables/bg.ctb +215 -0
  66. data/vendor/liblouis/tables/bg.dis +84 -0
  67. data/vendor/liblouis/tables/bg.tbl +21 -0
  68. data/vendor/liblouis/tables/bg.utb +454 -0
  69. data/vendor/liblouis/tables/bh.ctb +24 -0
  70. data/vendor/liblouis/tables/bh.tbl +17 -0
  71. data/vendor/liblouis/tables/bn.tbl +18 -0
  72. data/vendor/liblouis/tables/bo.ctb +184 -0
  73. data/vendor/liblouis/tables/bo.tbl +21 -0
  74. data/vendor/liblouis/tables/boxes.ctb +162 -0
  75. data/vendor/liblouis/tables/br-in-g1.utb +27 -0
  76. data/vendor/liblouis/tables/bra.tbl +18 -0
  77. data/vendor/liblouis/tables/braille-patterns.cti +287 -0
  78. data/vendor/liblouis/tables/ca-chardefs.cti +225 -0
  79. data/vendor/liblouis/tables/ca-g1.ctb +46 -0
  80. data/vendor/liblouis/tables/ca.tbl +18 -0
  81. data/vendor/liblouis/tables/chr-us-g1.ctb +180 -0
  82. data/vendor/liblouis/tables/ckb-chardefs.cti +219 -0
  83. data/vendor/liblouis/tables/ckb-g1.ctb +31 -0
  84. data/vendor/liblouis/tables/ckb-translation.cti +131 -0
  85. data/vendor/liblouis/tables/ckb.tbl +18 -0
  86. data/vendor/liblouis/tables/compress.cti +44 -0
  87. data/vendor/liblouis/tables/controlchars.cti +27 -0
  88. data/vendor/liblouis/tables/cop-eg-comp8.utb +255 -0
  89. data/vendor/liblouis/tables/cop.utb +231 -0
  90. data/vendor/liblouis/tables/corrections.cti +47 -0
  91. data/vendor/liblouis/tables/countries.cti +263 -0
  92. data/vendor/liblouis/tables/critical-apparatus.uti +54 -0
  93. data/vendor/liblouis/tables/cs-chardefs.cti +385 -0
  94. data/vendor/liblouis/tables/cs-comp8.utb +405 -0
  95. data/vendor/liblouis/tables/cs-g1.ctb +37 -0
  96. data/vendor/liblouis/tables/cs-translation.cti +63 -0
  97. data/vendor/liblouis/tables/cs.tbl +20 -0
  98. data/vendor/liblouis/tables/cuneiform-transliterated-compact.utb +432 -0
  99. data/vendor/liblouis/tables/cuneiform-transliterated.utb +160 -0
  100. data/vendor/liblouis/tables/cy-cy-g1.utb +487 -0
  101. data/vendor/liblouis/tables/cy-cy-g2.ctb +199 -0
  102. data/vendor/liblouis/tables/cy.tbl +19 -0
  103. data/vendor/liblouis/tables/da-dk-6miscChars.cti +385 -0
  104. data/vendor/liblouis/tables/da-dk-6miscChars_1993.cti +412 -0
  105. data/vendor/liblouis/tables/da-dk-8miscChars.cti +90 -0
  106. data/vendor/liblouis/tables/da-dk-8miscChars_1993.cti +102 -0
  107. data/vendor/liblouis/tables/da-dk-g08.ctb +290 -0
  108. data/vendor/liblouis/tables/da-dk-g08_1993.ctb +331 -0
  109. data/vendor/liblouis/tables/da-dk-g16-lit_1993.ctb +294 -0
  110. data/vendor/liblouis/tables/da-dk-g16.ctb +289 -0
  111. data/vendor/liblouis/tables/da-dk-g16_1993.ctb +305 -0
  112. data/vendor/liblouis/tables/da-dk-g18.ctb +545 -0
  113. data/vendor/liblouis/tables/da-dk-g18_1993.ctb +563 -0
  114. data/vendor/liblouis/tables/da-dk-g2.dic +7439 -0
  115. data/vendor/liblouis/tables/da-dk-g26-lit_1993.ctb +898 -0
  116. data/vendor/liblouis/tables/da-dk-g26.ctb +1345 -0
  117. data/vendor/liblouis/tables/da-dk-g26_1993.ctb +1127 -0
  118. data/vendor/liblouis/tables/da-dk-g26l-lit_1993.ctb +588 -0
  119. data/vendor/liblouis/tables/da-dk-g26l_1993.ctb +604 -0
  120. data/vendor/liblouis/tables/da-dk-g28.ctb +2426 -0
  121. data/vendor/liblouis/tables/da-dk-g28_1993.ctb +2063 -0
  122. data/vendor/liblouis/tables/da-dk-g28l_1993.ctb +1594 -0
  123. data/vendor/liblouis/tables/da-dk-octobraille.dis +316 -0
  124. data/vendor/liblouis/tables/da-dk-octobraille_1993.dis +313 -0
  125. data/vendor/liblouis/tables/de-accents-detailed.cti +214 -0
  126. data/vendor/liblouis/tables/de-accents.cti +214 -0
  127. data/vendor/liblouis/tables/de-chardefs6.cti +289 -0
  128. data/vendor/liblouis/tables/de-chardefs8.cti +278 -0
  129. data/vendor/liblouis/tables/de-chess.ctb +37 -0
  130. data/vendor/liblouis/tables/de-comp6.utb +226 -0
  131. data/vendor/liblouis/tables/de-de-comp8.ctb +492 -0
  132. data/vendor/liblouis/tables/de-de.dis +331 -0
  133. data/vendor/liblouis/tables/de-eurobrl6.dis +101 -0
  134. data/vendor/liblouis/tables/de-eurobrl6u.dis +96 -0
  135. data/vendor/liblouis/tables/de-g0-core.uti +732 -0
  136. data/vendor/liblouis/tables/de-g0-detailed.utb +84 -0
  137. data/vendor/liblouis/tables/de-g0.utb +57 -0
  138. data/vendor/liblouis/tables/de-g1-core-patterns.dic +4863 -0
  139. data/vendor/liblouis/tables/de-g1-core.cti +67 -0
  140. data/vendor/liblouis/tables/de-g1-detailed.ctb +79 -0
  141. data/vendor/liblouis/tables/de-g1.ctb +54 -0
  142. data/vendor/liblouis/tables/de-g2-core-patterns.dic +26711 -0
  143. data/vendor/liblouis/tables/de-g2-core.cti +607 -0
  144. data/vendor/liblouis/tables/de-g2-detailed.ctb +60 -0
  145. data/vendor/liblouis/tables/de-g2.ctb +57 -0
  146. data/vendor/liblouis/tables/devanagari.cti +325 -0
  147. data/vendor/liblouis/tables/digits6Dots.uti +30 -0
  148. data/vendor/liblouis/tables/digits6DotsPlusDot6.uti +30 -0
  149. data/vendor/liblouis/tables/digits8Dots.uti +30 -0
  150. data/vendor/liblouis/tables/dra.ctb +23 -0
  151. data/vendor/liblouis/tables/dra.tbl +21 -0
  152. data/vendor/liblouis/tables/el.ctb +775 -0
  153. data/vendor/liblouis/tables/en-GB-g2.ctb +829 -0
  154. data/vendor/liblouis/tables/en-chardefs.cti +193 -0
  155. data/vendor/liblouis/tables/en-chess.ctb +37 -0
  156. data/vendor/liblouis/tables/en-g3-patterns.dic +11194 -0
  157. data/vendor/liblouis/tables/en-g3.ctb +2261 -0
  158. data/vendor/liblouis/tables/en-gb-comp8.ctb +282 -0
  159. data/vendor/liblouis/tables/en-gb-g1.utb +527 -0
  160. data/vendor/liblouis/tables/en-in-g1.ctb +162 -0
  161. data/vendor/liblouis/tables/en-nabcc.utb +166 -0
  162. data/vendor/liblouis/tables/en-nz-g1.utb +65 -0
  163. data/vendor/liblouis/tables/en-nz-g2.ctb +46 -0
  164. data/vendor/liblouis/tables/en-ueb-chardefs.uti +938 -0
  165. data/vendor/liblouis/tables/en-ueb-g1.ctb +167 -0
  166. data/vendor/liblouis/tables/en-ueb-g2.ctb +3925 -0
  167. data/vendor/liblouis/tables/en-ueb-math.ctb +71 -0
  168. data/vendor/liblouis/tables/en-us-brf.dis +102 -0
  169. data/vendor/liblouis/tables/en-us-comp6.ctb +149 -0
  170. data/vendor/liblouis/tables/en-us-comp8-ext.utb +626 -0
  171. data/vendor/liblouis/tables/en-us-comp8.ctb +62 -0
  172. data/vendor/liblouis/tables/en-us-compbrl.uti +69 -0
  173. data/vendor/liblouis/tables/en-us-emphasis.uti +45 -0
  174. data/vendor/liblouis/tables/en-us-g1.ctb +199 -0
  175. data/vendor/liblouis/tables/en-us-g2.ctb +1081 -0
  176. data/vendor/liblouis/tables/en-us-interline.ctb +1126 -0
  177. data/vendor/liblouis/tables/en-us-mathtext.ctb +880 -0
  178. data/vendor/liblouis/tables/en_CA.ctb +195 -0
  179. data/vendor/liblouis/tables/en_CA.tbl +21 -0
  180. data/vendor/liblouis/tables/en_GB.tbl +26 -0
  181. data/vendor/liblouis/tables/en_US-comp8-ext.tbl +15 -0
  182. data/vendor/liblouis/tables/en_US.tbl +26 -0
  183. data/vendor/liblouis/tables/eo-g1-x-system.ctb +85 -0
  184. data/vendor/liblouis/tables/eo-g1.ctb +165 -0
  185. data/vendor/liblouis/tables/eo.tbl +14 -0
  186. data/vendor/liblouis/tables/es-chardefs.cti +206 -0
  187. data/vendor/liblouis/tables/es-g1.ctb +36 -0
  188. data/vendor/liblouis/tables/es-g2.ctb +955 -0
  189. data/vendor/liblouis/tables/es-new.dis +284 -0
  190. data/vendor/liblouis/tables/es-no.utb +79 -0
  191. data/vendor/liblouis/tables/es-old.dis +284 -0
  192. data/vendor/liblouis/tables/es.tbl +19 -0
  193. data/vendor/liblouis/tables/et-6dot.utb +269 -0
  194. data/vendor/liblouis/tables/et-g0.utb +139 -0
  195. data/vendor/liblouis/tables/ethio-g1.ctb +335 -0
  196. data/vendor/liblouis/tables/eurodefs.cti +107 -0
  197. data/vendor/liblouis/tables/fa-ir-comp8.ctb +250 -0
  198. data/vendor/liblouis/tables/fa-ir-g1.utb +311 -0
  199. data/vendor/liblouis/tables/fi-fi-8dot.ctb +278 -0
  200. data/vendor/liblouis/tables/fi.utb +354 -0
  201. data/vendor/liblouis/tables/fil-g2.ctb +491 -0
  202. data/vendor/liblouis/tables/fr-bfu-comp6-puncs-math.uti +351 -0
  203. data/vendor/liblouis/tables/fr-bfu-comp6.utb +238 -0
  204. data/vendor/liblouis/tables/fr-bfu-comp68.cti +251 -0
  205. data/vendor/liblouis/tables/fr-bfu-comp8.utb +323 -0
  206. data/vendor/liblouis/tables/fr-bfu-g2.ctb +4644 -0
  207. data/vendor/liblouis/tables/ga-g1.utb +95 -0
  208. data/vendor/liblouis/tables/ga-g2.ctb +231 -0
  209. data/vendor/liblouis/tables/gd.ctb +123 -0
  210. data/vendor/liblouis/tables/gd.tbl +21 -0
  211. data/vendor/liblouis/tables/gez.tbl +21 -0
  212. data/vendor/liblouis/tables/gon.ctb +25 -0
  213. data/vendor/liblouis/tables/gon.tbl +17 -0
  214. data/vendor/liblouis/tables/gr-pl-comp8.uti +256 -0
  215. data/vendor/liblouis/tables/grc-international-common.uti +104 -0
  216. data/vendor/liblouis/tables/grc-international-composed.uti +268 -0
  217. data/vendor/liblouis/tables/grc-international-decomposed.uti +268 -0
  218. data/vendor/liblouis/tables/grc-international-en-composed.utb +54 -0
  219. data/vendor/liblouis/tables/grc-international-en.utb +206 -0
  220. data/vendor/liblouis/tables/grc-international-es.utb +228 -0
  221. data/vendor/liblouis/tables/gu-in-g1.utb +27 -0
  222. data/vendor/liblouis/tables/gu.tbl +18 -0
  223. data/vendor/liblouis/tables/gujarati.cti +221 -0
  224. data/vendor/liblouis/tables/gurumuki.cti +393 -0
  225. data/vendor/liblouis/tables/haw-us-g1.ctb +54 -0
  226. data/vendor/liblouis/tables/hbo-cantillated-rules.uti +71 -0
  227. data/vendor/liblouis/tables/hbo-cantillated.utb +109 -0
  228. data/vendor/liblouis/tables/hbo-common-rules.uti +152 -0
  229. data/vendor/liblouis/tables/hbo-ihbc-rules.uti +58 -0
  230. data/vendor/liblouis/tables/hbo-slim-rules.uti +68 -0
  231. data/vendor/liblouis/tables/hbo-slim.utb +100 -0
  232. data/vendor/liblouis/tables/hbo.utb +107 -0
  233. data/vendor/liblouis/tables/he-IL-comp8.utb +464 -0
  234. data/vendor/liblouis/tables/he-IL.utb +406 -0
  235. data/vendor/liblouis/tables/he-common-consonants.uti +102 -0
  236. data/vendor/liblouis/tables/he-common-vowels-ihbc.uti +161 -0
  237. data/vendor/liblouis/tables/hi-in-g1.utb +27 -0
  238. data/vendor/liblouis/tables/hi.tbl +18 -0
  239. data/vendor/liblouis/tables/hr-chardefs.cti +278 -0
  240. data/vendor/liblouis/tables/hr-comp8.tbl +21 -0
  241. data/vendor/liblouis/tables/hr-comp8.utb +239 -0
  242. data/vendor/liblouis/tables/hr-digits.uti +40 -0
  243. data/vendor/liblouis/tables/hr-g1.ctb +36 -0
  244. data/vendor/liblouis/tables/hr-g1.tbl +9 -0
  245. data/vendor/liblouis/tables/hr-translation.cti +364 -0
  246. data/vendor/liblouis/tables/ht-frenchcompatibility.uti +61 -0
  247. data/vendor/liblouis/tables/ht-g1.utb +114 -0
  248. data/vendor/liblouis/tables/hu-backtranslate-correction.dis +38 -0
  249. data/vendor/liblouis/tables/hu-backtranslate-word-corrections.cti +4293 -0
  250. data/vendor/liblouis/tables/hu-chardefs.cti +298 -0
  251. data/vendor/liblouis/tables/hu-exceptionwords.cti +3204 -0
  252. data/vendor/liblouis/tables/hu-hu-comp8.ctb +183 -0
  253. data/vendor/liblouis/tables/hu-hu-g1.ctb +129 -0
  254. data/vendor/liblouis/tables/hu-hu-g1_braille_input.cti +486 -0
  255. data/vendor/liblouis/tables/hu-hu-g2.ctb +270 -0
  256. data/vendor/liblouis/tables/hu-hu-g2_exceptions.cti +1164 -0
  257. data/vendor/liblouis/tables/hy.ctb +121 -0
  258. data/vendor/liblouis/tables/hy.tbl +21 -0
  259. data/vendor/liblouis/tables/hyph_cs_CZ.dic +3637 -0
  260. data/vendor/liblouis/tables/hyph_da_DK.dic +8896 -0
  261. data/vendor/liblouis/tables/hyph_de_DE.dic +5799 -0
  262. data/vendor/liblouis/tables/hyph_en_US.dic +5537 -0
  263. data/vendor/liblouis/tables/hyph_eo.dic +1024 -0
  264. data/vendor/liblouis/tables/hyph_es_ES.dic +877 -0
  265. data/vendor/liblouis/tables/hyph_fr_FR.dic +1067 -0
  266. data/vendor/liblouis/tables/hyph_hu_HU.dic +98519 -0
  267. data/vendor/liblouis/tables/hyph_it_IT.dic +410 -0
  268. data/vendor/liblouis/tables/hyph_nb_NO.dic +27142 -0
  269. data/vendor/liblouis/tables/hyph_nl_NL.dic +12725 -0
  270. data/vendor/liblouis/tables/hyph_nn_NO.dic +27142 -0
  271. data/vendor/liblouis/tables/hyph_pl_PL.dic +4074 -0
  272. data/vendor/liblouis/tables/hyph_pt_PT.dic +308 -0
  273. data/vendor/liblouis/tables/hyph_ru.dic +6480 -0
  274. data/vendor/liblouis/tables/hyph_sv_SE.dic +4697 -0
  275. data/vendor/liblouis/tables/is-chardefs6.cti +170 -0
  276. data/vendor/liblouis/tables/is-chardefs8.cti +293 -0
  277. data/vendor/liblouis/tables/is.ctb +157 -0
  278. data/vendor/liblouis/tables/is.tbl +18 -0
  279. data/vendor/liblouis/tables/it-it-comp6.utb +404 -0
  280. data/vendor/liblouis/tables/it-it-comp8.utb +663 -0
  281. data/vendor/liblouis/tables/iu-ca-g1.ctb +236 -0
  282. data/vendor/liblouis/tables/ja-kantenji-ucs2.utb +11448 -0
  283. data/vendor/liblouis/tables/ja-kantenji.utb +53 -0
  284. data/vendor/liblouis/tables/ja-rokutenkanji.utb +8710 -0
  285. data/vendor/liblouis/tables/ka-in-g1.utb +27 -0
  286. data/vendor/liblouis/tables/ka.utb +128 -0
  287. data/vendor/liblouis/tables/kannada.cti +282 -0
  288. data/vendor/liblouis/tables/kh-in-g1.utb +26 -0
  289. data/vendor/liblouis/tables/kha.tbl +18 -0
  290. data/vendor/liblouis/tables/kk.utb +77 -0
  291. data/vendor/liblouis/tables/km-g1.utb +412 -0
  292. data/vendor/liblouis/tables/kmr.tbl +108 -0
  293. data/vendor/liblouis/tables/kn.tbl +18 -0
  294. data/vendor/liblouis/tables/ko-2006-g1.ctb +49 -0
  295. data/vendor/liblouis/tables/ko-2006-g2.ctb +53 -0
  296. data/vendor/liblouis/tables/ko-2006.cti +190 -0
  297. data/vendor/liblouis/tables/ko-chars.cti +15140 -0
  298. data/vendor/liblouis/tables/ko-g1-rules.cti +634 -0
  299. data/vendor/liblouis/tables/ko-g1.ctb +48 -0
  300. data/vendor/liblouis/tables/ko-g2-rules.cti +9263 -0
  301. data/vendor/liblouis/tables/ko-g2.ctb +52 -0
  302. data/vendor/liblouis/tables/ko.cti +223 -0
  303. data/vendor/liblouis/tables/kok.ctb +24 -0
  304. data/vendor/liblouis/tables/kok.tbl +17 -0
  305. data/vendor/liblouis/tables/kru.ctb +24 -0
  306. data/vendor/liblouis/tables/kru.tbl +17 -0
  307. data/vendor/liblouis/tables/ks-in-g1.utb +27 -0
  308. data/vendor/liblouis/tables/latinLetterDef6Dots.uti +78 -0
  309. data/vendor/liblouis/tables/latinLetterDef8Dots.uti +75 -0
  310. data/vendor/liblouis/tables/latinLowercase.uti +389 -0
  311. data/vendor/liblouis/tables/latinUppercaseComp6.uti +78 -0
  312. data/vendor/liblouis/tables/lg-ug-g1.utb +60 -0
  313. data/vendor/liblouis/tables/litdigits6Dots.uti +30 -0
  314. data/vendor/liblouis/tables/litdigits6DotsPlusDot6.uti +30 -0
  315. data/vendor/liblouis/tables/lo-g1.utb +3127 -0
  316. data/vendor/liblouis/tables/loweredDigits6Dots.uti +30 -0
  317. data/vendor/liblouis/tables/loweredDigits8Dots.uti +30 -0
  318. data/vendor/liblouis/tables/lt-6dot.utb +308 -0
  319. data/vendor/liblouis/tables/lt-8dot.utb +281 -0
  320. data/vendor/liblouis/tables/lt.ctb +313 -0
  321. data/vendor/liblouis/tables/lv.tbl +22 -0
  322. data/vendor/liblouis/tables/maketablelist.sh +52 -0
  323. data/vendor/liblouis/tables/malayalam.cti +674 -0
  324. data/vendor/liblouis/tables/mao-nz-g1.ctb +65 -0
  325. data/vendor/liblouis/tables/marburg_single_cell_defs.cti +66 -0
  326. data/vendor/liblouis/tables/marburg_unicode_defs.cti +297 -0
  327. data/vendor/liblouis/tables/mk-g1.utb +240 -0
  328. data/vendor/liblouis/tables/ml-in-g1.utb +27 -0
  329. data/vendor/liblouis/tables/ml.tbl +21 -0
  330. data/vendor/liblouis/tables/mn-MN-common.cti +110 -0
  331. data/vendor/liblouis/tables/mn-MN-g1.utb +52 -0
  332. data/vendor/liblouis/tables/mn-MN-g2.ctb +50 -0
  333. data/vendor/liblouis/tables/mn-in-g1.utb +27 -0
  334. data/vendor/liblouis/tables/mni.tbl +18 -0
  335. data/vendor/liblouis/tables/mr-in-g1.utb +27 -0
  336. data/vendor/liblouis/tables/mr.tbl +18 -0
  337. data/vendor/liblouis/tables/ms-my-g2.ctb +4897 -0
  338. data/vendor/liblouis/tables/mt.ctb +114 -0
  339. data/vendor/liblouis/tables/mt.tbl +21 -0
  340. data/vendor/liblouis/tables/mun.ctb +24 -0
  341. data/vendor/liblouis/tables/mun.tbl +17 -0
  342. data/vendor/liblouis/tables/mwr.ctb +24 -0
  343. data/vendor/liblouis/tables/mwr.tbl +17 -0
  344. data/vendor/liblouis/tables/my-g1.utb +771 -0
  345. data/vendor/liblouis/tables/my-g2.ctb +3805 -0
  346. data/vendor/liblouis/tables/ne.ctb +22 -0
  347. data/vendor/liblouis/tables/ne.tbl +18 -0
  348. data/vendor/liblouis/tables/nemethdefs.cti +382 -0
  349. data/vendor/liblouis/tables/nl-BE.dis +532 -0
  350. data/vendor/liblouis/tables/nl-NL-g0.utb.in +646 -0
  351. data/vendor/liblouis/tables/nl-chardefs.uti.in +455 -0
  352. data/vendor/liblouis/tables/nl-comp8.utb +411 -0
  353. data/vendor/liblouis/tables/nl-print.dis +551 -0
  354. data/vendor/liblouis/tables/nl-unicode.dis +540 -0
  355. data/vendor/liblouis/tables/no-no-8dot-fallback-6dot-g0.utb +59 -0
  356. data/vendor/liblouis/tables/no-no-8dot.utb +629 -0
  357. data/vendor/liblouis/tables/no-no-braillo-047-01.dis +247 -0
  358. data/vendor/liblouis/tables/no-no-chardefs6.uti +305 -0
  359. data/vendor/liblouis/tables/no-no-comp8.ctb +323 -0
  360. data/vendor/liblouis/tables/no-no-cyrillic6dot.uti +95 -0
  361. data/vendor/liblouis/tables/no-no-g0.utb +320 -0
  362. data/vendor/liblouis/tables/no-no-g1.ctb +272 -0
  363. data/vendor/liblouis/tables/no-no-g2.ctb +737 -0
  364. data/vendor/liblouis/tables/no-no-g3.ctb +3597 -0
  365. data/vendor/liblouis/tables/no-no-generic.ctb +295 -0
  366. data/vendor/liblouis/tables/no-no-generic.dis +295 -0
  367. data/vendor/liblouis/tables/no-no-latinLetterDef6Dots_diacritics.uti +852 -0
  368. data/vendor/liblouis/tables/no-no.dis +291 -0
  369. data/vendor/liblouis/tables/np-in-g1.utb +27 -0
  370. data/vendor/liblouis/tables/nso-za-g1.utb +38 -0
  371. data/vendor/liblouis/tables/nso-za-g2.ctb +38 -0
  372. data/vendor/liblouis/tables/ny-mw.utb +70 -0
  373. data/vendor/liblouis/tables/or-in-g1.utb +27 -0
  374. data/vendor/liblouis/tables/or.tbl +18 -0
  375. data/vendor/liblouis/tables/oriya.cti +238 -0
  376. data/vendor/liblouis/tables/ovd-6g0.utb +64 -0
  377. data/vendor/liblouis/tables/ovd-8g0.utb +81 -0
  378. data/vendor/liblouis/tables/pa.tbl +18 -0
  379. data/vendor/liblouis/tables/pi.ctb +24 -0
  380. data/vendor/liblouis/tables/pi.tbl +17 -0
  381. data/vendor/liblouis/tables/pl-pl-comp8.ctb +658 -0
  382. data/vendor/liblouis/tables/pl.tbl +12 -0
  383. data/vendor/liblouis/tables/printables.cti +70 -0
  384. data/vendor/liblouis/tables/pt-comp6.utb +299 -0
  385. data/vendor/liblouis/tables/pt-pt-comp8.ctb +395 -0
  386. data/vendor/liblouis/tables/pt-pt-g1.utb +1312 -0
  387. data/vendor/liblouis/tables/pt-pt-g2.ctb +874 -0
  388. data/vendor/liblouis/tables/pt.tbl +20 -0
  389. data/vendor/liblouis/tables/pu-in-g1.utb +42 -0
  390. data/vendor/liblouis/tables/quotation-marks.uti +30 -0
  391. data/vendor/liblouis/tables/ro-g0.utb +85 -0
  392. data/vendor/liblouis/tables/ro.ctb +126 -0
  393. data/vendor/liblouis/tables/ro.tbl +21 -0
  394. data/vendor/liblouis/tables/ru-brf.dis +116 -0
  395. data/vendor/liblouis/tables/ru-comp6.utb +258 -0
  396. data/vendor/liblouis/tables/ru-comp8.utb +740 -0
  397. data/vendor/liblouis/tables/ru-letters.dis +145 -0
  398. data/vendor/liblouis/tables/ru-litbrl-detailed.utb +77 -0
  399. data/vendor/liblouis/tables/ru-litbrl.ctb +857 -0
  400. data/vendor/liblouis/tables/ru-math.uti +395 -0
  401. data/vendor/liblouis/tables/ru-ru-g1.ctb +804 -0
  402. data/vendor/liblouis/tables/ru-unicode.dis +121 -0
  403. data/vendor/liblouis/tables/rw-rw-g1.utb +133 -0
  404. data/vendor/liblouis/tables/sa-in-g1.utb +27 -0
  405. data/vendor/liblouis/tables/sa.tbl +18 -0
  406. data/vendor/liblouis/tables/sah.utb +72 -0
  407. data/vendor/liblouis/tables/sd.tbl +18 -0
  408. data/vendor/liblouis/tables/se-se.ctb +246 -0
  409. data/vendor/liblouis/tables/se-se.dis +334 -0
  410. data/vendor/liblouis/tables/si-in-g1.utb +27 -0
  411. data/vendor/liblouis/tables/sin.cti +213 -0
  412. data/vendor/liblouis/tables/sin.utb +35 -0
  413. data/vendor/liblouis/tables/sk-g1.ctb +1019 -0
  414. data/vendor/liblouis/tables/sk-sk-g1.utb +206 -0
  415. data/vendor/liblouis/tables/sk-sk.utb +112 -0
  416. data/vendor/liblouis/tables/sl-si-comp8.ctb +204 -0
  417. data/vendor/liblouis/tables/sl-si-g1.utb +471 -0
  418. data/vendor/liblouis/tables/sl.tbl +20 -0
  419. data/vendor/liblouis/tables/smi-6g0.utb +64 -0
  420. data/vendor/liblouis/tables/smi-8g0.utb +61 -0
  421. data/vendor/liblouis/tables/sot-za-g1.ctb +72 -0
  422. data/vendor/liblouis/tables/sot-za-g2.ctb +244 -0
  423. data/vendor/liblouis/tables/spaces.uti +62 -0
  424. data/vendor/liblouis/tables/sr-Cyrl.ctb +59 -0
  425. data/vendor/liblouis/tables/sr-common.cti +161 -0
  426. data/vendor/liblouis/tables/sr-cyrletters.cti +92 -0
  427. data/vendor/liblouis/tables/sr-g1.ctb +57 -0
  428. data/vendor/liblouis/tables/sr-latletters.cti +45 -0
  429. data/vendor/liblouis/tables/sv-1989.ctb +241 -0
  430. data/vendor/liblouis/tables/sv-1996.ctb +180 -0
  431. data/vendor/liblouis/tables/sv-6common.uti +1199 -0
  432. data/vendor/liblouis/tables/sv-6g0d.utb +508 -0
  433. data/vendor/liblouis/tables/sv-6g0p.utb +61 -0
  434. data/vendor/liblouis/tables/sv-6g1.uti +106 -0
  435. data/vendor/liblouis/tables/sv-6g1d.ctb +57 -0
  436. data/vendor/liblouis/tables/sv-6g2.uti +254 -0
  437. data/vendor/liblouis/tables/sv-6g2d.ctb +57 -0
  438. data/vendor/liblouis/tables/sv-8g0d.utb +495 -0
  439. data/vendor/liblouis/tables/sv-8g0n.utb +1236 -0
  440. data/vendor/liblouis/tables/sv-8g1.uti +199 -0
  441. data/vendor/liblouis/tables/sv-8g1d.ctb +73 -0
  442. data/vendor/liblouis/tables/sv-8g1n.ctb +73 -0
  443. data/vendor/liblouis/tables/sv-8g2.uti +486 -0
  444. data/vendor/liblouis/tables/sv-8g2d.ctb +73 -0
  445. data/vendor/liblouis/tables/sv-8g2n.ctb +73 -0
  446. data/vendor/liblouis/tables/sv-g0.utb +65 -0
  447. data/vendor/liblouis/tables/sv-g1.ctb +57 -0
  448. data/vendor/liblouis/tables/sv-g2.ctb +57 -0
  449. data/vendor/liblouis/tables/sv-phon.uti +241 -0
  450. data/vendor/liblouis/tables/sw-ke-g1-2.ctb +90 -0
  451. data/vendor/liblouis/tables/sw-ke-g1-3.ctb +109 -0
  452. data/vendor/liblouis/tables/sw-ke-g1-4.ctb +107 -0
  453. data/vendor/liblouis/tables/sw-ke-g1-5.ctb +73 -0
  454. data/vendor/liblouis/tables/sw-ke-g1.utb +278 -0
  455. data/vendor/liblouis/tables/sw-ke-g2.ctb +276 -0
  456. data/vendor/liblouis/tables/syc.utb +195 -0
  457. data/vendor/liblouis/tables/ta-ta-g1.ctb +167 -0
  458. data/vendor/liblouis/tables/ta.ctb +24 -0
  459. data/vendor/liblouis/tables/ta.tbl +21 -0
  460. data/vendor/liblouis/tables/tamil.cti +86 -0
  461. data/vendor/liblouis/tables/te-in-g1.utb +27 -0
  462. data/vendor/liblouis/tables/te.tbl +18 -0
  463. data/vendor/liblouis/tables/telugu.cti +239 -0
  464. data/vendor/liblouis/tables/text_nabcc.dis +426 -0
  465. data/vendor/liblouis/tables/th-comp8-backward.utb +226 -0
  466. data/vendor/liblouis/tables/th-g0.utb +177 -0
  467. data/vendor/liblouis/tables/th-g1.utb +89 -0
  468. data/vendor/liblouis/tables/th-g1.uti +315 -0
  469. data/vendor/liblouis/tables/th-g2.ctb +616 -0
  470. data/vendor/liblouis/tables/tr-g1.ctb +254 -0
  471. data/vendor/liblouis/tables/tr-g2.ctb +863 -0
  472. data/vendor/liblouis/tables/tr-g2.tbl +20 -0
  473. data/vendor/liblouis/tables/tr.ctb +324 -0
  474. data/vendor/liblouis/tables/tr.tbl +21 -0
  475. data/vendor/liblouis/tables/tsn-za-g1.ctb +33 -0
  476. data/vendor/liblouis/tables/tsn-za-g2.ctb +33 -0
  477. data/vendor/liblouis/tables/tt.utb +74 -0
  478. data/vendor/liblouis/tables/uga.utb +86 -0
  479. data/vendor/liblouis/tables/uk-comp.utb +53 -0
  480. data/vendor/liblouis/tables/uk-detailed.utb +32 -0
  481. data/vendor/liblouis/tables/uk.utb +101 -0
  482. data/vendor/liblouis/tables/ukchardefs.cti +106 -0
  483. data/vendor/liblouis/tables/ukmaths_single_cell_defs.cti +65 -0
  484. data/vendor/liblouis/tables/ukmaths_unicode_defs.cti +298 -0
  485. data/vendor/liblouis/tables/uni-text.dis +330 -0
  486. data/vendor/liblouis/tables/unicode-braille.utb +291 -0
  487. data/vendor/liblouis/tables/unicode-without-blank.dis +24 -0
  488. data/vendor/liblouis/tables/unicode.dis +278 -0
  489. data/vendor/liblouis/tables/ur-pk-g1.utb +248 -0
  490. data/vendor/liblouis/tables/ur-pk-g2.ctb +641 -0
  491. data/vendor/liblouis/tables/us-table.dis +67 -0
  492. data/vendor/liblouis/tables/uz-g1.utb +117 -0
  493. data/vendor/liblouis/tables/ve-za-g1.utb +69 -0
  494. data/vendor/liblouis/tables/ve-za-g2.ctb +208 -0
  495. data/vendor/liblouis/tables/vi-cb8.utb +49 -0
  496. data/vendor/liblouis/tables/vi-charsdef.uti +36 -0
  497. data/vendor/liblouis/tables/vi-lettersdef.uti +401 -0
  498. data/vendor/liblouis/tables/vi-puncsdef.uti +446 -0
  499. data/vendor/liblouis/tables/vi-saigon-g1.ctb +530 -0
  500. data/vendor/liblouis/tables/vi-vn-g0.utb +135 -0
  501. data/vendor/liblouis/tables/vi-vn-g1.ctb +574 -0
  502. data/vendor/liblouis/tables/vi-vn-g2.ctb +743 -0
  503. data/vendor/liblouis/tables/wiskunde-chardefs.cti +261 -0
  504. data/vendor/liblouis/tables/wordcx.dis +91 -0
  505. data/vendor/liblouis/tables/xh-za-g1.utb +61 -0
  506. data/vendor/liblouis/tables/xh-za-g2.ctb +386 -0
  507. data/vendor/liblouis/tables/yi.utb +236 -0
  508. data/vendor/liblouis/tables/zh-chn.ctb +45011 -0
  509. data/vendor/liblouis/tables/zh-hk.ctb +10461 -0
  510. data/vendor/liblouis/tables/zh-tw.ctb +53810 -0
  511. data/vendor/liblouis/tables/zh_CHN.tbl +23 -0
  512. data/vendor/liblouis/tables/zhcn-cbs.ctb +31523 -0
  513. data/vendor/liblouis/tables/zhcn-g1.ctb +26523 -0
  514. data/vendor/liblouis/tables/zhcn-g2.ctb +26519 -0
  515. data/vendor/liblouis/tables/zu-za-g1.utb +33 -0
  516. data/vendor/liblouis/tables/zu-za-g2.ctb +33 -0
  517. metadata +558 -0
@@ -0,0 +1,852 @@
1
+ # liblouis: sub table for defining latin letters with diacritics, 6 dots.
2
+ #
3
+ # Copyright (C) 2015-2016 NLB Norwegian library of talking books and braille, http://www.nlb.no/
4
+ #-Copyright (C) 2019, 2021-2022, 2025, Lars Bjørndal <lars@lamasti.net>
5
+ #
6
+ #-copyright: 2015, Norwegian library of talking books and braille (NLB), www.nlb.no
7
+ #-license: LGPLv2.1
8
+ #
9
+ # This table maps letters with diacritics to their closest matching
10
+ # letter a-z, including a dot 4 prefix as required by norwegian braille.
11
+ #
12
+ # This file is part of liblouis.
13
+ #
14
+ # liblouis is free software: you can redistribute it and/or modify it
15
+ # under the terms of the GNU Lesser General Public License as
16
+ # published by the Free Software Foundation, either version 2.1 of the
17
+ # License, or (at your option) any later version.
18
+ #
19
+ # liblouis is distributed in the hope that it will be useful, but
20
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
21
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22
+ # Lesser General Public License for more details.
23
+ #
24
+ # You should have received a copy of the GNU Lesser General Public
25
+ # License along with liblouis. If not, see
26
+ # <http://www.gnu.org/licenses/>.
27
+ #
28
+
29
+ noback lowercase ć 4-14 # Latin Letter C with Acute
30
+ # Commented out to get É become 6-123456 correct, defined in no-no-chardefs6.uti. More equivalent later in this file.
31
+ #uplow É é 4-15 # Latin Letter E with Acute
32
+ noback lowercase ǵ 4-1245 # Latin Letter G with Acute
33
+ noback lowercase í 4-24 # Latin Letter I with Acute
34
+ noback lowercase ḱ 4-13 # Latin Letter K with Acute
35
+ noback lowercase ĺ 4-123 # Latin Letter L with Acute
36
+ noback lowercase ḿ 4-134 # Latin Letter M with Acute
37
+ noback lowercase ń 4-1345 # Latin Letter N with Acute
38
+ noback lowercase ó 4-135 # Latin Letter O with Acute
39
+ noback lowercase ṕ 4-1234 # Latin Letter P with Acute
40
+ noback lowercase ŕ 4-1235 # Latin Letter R with Acute
41
+ noback lowercase ś 4-234 # Latin Letter S with Acute
42
+ noback lowercase ú 4-136 # Latin Letter U with Acute
43
+ noback lowercase ẃ 4-2456 # Latin Letter W with Acute
44
+ noback lowercase ý 4-13456 # Latin Letter Y with Acute
45
+ noback lowercase ź 4-1356 # Latin Letter Z with Acute
46
+ noback lowercase ƚ 4-123 # Latin Letter L with Bar
47
+ noback lowercase ꞓ 4-14 # Latin Letter C with Bar
48
+ noback lowercase ɬ 4-123 # Latin Letter L with Belt
49
+ noback lowercase ắ 4-1 # Latin Letter a with Breve and Acute
50
+ noback lowercase ặ 4-1 # Latin Letter a with Breve and Dot Below
51
+ noback lowercase ằ 4-1 # Latin Letter a with Breve and Grave
52
+ noback lowercase ẳ 4-1 # Latin Letter a with Breve and Hook Above
53
+ noback lowercase ẵ 4-1 # Latin Letter a with Breve and Tilde
54
+ noback lowercase ḫ 4-125 # Latin Letter H with Breve Below
55
+ noback lowercase ă 4-1 # Latin Letter a with Breve
56
+ noback lowercase ĕ 4-15 # Latin Letter E with Breve
57
+ noback lowercase ğ 4-1245 # Latin Letter G with Breve
58
+ noback lowercase ĭ 4-24 # Latin Letter I with Breve
59
+ noback lowercase ŏ 4-135 # Latin Letter O with Breve
60
+ noback lowercase ŭ 4-136 # Latin Letter U with Breve
61
+ noback lowercase ṧ 4-234 # Latin Letter S with Caron and Dot Above
62
+ noback lowercase ǎ 4-1 # Latin Letter a with Caron
63
+ noback lowercase ď 4-145 # Latin Letter D with Caron
64
+ noback lowercase ě 4-15 # Latin Letter E with Caron
65
+ noback lowercase ǧ 4-1245 # Latin Letter G with Caron
66
+ noback lowercase ȟ 4-125 # Latin Letter H with Caron
67
+ noback lowercase ǐ 4-24 # Latin Letter I with Caron
68
+ noback lowercase ǰ 4-245 # Latin Small Letter J with Caron
69
+ noback lowercase ǩ 4-13 # Latin Letter K with Caron
70
+ noback lowercase ľ 4-123 # Latin Letter L with Caron
71
+ noback lowercase ň 4-1345 # Latin Letter N with Caron
72
+ noback lowercase ǒ 4-135 # Latin Letter O with Caron
73
+ noback lowercase ř 4-1235 # Latin Letter R with Caron
74
+ noback lowercase ť 4-2345 # Latin Letter T with Caron
75
+ noback lowercase ǔ 4-136 # Latin Letter U with Caron
76
+ noback sign Dž 4-1356 # Latin Capital Letter D with Small Letter Z with Caron
77
+ noback lowercase ḉ 4-14 # Latin Letter C with Cedilla and Acute
78
+ noback lowercase ḝ 4-15 # Latin Letter E with Cedilla and Breve
79
+ #uplow Ç ç 4-14 # Latin Letter C with Cedilla
80
+ noback lowercase ḑ 4-145 # Latin Letter D with Cedilla
81
+ noback lowercase ȩ 4-15 # Latin Letter E with Cedilla
82
+ noback lowercase ģ 4-1245 # Latin Letter G with Cedilla
83
+ noback lowercase ḩ 4-125 # Latin Letter H with Cedilla
84
+ noback lowercase ķ 4-13 # Latin Letter K with Cedilla
85
+ noback lowercase ļ 4-123 # Latin Letter L with Cedilla
86
+ noback lowercase ņ 4-1345 # Latin Letter N with Cedilla
87
+ noback lowercase ŗ 4-1235 # Latin Letter R with Cedilla
88
+ noback lowercase ş 4-234 # Latin Letter S with Cedilla
89
+ noback lowercase ţ 4-2345 # Latin Letter T with Cedilla
90
+ noback lowercase ấ 4-1 # Latin Letter a with Circumflex and Acute
91
+ noback lowercase ế 4-15 # Latin Letter E with Circumflex and Acute
92
+ noback lowercase ố 4-135 # Latin Letter O with Circumflex and Acute
93
+ noback lowercase ậ 4-1 # Latin Letter a with Circumflex and Dot Below
94
+ noback lowercase ệ 4-15 # Latin Letter E with Circumflex and Dot Below
95
+ noback lowercase ộ 4-135 # Latin Letter O with Circumflex and Dot Below
96
+ noback lowercase ầ 4-1 # Latin Letter a with Circumflex and Grave
97
+ noback lowercase ề 4-15 # Latin Letter E with Circumflex and Grave
98
+ noback lowercase ồ 4-135 # Latin Letter O with Circumflex and Grave
99
+ noback lowercase ẩ 4-1 # Latin Letter a with Circumflex and Hook Above
100
+ noback lowercase ể 4-15 # Latin Letter E with Circumflex and Hook Above
101
+ noback lowercase ổ 4-135 # Latin Letter O with Circumflex and Hook Above
102
+ noback lowercase ẫ 4-1 # Latin Letter a with Circumflex and Tilde
103
+ noback lowercase ễ 4-15 # Latin Letter E with Circumflex and Tilde
104
+ noback lowercase ỗ 4-135 # Latin Letter O with Circumflex and Tilde
105
+ noback lowercase ḓ 4-145 # Latin Letter D with Circumflex Below
106
+ noback lowercase ḙ 4-15 # Latin Letter E with Circumflex Below
107
+ noback lowercase ḽ 4-123 # Latin Letter L with Circumflex Below
108
+ noback lowercase ṋ 4-1345 # Latin Letter N with Circumflex Below
109
+ noback lowercase ṱ 4-2345 # Latin Letter T with Circumflex Below
110
+ noback lowercase ṷ 4-136 # Latin Letter U with Circumflex Below
111
+ noback lowercase â 4-1 # Latin Letter a with Circumflex
112
+ noback lowercase ĉ 4-14 # Latin Letter C with Circumflex
113
+ #uplow Ê ê 4-15 # Latin Letter E with Circumflex
114
+ noback lowercase ĝ 4-1245 # Latin Letter G with Circumflex
115
+ noback lowercase ĥ 4-125 # Latin Letter H with Circumflex
116
+ noback lowercase î 4-24 # Latin Letter I with Circumflex
117
+ noback lowercase ĵ 4-245 # Latin Letter J with Circumflex
118
+ noback lowercase ô 4-135 # Latin Letter O with Circumflex
119
+ noback lowercase ŝ 4-234 # Latin Letter S with Circumflex
120
+ noback lowercase û 4-136 # Latin Letter U with Circumflex
121
+ noback lowercase ŵ 4-2456 # Latin Letter W with Circumflex
122
+ noback lowercase ŷ 4-13456 # Latin Letter Y with Circumflex
123
+ noback lowercase ẑ 4-1356 # Latin Letter Z with Circumflex
124
+ noback lowercase ș 4-234 # Latin Letter S with Comma Below
125
+ noback lowercase ț 4-2345 # Latin Letter T with Comma Below
126
+ noback lowercase ʝ 4-245 # Latin Small Letter J with Crossed-Tail
127
+ noback lowercase ꬺ 4-134 # Latin Small Letter M with Crossed-Tail
128
+ noback lowercase ꬻ 4-1345 # Latin Small Letter N with Crossed-Tail
129
+ noback lowercase ꭉ 4-1235 # Latin Small Letter R with Crossed-Tail
130
+ noback lowercase ɕ 4-14 # Latin Small Letter C with Curl
131
+ noback lowercase ȡ 4-145 # Latin Small Letter D with Curl
132
+ noback lowercase ȴ 4-123 # Latin Small Letter L with Curl
133
+ noback lowercase ȵ 4-1345 # Latin Small Letter N with Curl
134
+ noback lowercase ȶ 4-2345 # Latin Small Letter T with Curl
135
+ noback lowercase ⱴ 4-1236 # Latin Small Letter V with Curl
136
+ noback lowercase ʑ 4-1356 # Latin Small Letter Z with Curl
137
+ noback lowercase ⱨ 4-125 # Latin Letter H with Descender
138
+ noback lowercase ⱪ 4-13 # Latin Letter K with Descender
139
+ noback lowercase ꞑ 4-1345 # Latin Letter N with Descender
140
+ noback lowercase ⱬ 4-1356 # Latin Letter Z with Descender
141
+ noback lowercase ḯ 4-24 # Latin Letter I with Diaeresis and Acute
142
+ noback lowercase ǘ 4-136 # Latin Letter U with Diaeresis and Acute
143
+ noback lowercase ǚ 4-136 # Latin Letter U with Diaeresis and Caron
144
+ noback lowercase ǜ 4-136 # Latin Letter U with Diaeresis and Grave
145
+ noback lowercase ǟ 4-1 # Latin Letter a with Diaeresis and Macron
146
+ noback lowercase ȫ 4-135 # Latin Letter O with Diaeresis and Macron
147
+ noback lowercase ǖ 4-136 # Latin Letter U with Diaeresis and Macron
148
+ noback lowercase ṳ 4-136 # Latin Letter U with Diaeresis Below
149
+ #uplow Ä ä 4-1 # Latin Letter a with Diaeresis
150
+ noback lowercase ë 4-15 # Latin Letter E with Diaeresis
151
+ noback lowercase ḧ 4-125 # Latin Letter H with Diaeresis
152
+ #uplow Ö ö 4-135 # Latin Letter O with Diaeresis
153
+ noback lowercase ẗ 4-2345 # Latin Small Letter T with Diaeresis
154
+ #uplow Ü ü 4-136 # Latin Letter U with Diaeresis
155
+ noback lowercase ẅ 4-2456 # Latin Letter W with Diaeresis
156
+ noback lowercase ẍ 4-1346 # Latin Letter X with Diaeresis
157
+ noback lowercase ÿ 4-13456 # Latin Letter Y with Diaeresis
158
+ noback lowercase ꝃ 4-13 # Latin Letter K with Diagonal Stroke
159
+ noback lowercase ꝙ 4-12345 # Latin Letter Q with Diagonal Stroke
160
+ noback lowercase ⱦ 4-2345 # Latin Letter T with Diagonal Stroke
161
+ noback lowercase ꝟ 4-1236 # Latin Letter V with Diagonal Stroke
162
+ uppercase İ 4-24 # Latin Capital Letter I with Dot Above : i dot
163
+ noback lowercase ǡ 4-1 # Latin Letter a with Dot Above and Macron
164
+ noback lowercase ȱ 4-135 # Latin Letter O with Dot Above and Macron
165
+ noback lowercase ȧ 4-1 # Latin Letter a with Dot Above
166
+ noback lowercase ḃ 4-12 # Latin Letter B with Dot Above
167
+ noback lowercase ċ 4-14 # Latin Letter C with Dot Above
168
+ noback lowercase ḋ 4-145 # Latin Letter D with Dot Above
169
+ noback lowercase ė 4-15 # Latin Letter E with Dot Above
170
+ noback lowercase ḟ 4-124 # Latin Letter F with Dot Above
171
+ noback lowercase ġ 4-1245 # Latin Letter G with Dot Above
172
+ noback lowercase ḣ 4-125 # Latin Letter H with Dot Above
173
+ noback lowercase ṁ 4-134 # Latin Letter M with Dot Above
174
+ noback lowercase ṅ 4-1345 # Latin Letter N with Dot Above
175
+ noback lowercase ȯ 4-135 # Latin Letter O with Dot Above
176
+ noback lowercase ṗ 4-1234 # Latin Letter P with Dot Above
177
+ noback lowercase ṙ 4-1235 # Latin Letter R with Dot Above
178
+ noback lowercase ṡ 4-234 # Latin Letter S with Dot Above
179
+ noback lowercase ṫ 4-2345 # Latin Letter T with Dot Above
180
+ noback lowercase ẇ 4-2456 # Latin Letter W with Dot Above
181
+ noback lowercase ẋ 4-1346 # Latin Letter X with Dot Above
182
+ noback lowercase ẏ 4-13456 # Latin Letter Y with Dot Above
183
+ noback lowercase ż 4-1356 # Latin Letter Z with Dot Above
184
+ noback lowercase ṩ 4-234 # Latin Letter S with Dot Below and Dot Above
185
+ noback lowercase ḹ 4-123 # Latin Letter L with Dot Below and Macron
186
+ noback lowercase ṝ 4-1235 # Latin Letter R with Dot Below and Macron
187
+ noback lowercase ạ 4-1 # Latin Letter a with Dot Below
188
+ noback lowercase ḅ 4-12 # Latin Letter B with Dot Below
189
+ noback lowercase ḍ 4-145 # Latin Letter D with Dot Below
190
+ noback lowercase ẹ 4-15 # Latin Letter E with Dot Below
191
+ noback lowercase ḥ 4-125 # Latin Letter H with Dot Below
192
+ noback lowercase ị 4-24 # Latin Letter I with Dot Below
193
+ noback lowercase ḳ 4-13 # Latin Letter K with Dot Below
194
+ noback lowercase ḷ 4-123 # Latin Letter L with Dot Below
195
+ noback lowercase ṃ 4-134 # Latin Letter M with Dot Below
196
+ noback lowercase ṇ 4-1345 # Latin Letter N with Dot Below
197
+ noback lowercase ọ 4-135 # Latin Letter O with Dot Below
198
+ noback lowercase ṛ 4-1235 # Latin Letter R with Dot Below
199
+ noback lowercase ṣ 4-234 # Latin Letter S with Dot Below
200
+ noback lowercase ṭ 4-2345 # Latin Letter T with Dot Below
201
+ noback lowercase ụ 4-136 # Latin Letter U with Dot Below
202
+ noback lowercase ṿ 4-1236 # Latin Letter V with Dot Below
203
+ noback lowercase ẉ 4-2456 # Latin Letter W with Dot Below
204
+ noback lowercase ỵ 4-13456 # Latin Letter Y with Dot Below
205
+ noback lowercase ẓ 4-1356 # Latin Letter Z with Dot Below
206
+ noback lowercase ő 4-135 # Latin Letter O with Double Acute
207
+ noback lowercase ű 4-136 # Latin Letter U with Double Acute
208
+ noback lowercase ⱡ 4-123 # Latin Letter L with Double Bar
209
+ noback lowercase ȁ 4-1 # Latin Letter a with Double Grave
210
+ noback lowercase ȅ 4-15 # Latin Letter E with Double Grave
211
+ noback lowercase ȉ 4-24 # Latin Letter I with Double Grave
212
+ noback lowercase ȍ 4-135 # Latin Letter O with Double Grave
213
+ noback lowercase ȑ 4-1235 # Latin Letter R with Double Grave
214
+ noback lowercase ȕ 4-136 # Latin Letter U with Double Grave
215
+ noback lowercase ꬸ 4-123 # Latin Small Letter L with Double Middle Tilde
216
+ noback lowercase ᵳ 4-1235 # Latin Small Letter R with Fishhook and Middle Tilde
217
+ noback lowercase ɾ 4-1235 # Latin Small Letter R with Fishhook
218
+ noback lowercase ꞗ 4-12 # Latin Letter B with Flourish
219
+ noback lowercase ꬴ 4-15 # Latin Small Letter E with Flourish
220
+ noback lowercase ꝓ 4-1234 # Latin Letter P with Flourish
221
+
222
+ noback lowercase ì 4-24 # Latin Letter I with Grave
223
+ noback lowercase ǹ 4-1345 # Latin Letter N with Grave
224
+
225
+ noback lowercase ù 4-136 # Latin Letter U with Grave
226
+ noback lowercase ẁ 4-2456 # Latin Letter W with Grave
227
+ noback lowercase ỳ 4-13456 # Latin Letter Y with Grave
228
+ noback lowercase ꝉ 4-123 # Latin Letter L with High Stroke
229
+ noback lowercase ʋ 4-1236 # Latin Letter V with Hook
230
+ noback lowercase ƒ 4-124 # Latin Letter F with Hook
231
+ noback lowercase ả 4-1 # Latin Letter a with Hook Above
232
+ noback lowercase ẻ 4-15 # Latin Letter E with Hook Above
233
+ noback lowercase ỉ 4-24 # Latin Letter I with Hook Above
234
+ noback lowercase ỏ 4-135 # Latin Letter O with Hook Above
235
+ noback lowercase ủ 4-136 # Latin Letter U with Hook Above
236
+ noback lowercase ỷ 4-13456 # Latin Letter Y with Hook Above
237
+ noback lowercase ᶑ 4-145 # Latin Small Letter D with Hook and Tail
238
+ noback lowercase ɋ 4-12345 # Latin Small Letter Q with Hook Tail
239
+ noback lowercase ɓ 4-12 # Latin Letter B with Hook
240
+ noback lowercase ƈ 4-14 # Latin Letter C with Hook
241
+ noback lowercase ɗ 4-145 # Latin Letter D with Hook
242
+ noback lowercase ɠ 4-1245 # Latin Letter G with Hook
243
+ noback lowercase ɦ 4-125 # Latin Letter H with Hook
244
+ noback lowercase ƙ 4-13 # Latin Letter K with Hook
245
+ noback lowercase ɱ 4-134 # Latin Letter M with Hook
246
+ noback lowercase ƥ 4-1234 # Latin Letter P with Hook
247
+ noback lowercase ʠ 4-12345 # Latin Small Letter Q with Hook
248
+ noback lowercase ʂ 4-234 # Latin Small Letter S with Hook
249
+ noback lowercase ƭ 4-2345 # Latin Letter T with Hook
250
+ noback lowercase ⱳ 4-2456 # Latin Letter W with Hook
251
+ noback lowercase ƴ 4-13456 # Latin Letter Y with Hook
252
+ noback lowercase ȥ 4-1356 # Latin Letter Z with Hook
253
+ noback lowercase ớ 4-135 # Latin Letter O with Horn and Acute
254
+ noback lowercase ứ 4-136 # Latin Letter U with Horn and Acute
255
+ noback lowercase ợ 4-135 # Latin Letter O with Horn and Dot Below
256
+ noback lowercase ự 4-136 # Latin Letter U with Horn and Dot Below
257
+ noback lowercase ờ 4-135 # Latin Letter O with Horn and Grave
258
+ noback lowercase ừ 4-136 # Latin Letter U with Horn and Grave
259
+ noback lowercase ở 4-135 # Latin Letter O with Horn and Hook Above
260
+ noback lowercase ử 4-136 # Latin Letter U with Horn and Hook Above
261
+ noback lowercase ỡ 4-135 # Latin Letter O with Horn and Tilde
262
+ noback lowercase ữ 4-136 # Latin Letter U with Horn and Tilde
263
+ noback lowercase ơ 4-135 # Latin Letter O with Horn
264
+ noback lowercase ư 4-136 # Latin Letter U with Horn
265
+ noback lowercase ȃ 4-1 # Latin Letter a with Inverted Breve
266
+ noback lowercase ȇ 4-15 # Latin Letter E with Inverted Breve
267
+ noback lowercase ȋ 4-24 # Latin Letter I with Inverted Breve
268
+ noback lowercase ȏ 4-135 # Latin Letter O with Inverted Breve
269
+ noback lowercase ȓ 4-1235 # Latin Letter R with Inverted Breve
270
+ noback lowercase ȗ 4-136 # Latin Letter U with Inverted Breve
271
+ noback lowercase ꬷ 4-123 # Latin Small Letter L with Inverted Lazy S
272
+ noback lowercase ɲ 4-1345 # Latin Letter N with Left Hook
273
+ noback lowercase ꭒ 4-136 # Latin Small Letter U with Left Hook
274
+ noback lowercase ḇ 4-12 # Latin Letter B with Line Below
275
+ noback lowercase ḏ 4-145 # Latin Letter D with Line Below
276
+ noback lowercase ẖ 4-125 # Latin Small Letter H with Line Below
277
+ noback lowercase ḵ 4-13 # Latin Letter K with Line Below
278
+ noback lowercase ḻ 4-123 # Latin Letter L with Line Below
279
+ noback lowercase ṉ 4-1345 # Latin Letter N with Line Below
280
+ noback lowercase ṟ 4-1235 # Latin Letter R with Line Below
281
+ noback lowercase ṯ 4-2345 # Latin Letter T with Line Below
282
+ noback lowercase ẕ 4-1356 # Latin Letter Z with Line Below
283
+ noback lowercase ꭘ 4-1346 # Latin Small Letter X with Long Left Leg and Low Right Ring
284
+ noback lowercase ꭙ 4-1346 # Latin Small Letter X with Long Left Leg with Serif
285
+ noback lowercase ꭗ 4-1346 # Latin Small Letter X with Long Left Leg
286
+ noback lowercase ɼ 4-1235 # Latin Small Letter R with Long Leg
287
+ noback lowercase ƞ 1246 # Latin Letter N with Long Right Leg
288
+ noback lowercase ꝋ 4-135 # Latin Letter O with Long Stroke Overlay
289
+ noback lowercase ꝍ 4-135 # Latin Letter O with Loop
290
+ noback lowercase ỿ 4-13456 # Latin Letter Y with Loop
291
+ noback lowercase ꭖ 4-1346 # Latin Small Letter X with Low Right Ring
292
+ noback lowercase ⱺ 4-135 # Latin Small Letter O with Low Ring Inside
293
+ noback lowercase ḗ 4-15 # Latin Letter E with Macron and Acute
294
+ noback lowercase ṓ 4-135 # Latin Letter O with Macron and Acute
295
+ noback lowercase ṻ 4-136 # Latin Letter U with Macron and Diaeresis
296
+ noback lowercase ḕ 4-15 # Latin Letter E with Macron and Grave
297
+ noback lowercase ṑ 4-135 # Latin Letter O with Macron and Grave
298
+ noback lowercase ā 4-1 # Latin Letter a with Macron
299
+ noback lowercase ē 4-15 # Latin Letter E with Macron
300
+ noback lowercase ḡ 4-1245 # Latin Letter G with Macron
301
+ noback lowercase ī 4-24 # Latin Letter I with Macron
302
+ noback lowercase ō 4-135 # Latin Letter O with Macron
303
+ noback lowercase ū 4-136 # Latin Letter U with Macron
304
+ noback lowercase ȳ 4-13456 # Latin Letter Y with Macron
305
+ noback lowercase ŀ 4-123 # Latin Letter L with Middle Dot
306
+ noback lowercase ꬹ 4-123 # Latin Small Letter L with Middle Ring
307
+ noback lowercase ᵬ 4-135 # Latin Letter O with Middle Tilde : barred o o bar
308
+ noback lowercase ᵭ 4-145 # Latin Small Letter D with Middle Tilde
309
+ noback lowercase ᵮ 4-124 # Latin Small Letter F with Middle Tilde
310
+ noback lowercase ɫ 4-123 # Latin Letter L with Middle Tilde
311
+ noback lowercase ᵯ 4-134 # Latin Small Letter M with Middle Tilde
312
+ noback lowercase ᵰ 4-1345 # Latin Small Letter N with Middle Tilde
313
+ noback lowercase ᵱ 4-1234 # Latin Small Letter P with Middle Tilde
314
+ noback lowercase ᵲ 4-1235 # Latin Small Letter R with Middle Tilde
315
+ noback lowercase ᵴ 4-234 # Latin Small Letter S with Middle Tilde
316
+ noback lowercase ᵵ 4-2345 # Latin Small Letter T with Middle Tilde
317
+ noback lowercase ᵶ 4-1356 # Latin Small Letter Z with Middle Tilde
318
+ noback lowercase ⱸ 4-15 # Latin Small Letter E with Notch
319
+ noback lowercase ꞡ 4-1245 # Latin Letter G with Oblique Stroke
320
+ noback lowercase ꞣ 4-13 # Latin Letter K with Oblique Stroke
321
+ noback lowercase ꞥ 4-1345 # Latin Letter N with Oblique Stroke
322
+ noback lowercase ꞧ 4-1235 # Latin Letter R with Oblique Stroke
323
+ noback lowercase ꞩ 4-234 # Latin Letter S with Oblique Stroke
324
+ noback lowercase ǭ 4-135 # Latin Letter O with Ogonek and Macron
325
+ noback lowercase ą 4-1 # Latin Letter a with Ogonek
326
+ noback lowercase ę 4-15 # Latin Letter E with Ogonek
327
+ noback lowercase į 4-24 # Latin Letter I with Ogonek
328
+ noback lowercase ǫ 4-135 # Latin Letter O with Ogonek
329
+ noback lowercase ų 4-136 # Latin Letter U with Ogonek
330
+ noback lowercase ᶀ 4-12 # Latin Small Letter B with Palatal Hook
331
+ noback lowercase ꞔ 4-14 # Latin Small Letter C with Palatal Hook
332
+ noback lowercase ᶁ 4-145 # Latin Small Letter D with Palatal Hook
333
+ noback lowercase ᶂ 4-124 # Latin Small Letter F with Palatal Hook
334
+ noback lowercase ᶃ 4-1245 # Latin Small Letter G with Palatal Hook
335
+ noback lowercase ꞕ 4-125 # Latin Small Letter H with Palatal Hook
336
+ noback lowercase ᶄ 4-13 # Latin Small Letter K with Palatal Hook
337
+ noback lowercase ᶅ 4-123 # Latin Small Letter L with Palatal Hook
338
+ noback lowercase ᶆ 4-134 # Latin Small Letter M with Palatal Hook
339
+ noback lowercase ᶇ 4-1345 # Latin Small Letter N with Palatal Hook
340
+ noback lowercase ᶈ 4-1234 # Latin Small Letter P with Palatal Hook
341
+ noback lowercase ᶉ 4-1235 # Latin Small Letter R with Palatal Hook
342
+ noback lowercase ᶊ 4-234 # Latin Small Letter S with Palatal Hook
343
+ noback lowercase ƫ 4-2345 # Latin Small Letter T with Palatal Hook
344
+ noback lowercase ᶌ 4-1236 # Latin Small Letter V with Palatal Hook
345
+ noback lowercase ᶍ 4-1346 # Latin Small Letter X with Palatal Hook
346
+ noback lowercase ᶎ 4-1356 # Latin Small Letter Z with Palatal Hook
347
+ noback lowercase ꞎ 4-123 # Latin Small Letter L with Retroflex Hook and Belt
348
+ noback lowercase ᶏ 4-1 # Latin Small Letter a with Retroflex Hook
349
+ noback lowercase ᶒ 4-15 # Latin Small Letter E with Retroflex Hook
350
+ noback lowercase ᶖ 4-24 # Latin Small Letter I with Retroflex Hook
351
+ noback lowercase ɭ 4-123 # Latin Small Letter L with Retroflex Hook
352
+ noback lowercase ɳ 4-1345 # Latin Small Letter N with Retroflex Hook
353
+ noback lowercase ʈ 4-2345 # Latin Letter T with Retroflex Hook
354
+ noback lowercase ᶙ 4-136 # Latin Small Letter U with Retroflex Hook
355
+ noback lowercase ʐ 4-1356 # Latin Small Letter Z with Retroflex Hook
356
+ noback lowercase ẚ 4-1 # Latin Small Letter a with Right Half Ring
357
+ noback lowercase ⱱ 4-1236 # Latin Small Letter V with Right Hook
358
+ noback lowercase ǻ 4-1 # Latin Letter a with Ring Above and Acute
359
+ #uplow Å å 4-1 # Latin Letter a with Ring Above
360
+ noback sign ̊ 4 # Latin Letter Ring Above unicode U+030A
361
+ noback always e̊ 4-15 # Latin Letter e with Ring Above
362
+ noback lowercase ů 4-136 # Latin Letter U with Ring Above
363
+ noback lowercase ẘ 4-2456 # Latin Small Letter W with Ring Above
364
+ noback lowercase ẙ 4-13456 # Latin Small Letter Y with Ring Above
365
+ noback lowercase ḁ 4-1 # Latin Letter a with Ring Below
366
+ noback lowercase ꭎ 4-136 # Latin Small Letter U with Short Right Leg
367
+ noback lowercase ꭚ 4-13456 # Latin Small Letter Y with Short Right Leg
368
+ noback sign Lj 4-123 # Latin Capital Letter L with Small Letter J
369
+ noback sign Nj 4-1345 # Latin Capital Letter N with Small Letter J
370
+ noback sign Dz 4-145 # Latin Capital Letter D with Small Letter Z
371
+ noback lowercase ꝕ 4-1234 # Latin Letter P with Squirrel Tail
372
+ noback lowercase ƀ 4-12 # Latin Letter B with Stroke
373
+ noback lowercase ɨ 4-24 # Latin Letter I with Stroke : barred i i bar
374
+ noback lowercase ƶ 4-1356 # Latin Letter Z with Stroke
375
+ noback lowercase ł 4-123 # Latin Letter L with Stroke
376
+ #uplow Ø ø 4-135 # Latin Letter O with Stroke : o slash
377
+ noback lowercase ǿ 4-135 # Latin Letter O with Stroke and Acute
378
+ noback lowercase ꝅ 4-13 # Latin Letter K with Stroke and Diagonal Stroke
379
+ noback lowercase ꝑ 4-1234 # Latin Letter P with Stroke Through Descender
380
+ noback lowercase ꝗ 4-12345 # Latin Letter Q with Stroke Through Descender
381
+ noback lowercase ⱥ 4-1 # Latin Letter a with Stroke
382
+ noback lowercase ȼ 4-14 # Latin Letter C with Stroke
383
+ noback lowercase ɇ 4-15 # Latin Letter E with Stroke
384
+ noback lowercase ꞙ 4-124 # Latin Letter F with Stroke
385
+ noback lowercase ǥ 4-1245 # Latin Letter G with Stroke
386
+ noback lowercase ħ 4-125 # Latin Letter H with Stroke
387
+ noback lowercase ɉ 4-245 # Latin Letter J with Stroke
388
+ noback lowercase ꝁ 4-13 # Latin Letter K with Stroke
389
+ noback lowercase ᵽ 4-1234 # Latin Letter P with Stroke
390
+ noback lowercase ɍ 4-1235 # Latin Letter R with Stroke
391
+ noback lowercase ɏ 4-13456 # Latin Letter Y with Stroke
392
+ noback lowercase ȿ 4-234 # Latin Letter S with Swash Tail
393
+ noback lowercase ɀ 4-1356 # Latin Letter Z with Swash Tail
394
+ noback lowercase ɖ 4-145 # Latin Small Letter D with Tail : d retroflex hook
395
+ noback lowercase ɽ 4-1235 # Latin Letter R with Tail
396
+ noback lowercase ṍ 4-135 # Latin Letter O with Tilde and Acute
397
+ noback lowercase ṹ 4-136 # Latin Letter U with Tilde and Acute
398
+ noback lowercase ṏ 4-135 # Latin Letter O with Tilde and Diaeresis
399
+ noback lowercase ȭ 4-135 # Latin Letter O with Tilde and Macron
400
+ noback lowercase ḛ 4-15 # Latin Letter E with Tilde Below
401
+ noback lowercase ḭ 4-24 # Latin Letter I with Tilde Below
402
+ noback lowercase ṵ 4-136 # Latin Letter U with Tilde Below
403
+ noback lowercase ã 4-1 # Latin Letter a with Tilde
404
+ noback lowercase ẽ 4-15 # Latin Letter E with Tilde
405
+ noback lowercase ĩ 4-24 # Latin Letter I with Tilde
406
+ noback lowercase ñ 4-1345 # Latin Letter N with Tilde
407
+ noback lowercase õ 4-135 # Latin Letter O with Tilde
408
+ noback lowercase ũ 4-136 # Latin Letter U with Tilde
409
+ noback lowercase ṽ 4-1236 # Latin Letter V with Tilde
410
+ noback lowercase ỹ 4-13456 # Latin Letter Y with Tilde
411
+ noback lowercase ƃ 4-12 # Latin Letter B with Topbar
412
+ noback lowercase ƌ 4-145 # Latin Letter D with Topbar
413
+ noback lowercase ᷲ 4-1 # Combining Latin Small Letter a with Diaeresis
414
+ noback lowercase ᷬ 4-123 # Combining Latin Small Letter L with Double Middle Tilde
415
+ noback lowercase ᷳ 4-135 # Combining Latin Small Letter O with Diaeresis
416
+ noback lowercase ᷭ 4-135 # Combining Latin Small Letter O with Light Centralization Stroke
417
+ noback lowercase ᷴ 4-136 # Combining Latin Small Letter U with Diaeresis
418
+ noback lowercase ᷰ 4-136 # Combining Latin Small Letter U with Light Centralization Stroke
419
+ noback lowercase ǽ 4-345 # Latin Letter Ae with Acute
420
+ noback lowercase ǣ 4-345 # Latin Letter Ae with Macron
421
+ noback lowercase ꜿ 4-14 # Latin Letter Reversed C with Dot
422
+ noback sign Ɋ 4-12345 # Latin Capital Small Letter Q with Hook Tail
423
+ noback sign ᵻ 4-24 # Latin Small Capital Letter I with Stroke
424
+ noback sign ᵾ 4-136 # Latin Small Capital Letter U with Stroke
425
+ noback lowercase ꬾ 4-246 # Latin Small Letter Blackletter O with Stroke
426
+ noback sign ʛ 4-1245 # Latin Small Letter Capital G with Hook
427
+ noback sign ᴌ 4-123 # Latin Small Letter Capital L with Stroke
428
+ noback sign ꭆ 4-1235 # Latin Small Letter Capital R with Right Leg
429
+ noback lowercase ʄ 4-245 # Latin Small Letter Dotless J with Stroke and Hook
430
+ noback lowercase ɟ 4-245 # Latin Small Letter Dotless J with Stroke
431
+ noback lowercase ꭊ 4-1235 # Latin Small Letter Double R with Crossed-Tail
432
+ noback lowercase ẜ 4-234 # Latin Small Letter Long S with Diagonal Stroke
433
+ noback lowercase ẛ 4-234 # Latin Small Letter Long S with Dot Above
434
+ noback lowercase ẝ 4-234 # Latin Small Letter Long S with High Stroke
435
+ noback lowercase ᶓ 4-15 # Latin Small Letter Open E with Retroflex Hook
436
+ noback lowercase ᶗ 4-135 # Latin Small Letter Open O with Retroflex Hook
437
+ noback lowercase ꬿ 4-135 # Latin Small Letter Open O with Stroke
438
+ noback lowercase ꭇ 4-1235 # Latin Small Letter R Without Handle
439
+ noback lowercase ɝ 4-15 # Latin Small Letter Reversed Open E with Hook
440
+ noback lowercase ᶔ 4-15 # Latin Small Letter Reversed Open E with Retroflex Hook
441
+ noback lowercase ɿ 4-1235 # Latin Small Letter Reversed R with Fishhook : long leg turned iota (a misnomer)
442
+ noback lowercase ꬶ 4-1245 # Latin Small Letter Script G with Crossed-Tail
443
+ noback lowercase ꭌ 4-1235 # Latin Small Letter Script R with Ring
444
+ noback lowercase ᴓ 4-135 # Latin Small Letter Sideways O with Stroke
445
+ noback lowercase ʯ 4-125 # Latin Small Letter Turned H with Fishhook and Tail
446
+ noback lowercase ʮ 4-125 # Latin Small Letter Turned H with Fishhook
447
+ noback lowercase ɰ 4-134 # Latin Small Letter Turned M with Long Leg
448
+ noback lowercase ꭄ 4-135 # Latin Small Letter Turned O Open-O with Stroke
449
+ noback lowercase ꭂ 4-246 # Latin Small Letter Turned Oe with Horizontal Stroke
450
+ noback lowercase ꭁ 4-246 # Latin Small Letter Turned Oe with Stroke
451
+ noback lowercase ɻ 4-1235 # Latin Small Letter Turned R with Hook
452
+ noback lowercase ɺ 4-1235 # Latin Small Letter Turned R with Long Leg
453
+ noback lowercase ⱹ 4-1235 # Latin Small Letter Turned R with Tail
454
+ noback lowercase ꭏ 4-136 # Latin Small Letter U Bar with Short Right Leg
455
+
456
+ # Uppercase letters
457
+ base uppercase Ć ć # Latin Letter C with Acute
458
+ base uppercase Ǵ ǵ # Latin Letter G with Acute
459
+ base uppercase Í í # Latin Letter I with Acute
460
+ base uppercase Ḱ ḱ # Latin Letter K with Acute
461
+ base uppercase Ĺ ĺ # Latin Letter L with Acute
462
+ base uppercase Ḿ ḿ # Latin Letter M with Acute
463
+ base uppercase Ń ń # Latin Letter N with Acute
464
+ base uppercase Ó ó # Latin Letter O with Acute
465
+ base uppercase Ṕ ṕ # Latin Letter P with Acute
466
+ base uppercase Ŕ ŕ # Latin Letter R with Acute
467
+ base uppercase Ś ś # Latin Letter S with Acute
468
+ base uppercase Ú ú # Latin Letter U with Acute
469
+ base uppercase Ẃ ẃ # Latin Letter W with Acute
470
+ base uppercase Ý ý # Latin Letter Y with Acute
471
+ base uppercase Ź ź # Latin Letter Z with Acute
472
+ base uppercase Ƚ ƚ # Latin Letter L with Bar
473
+ base uppercase Ꞓ ꞓ # Latin Letter C with Bar
474
+ base uppercase Ɬ ɬ # Latin Letter L with Belt
475
+ base uppercase Ắ ắ # Latin Letter a with Breve and Acute
476
+ base uppercase Ặ ặ # Latin Letter a with Breve and Dot Below
477
+ base uppercase Ằ ằ # Latin Letter a with Breve and Grave
478
+ base uppercase Ẳ ẳ # Latin Letter a with Breve and Hook Above
479
+ base uppercase Ẵ ẵ # Latin Letter a with Breve and Tilde
480
+ base uppercase Ḫ ḫ # Latin Letter H with Breve Below
481
+ base uppercase Ă ă # Latin Letter a with Breve
482
+ base uppercase Ĕ ĕ # Latin Letter E with Breve
483
+ base uppercase Ğ ğ # Latin Letter G with Breve
484
+ base uppercase Ĭ ĭ # Latin Letter I with Breve
485
+ base uppercase Ŏ ŏ # Latin Letter O with Breve
486
+ base uppercase Ŭ ŭ # Latin Letter U with Breve
487
+ base uppercase Ṧ ṧ # Latin Letter S with Caron and Dot Above
488
+ base uppercase Ǎ ǎ # Latin Letter a with Caron
489
+ base uppercase Ď ď # Latin Letter D with Caron
490
+ base uppercase Ě ě # Latin Letter E with Caron
491
+ base uppercase Ǧ ǧ # Latin Letter G with Caron
492
+ base uppercase Ȟ ȟ # Latin Letter H with Caron
493
+ base uppercase Ǐ ǐ # Latin Letter I with Caron
494
+ base uppercase Ǩ ǩ # Latin Letter K with Caron
495
+ base uppercase Ľ ľ # Latin Letter L with Caron
496
+ base uppercase Ň ň # Latin Letter N with Caron
497
+ base uppercase Ǒ ǒ # Latin Letter O with Caron
498
+ base uppercase Ř ř # Latin Letter R with Caron
499
+ base uppercase Ť ť # Latin Letter T with Caron
500
+ base uppercase Ǔ ǔ # Latin Letter U with Caron
501
+ base uppercase Ḉ ḉ # Latin Letter C with Cedilla and Acute
502
+ base uppercase Ḝ ḝ # Latin Letter E with Cedilla and Breve
503
+ base uppercase Ḑ ḑ # Latin Letter D with Cedilla
504
+ base uppercase Ȩ ȩ # Latin Letter E with Cedilla
505
+ base uppercase Ģ ģ # Latin Letter G with Cedilla
506
+ base uppercase Ḩ ḩ # Latin Letter H with Cedilla
507
+ base uppercase Ķ ķ # Latin Letter K with Cedilla
508
+ base uppercase Ļ ļ # Latin Letter L with Cedilla
509
+ base uppercase Ņ ņ # Latin Letter N with Cedilla
510
+ base uppercase Ŗ ŗ # Latin Letter R with Cedilla
511
+ base uppercase Ş ş # Latin Letter S with Cedilla
512
+ base uppercase Ţ ţ # Latin Letter T with Cedilla
513
+ base uppercase Ấ ấ # Latin Letter a with Circumflex and Acute
514
+ base uppercase Ế ế # Latin Letter E with Circumflex and Acute
515
+ base uppercase Ố ố # Latin Letter O with Circumflex and Acute
516
+ base uppercase Ậ ậ # Latin Letter a with Circumflex and Dot Below
517
+ base uppercase Ệ ệ # Latin Letter E with Circumflex and Dot Below
518
+ base uppercase Ộ ộ # Latin Letter O with Circumflex and Dot Below
519
+ base uppercase Ầ ầ # Latin Letter a with Circumflex and Grave
520
+ base uppercase Ề ề # Latin Letter E with Circumflex and Grave
521
+ base uppercase Ồ ồ # Latin Letter O with Circumflex and Grave
522
+ base uppercase Ẩ ẩ # Latin Letter a with Circumflex and Hook Above
523
+ base uppercase Ể ể # Latin Letter E with Circumflex and Hook Above
524
+ base uppercase Ổ ổ # Latin Letter O with Circumflex and Hook Above
525
+ base uppercase Ẫ ẫ # Latin Letter a with Circumflex and Tilde
526
+ base uppercase Ễ ễ # Latin Letter E with Circumflex and Tilde
527
+ base uppercase Ỗ ỗ # Latin Letter O with Circumflex and Tilde
528
+ base uppercase Ḓ ḓ # Latin Letter D with Circumflex Below
529
+ base uppercase Ḙ ḙ # Latin Letter E with Circumflex Below
530
+ base uppercase Ḽ ḽ # Latin Letter L with Circumflex Below
531
+ base uppercase Ṋ ṋ # Latin Letter N with Circumflex Below
532
+ base uppercase Ṱ ṱ # Latin Letter T with Circumflex Below
533
+ base uppercase Ṷ ṷ # Latin Letter U with Circumflex Below
534
+ base uppercase  â # Latin Letter a with Circumflex
535
+ base uppercase Ĉ ĉ # Latin Letter C with Circumflex
536
+ base uppercase Ĝ ĝ # Latin Letter G with Circumflex
537
+ base uppercase Ĥ ĥ # Latin Letter H with Circumflex
538
+ base uppercase Î î # Latin Letter I with Circumflex
539
+ base uppercase Ĵ ĵ # Latin Letter J with Circumflex
540
+ base uppercase Ô ô # Latin Letter O with Circumflex
541
+ base uppercase Ŝ ŝ # Latin Letter S with Circumflex
542
+ base uppercase Û û # Latin Letter U with Circumflex
543
+ base uppercase Ŵ ŵ # Latin Letter W with Circumflex
544
+ base uppercase Ŷ ŷ # Latin Letter Y with Circumflex
545
+ base uppercase Ẑ ẑ # Latin Letter Z with Circumflex
546
+ base uppercase Ș ș # Latin Letter S with Comma Below
547
+ base uppercase Ț ț # Latin Letter T with Comma Below
548
+ base uppercase Ⱨ ⱨ # Latin Letter H with Descender
549
+ base uppercase Ⱪ ⱪ # Latin Letter K with Descender
550
+ base uppercase Ꞑ ꞑ # Latin Letter N with Descender
551
+ base uppercase Ⱬ ⱬ # Latin Letter Z with Descender
552
+ base uppercase Ḯ ḯ # Latin Letter I with Diaeresis and Acute
553
+ base uppercase Ǘ ǘ # Latin Letter U with Diaeresis and Acute
554
+ base uppercase Ǚ ǚ # Latin Letter U with Diaeresis and Caron
555
+ base uppercase Ǜ ǜ # Latin Letter U with Diaeresis and Grave
556
+ base uppercase Ǟ ǟ # Latin Letter a with Diaeresis and Macron
557
+ base uppercase Ȫ ȫ # Latin Letter O with Diaeresis and Macron
558
+ base uppercase Ǖ ǖ # Latin Letter U with Diaeresis and Macron
559
+ base uppercase Ṳ ṳ # Latin Letter U with Diaeresis Below
560
+ base uppercase Ë ë # Latin Letter E with Diaeresis
561
+ base uppercase Ḧ ḧ # Latin Letter H with Diaeresis
562
+ base uppercase Ẅ ẅ # Latin Letter W with Diaeresis
563
+ base uppercase Ẍ ẍ # Latin Letter X with Diaeresis
564
+ base uppercase Ÿ ÿ # Latin Letter Y with Diaeresis
565
+ base uppercase Ꝃ ꝃ # Latin Letter K with Diagonal Stroke
566
+ base uppercase Ꝙ ꝙ # Latin Letter Q with Diagonal Stroke
567
+ base uppercase Ⱦ ⱦ # Latin Letter T with Diagonal Stroke
568
+ base uppercase Ꝟ ꝟ # Latin Letter V with Diagonal Stroke
569
+ base uppercase Ǡ ǡ # Latin Letter a with Dot Above and Macron
570
+ base uppercase Ȱ ȱ # Latin Letter O with Dot Above and Macron
571
+ base uppercase Ȧ ȧ # Latin Letter a with Dot Above
572
+ base uppercase Ḃ ḃ # Latin Letter B with Dot Above
573
+ base uppercase Ċ ċ # Latin Letter C with Dot Above
574
+ base uppercase Ḋ ḋ # Latin Letter D with Dot Above
575
+ base uppercase Ė ė # Latin Letter E with Dot Above
576
+ base uppercase Ḟ ḟ # Latin Letter F with Dot Above
577
+ base uppercase Ġ ġ # Latin Letter G with Dot Above
578
+ base uppercase Ḣ ḣ # Latin Letter H with Dot Above
579
+ base uppercase Ṁ ṁ # Latin Letter M with Dot Above
580
+ base uppercase Ṅ ṅ # Latin Letter N with Dot Above
581
+ base uppercase Ȯ ȯ # Latin Letter O with Dot Above
582
+ base uppercase Ṗ ṗ # Latin Letter P with Dot Above
583
+ base uppercase Ṙ ṙ # Latin Letter R with Dot Above
584
+ base uppercase Ṡ ṡ # Latin Letter S with Dot Above
585
+ base uppercase Ṫ ṫ # Latin Letter T with Dot Above
586
+ base uppercase Ẇ ẇ # Latin Letter W with Dot Above
587
+ base uppercase Ẋ ẋ # Latin Letter X with Dot Above
588
+ base uppercase Ẏ ẏ # Latin Letter Y with Dot Above
589
+ base uppercase Ż ż # Latin Letter Z with Dot Above
590
+ base uppercase Ṩ ṩ # Latin Letter S with Dot Below and Dot Above
591
+ base uppercase Ḹ ḹ # Latin Letter L with Dot Below and Macron
592
+ base uppercase Ṝ ṝ # Latin Letter R with Dot Below and Macron
593
+ base uppercase Ạ ạ # Latin Letter a with Dot Below
594
+ base uppercase Ḅ ḅ # Latin Letter B with Dot Below
595
+ base uppercase Ḍ ḍ # Latin Letter D with Dot Below
596
+ base uppercase Ẹ ẹ # Latin Letter E with Dot Below
597
+ base uppercase Ḥ ḥ # Latin Letter H with Dot Below
598
+ base uppercase Ị ị # Latin Letter I with Dot Below
599
+ base uppercase Ḳ ḳ # Latin Letter K with Dot Below
600
+ base uppercase Ḷ ḷ # Latin Letter L with Dot Below
601
+ base uppercase Ṃ ṃ # Latin Letter M with Dot Below
602
+ base uppercase Ṇ ṇ # Latin Letter N with Dot Below
603
+ base uppercase Ọ ọ # Latin Letter O with Dot Below
604
+ base uppercase Ṛ ṛ # Latin Letter R with Dot Below
605
+ base uppercase Ṣ ṣ # Latin Letter S with Dot Below
606
+ base uppercase Ṭ ṭ # Latin Letter T with Dot Below
607
+ base uppercase Ụ ụ # Latin Letter U with Dot Below
608
+ base uppercase Ṿ ṿ # Latin Letter V with Dot Below
609
+ base uppercase Ẉ ẉ # Latin Letter W with Dot Below
610
+ base uppercase Ỵ ỵ # Latin Letter Y with Dot Below
611
+ base uppercase Ẓ ẓ # Latin Letter Z with Dot Below
612
+ base uppercase Ő ő # Latin Letter O with Double Acute
613
+ base uppercase Ű ű # Latin Letter U with Double Acute
614
+ base uppercase Ⱡ ⱡ # Latin Letter L with Double Bar
615
+ base uppercase Ȁ ȁ # Latin Letter a with Double Grave
616
+ base uppercase Ȅ ȅ # Latin Letter E with Double Grave
617
+ base uppercase Ȉ ȉ # Latin Letter I with Double Grave
618
+ base uppercase Ȍ ȍ # Latin Letter O with Double Grave
619
+ base uppercase Ȑ ȑ # Latin Letter R with Double Grave
620
+ base uppercase Ȕ ȕ # Latin Letter U with Double Grave
621
+ base uppercase Ꞗ ꞗ # Latin Letter B with Flourish
622
+ base uppercase Ꝓ ꝓ # Latin Letter P with Flourish
623
+ base uppercase Ì ì # Latin Letter I with Grave
624
+ base uppercase Ǹ ǹ # Latin Letter N with Grave
625
+ base uppercase Ù ù # Latin Letter U with Grave
626
+ base uppercase Ẁ ẁ # Latin Letter W with Grave
627
+ base uppercase Ỳ ỳ # Latin Letter Y with Grave
628
+ base uppercase Ꝉ ꝉ # Latin Letter L with High Stroke
629
+ base uppercase Ʋ ʋ # Latin Letter V with Hook
630
+ base uppercase Ƒ ƒ # Latin Letter F with Hook
631
+ base uppercase Ả ả # Latin Letter a with Hook Above
632
+ base uppercase Ẻ ẻ # Latin Letter E with Hook Above
633
+ base uppercase Ỉ ỉ # Latin Letter I with Hook Above
634
+ base uppercase Ỏ ỏ # Latin Letter O with Hook Above
635
+ base uppercase Ủ ủ # Latin Letter U with Hook Above
636
+ base uppercase Ỷ ỷ # Latin Letter Y with Hook Above
637
+ base uppercase Ɓ ɓ # Latin Letter B with Hook
638
+ base uppercase Ƈ ƈ # Latin Letter C with Hook
639
+ base uppercase Ɗ ɗ # Latin Letter D with Hook
640
+ base uppercase Ɠ ɠ # Latin Letter G with Hook
641
+ base uppercase Ɦ ɦ # Latin Letter H with Hook
642
+ base uppercase Ƙ ƙ # Latin Letter K with Hook
643
+ base uppercase Ɱ ɱ # Latin Letter M with Hook
644
+ base uppercase Ƥ ƥ # Latin Letter P with Hook
645
+ base uppercase Ƭ ƭ # Latin Letter T with Hook
646
+ base uppercase Ⱳ ⱳ # Latin Letter W with Hook
647
+ base uppercase Ƴ ƴ # Latin Letter Y with Hook
648
+ base uppercase Ȥ ȥ # Latin Letter Z with Hook
649
+ base uppercase Ớ ớ # Latin Letter O with Horn and Acute
650
+ base uppercase Ứ ứ # Latin Letter U with Horn and Acute
651
+ base uppercase Ợ ợ # Latin Letter O with Horn and Dot Below
652
+ base uppercase Ự ự # Latin Letter U with Horn and Dot Below
653
+ base uppercase Ờ ờ # Latin Letter O with Horn and Grave
654
+ base uppercase Ừ ừ # Latin Letter U with Horn and Grave
655
+ base uppercase Ở ở # Latin Letter O with Horn and Hook Above
656
+ base uppercase Ử ử # Latin Letter U with Horn and Hook Above
657
+ base uppercase Ỡ ỡ # Latin Letter O with Horn and Tilde
658
+ base uppercase Ữ ữ # Latin Letter U with Horn and Tilde
659
+ base uppercase Ơ ơ # Latin Letter O with Horn
660
+ base uppercase Ư ư # Latin Letter U with Horn
661
+ base uppercase Ȃ ȃ # Latin Letter a with Inverted Breve
662
+ base uppercase Ȇ ȇ # Latin Letter E with Inverted Breve
663
+ base uppercase Ȋ ȋ # Latin Letter I with Inverted Breve
664
+ base uppercase Ȏ ȏ # Latin Letter O with Inverted Breve
665
+ base uppercase Ȓ ȓ # Latin Letter R with Inverted Breve
666
+ base uppercase Ȗ ȗ # Latin Letter U with Inverted Breve
667
+ base uppercase Ɲ ɲ # Latin Letter N with Left Hook
668
+ base uppercase Ḇ ḇ # Latin Letter B with Line Below
669
+ base uppercase Ḏ ḏ # Latin Letter D with Line Below
670
+ base uppercase Ḵ ḵ # Latin Letter K with Line Below
671
+ base uppercase Ḻ ḻ # Latin Letter L with Line Below
672
+ base uppercase Ṉ ṉ # Latin Letter N with Line Below
673
+ base uppercase Ṟ ṟ # Latin Letter R with Line Below
674
+ base uppercase Ṯ ṯ # Latin Letter T with Line Below
675
+ base uppercase Ẕ ẕ # Latin Letter Z with Line Below
676
+ base uppercase Ƞ ƞ # Latin Letter N with Long Right Leg
677
+ base uppercase Ꝋ ꝋ # Latin Letter O with Long Stroke Overlay
678
+ base uppercase Ꝍ ꝍ # Latin Letter O with Loop
679
+ base uppercase Ỿ ỿ # Latin Letter Y with Loop
680
+ base uppercase Ḗ ḗ # Latin Letter E with Macron and Acute
681
+ base uppercase Ṓ ṓ # Latin Letter O with Macron and Acute
682
+ base uppercase Ṻ ṻ # Latin Letter U with Macron and Diaeresis
683
+ base uppercase Ḕ ḕ # Latin Letter E with Macron and Grave
684
+ base uppercase Ṑ ṑ # Latin Letter O with Macron and Grave
685
+ base uppercase Ā ā # Latin Letter a with Macron
686
+ base uppercase Ē ē # Latin Letter E with Macron
687
+ base uppercase Ḡ ḡ # Latin Letter G with Macron
688
+ base uppercase Ī ī # Latin Letter I with Macron
689
+ base uppercase Ō ō # Latin Letter O with Macron
690
+ base uppercase Ū ū # Latin Letter U with Macron
691
+ base uppercase Ȳ ȳ # Latin Letter Y with Macron
692
+ base uppercase Ŀ ŀ # Latin Letter L with Middle Dot
693
+ base uppercase Ɵ ᵬ # Latin Letter O with Middle Tilde : barred o o bar
694
+ base uppercase Ɫ ɫ # Latin Letter L with Middle Tilde
695
+ base uppercase Ꞡ ꞡ # Latin Letter G with Oblique Stroke
696
+ base uppercase Ꞣ ꞣ # Latin Letter K with Oblique Stroke
697
+ base uppercase Ꞥ ꞥ # Latin Letter N with Oblique Stroke
698
+ base uppercase Ꞧ ꞧ # Latin Letter R with Oblique Stroke
699
+ base uppercase Ꞩ ꞩ # Latin Letter S with Oblique Stroke
700
+ base uppercase Ǭ ǭ # Latin Letter O with Ogonek and Macron
701
+ base uppercase Ą ą # Latin Letter a with Ogonek
702
+ base uppercase Ę ę # Latin Letter E with Ogonek
703
+ base uppercase Į į # Latin Letter I with Ogonek
704
+ base uppercase Ǫ ǫ # Latin Letter O with Ogonek
705
+ base uppercase Ų ų # Latin Letter U with Ogonek
706
+ base uppercase Ʈ ʈ # Latin Letter T with Retroflex Hook
707
+ base uppercase Ǻ ǻ # Latin Letter a with Ring Above and Acute
708
+ base uppercase Ů ů # Latin Letter U with Ring Above
709
+ base uppercase Ḁ ḁ # Latin Letter a with Ring Below
710
+ base uppercase Ꝕ ꝕ # Latin Letter P with Squirrel Tail
711
+ base uppercase Ƀ ƀ # Latin Letter B with Stroke
712
+ base uppercase Ɨ ɨ # Latin Letter I with Stroke : barred i i bar
713
+ base uppercase Ƶ ƶ # Latin Letter Z with Stroke
714
+ base uppercase Ł ł # Latin Letter L with Stroke
715
+ base uppercase Ǿ ǿ # Latin Letter O with Stroke and Acute
716
+ base uppercase Ꝅ ꝅ # Latin Letter K with Stroke and Diagonal Stroke
717
+ base uppercase Ꝑ ꝑ # Latin Letter P with Stroke Through Descender
718
+ base uppercase Ꝗ ꝗ # Latin Letter Q with Stroke Through Descender
719
+ base uppercase Ⱥ ⱥ # Latin Letter a with Stroke
720
+ base uppercase Ȼ ȼ # Latin Letter C with Stroke
721
+ base uppercase Ɇ ɇ # Latin Letter E with Stroke
722
+ base uppercase Ꞙ ꞙ # Latin Letter F with Stroke
723
+ base uppercase Ǥ ǥ # Latin Letter G with Stroke
724
+ base uppercase Ħ ħ # Latin Letter H with Stroke
725
+ base uppercase Ɉ ɉ # Latin Letter J with Stroke
726
+ base uppercase Ꝁ ꝁ # Latin Letter K with Stroke
727
+ base uppercase Ᵽ ᵽ # Latin Letter P with Stroke
728
+ base uppercase Ɍ ɍ # Latin Letter R with Stroke
729
+ base uppercase Ɏ ɏ # Latin Letter Y with Stroke
730
+ base uppercase Ȿ ȿ # Latin Letter S with Swash Tail
731
+ base uppercase Ɀ ɀ # Latin Letter Z with Swash Tail
732
+ base uppercase Ɽ ɽ # Latin Letter R with Tail
733
+ base uppercase Ṍ ṍ # Latin Letter O with Tilde and Acute
734
+ base uppercase Ṹ ṹ # Latin Letter U with Tilde and Acute
735
+ base uppercase Ṏ ṏ # Latin Letter O with Tilde and Diaeresis
736
+ base uppercase Ȭ ȭ # Latin Letter O with Tilde and Macron
737
+ base uppercase Ḛ ḛ # Latin Letter E with Tilde Below
738
+ base uppercase Ḭ ḭ # Latin Letter I with Tilde Below
739
+ base uppercase Ṵ ṵ # Latin Letter U with Tilde Below
740
+ base uppercase à ã # Latin Letter a with Tilde
741
+ base uppercase Ẽ ẽ # Latin Letter E with Tilde
742
+ base uppercase Ĩ ĩ # Latin Letter I with Tilde
743
+ base uppercase Ñ ñ # Latin Letter N with Tilde
744
+ base uppercase Õ õ # Latin Letter O with Tilde
745
+ base uppercase Ũ ũ # Latin Letter U with Tilde
746
+ base uppercase Ṽ ṽ # Latin Letter V with Tilde
747
+ base uppercase Ỹ ỹ # Latin Letter Y with Tilde
748
+ base uppercase Ƃ ƃ # Latin Letter B with Topbar
749
+ base uppercase Ƌ ƌ # Latin Letter D with Topbar
750
+ base uppercase Ǽ ǽ # Latin Letter Ae with Acute
751
+ base uppercase Ǣ ǣ # Latin Letter Ae with Macron
752
+ base uppercase Ꜿ ꜿ # Latin Letter Reversed C with Dot
753
+
754
+ # classes commented out due to "character class table overflow" error
755
+ #attribute diacritics_acute ÁáÉéÍíÓóÚúÝýĆćĹĺŃńŔŕŚśŹźǴǵǼǽḰḱḾḿṔṕẂẃ
756
+ #attribute diacritics_acuteanddotabove Ṥṥ
757
+ #attribute diacritics_bar Ƚꞓ
758
+ #attribute diacritics_barbarredl ƚ
759
+ #attribute diacritics_barcambriansymbol Ꞓ
760
+ #attribute diacritics_belt ɬꞭ
761
+ #attribute diacritics_breve ĂăĔĕĞğĬĭŎŏŬŭ
762
+ #attribute diacritics_breveandacute Ắắ
763
+ #attribute diacritics_breveanddotbelow Ặặ
764
+ #attribute diacritics_breveandgrave Ằằ
765
+ #attribute diacritics_breveandhookabove Ẳẳ
766
+ #attribute diacritics_breveandtilde Ẵẵ
767
+ #attribute diacritics_brevebelow Ḫḫ
768
+ #attribute diacritics_caron ČčĎďĚ켾ŇňŘřŠšŤťŽžǍǎǏǐǑǒǓǔǦǧǨǩǰȞȟ
769
+ #attribute diacritics_caronanddotabove Ṧṧ
770
+ #attribute diacritics_cedilla ÇçĢģĶķĻļŅņŖŗŞşŢţȨȩḐḑḨḩ
771
+ #attribute diacritics_cedillaandacute ḈḉḜḝ
772
+ #attribute diacritics_circumflex ÂâÊêÎîÔôÛûĈĉĜĝĤĥĴĵŜŝŴŵŶŷẐẑ
773
+ #attribute diacritics_circumflexandacute ẤấẾếỐố
774
+ #attribute diacritics_circumflexanddotbelow ẬậỆệỘộ
775
+ #attribute diacritics_circumflexandgrave ẦầỀềỒồ
776
+ #attribute diacritics_circumflexandhookabove ẨẩỂểỔổ
777
+ #attribute diacritics_circumflexandtilde ẪẫỄễỖỗ
778
+ #attribute diacritics_circumflexbelow ḒḓḘḙḼḽṊṋṰṱṶṷ
779
+ #attribute diacritics_commabelow ȘșȚț
780
+ #attribute diacritics_crossedtail ʝꬶꬺꬻꭉꭊ
781
+ #attribute diacritics_curl ȡȴȵȶɕʑⱴ
782
+ #attribute diacritics_descender ⱧⱨⱩⱪⱫⱬꞐꞑ
783
+ #attribute diacritics_diaeresis ÄäËëÏïÖöÜüŸÿᷲᷳᷴḦḧẄẅẌẍẗ
784
+ #attribute diacritics_diaeresisandacute ǗǘḮḯ
785
+ #attribute diacritics_diaeresisandcaron Ǚǚ
786
+ #attribute diacritics_diaeresisandgrave Ǜǜ
787
+ #attribute diacritics_diaeresisandmacron ǕǖǞǟȪȫ
788
+ #attribute diacritics_diaeresisbelow Ṳṳ
789
+ #attribute diacritics_diagonalstroke ẜȾⱦꝂꝃꝘꝙꝞꝟ
790
+ #attribute diacritics_dot Ꜿꜿ
791
+ #attribute diacritics_dotabove ĊċĖėĠġŻżȦȧȮȯḂḃḊḋḞḟḢḣṀṁṄṅṖṗṘṙṠṡṪṫẆẇẊẋẎẏẛ
792
+ #attribute diacritics_dotaboveandmacron ǠǡȰȱ
793
+ #attribute diacritics_dotaboveidot İ
794
+ #attribute diacritics_dotbelow ḄḅḌḍḤḥḲḳḶḷṂṃṆṇṚṛṢṣṬṭṾṿẈẉẒẓẠạẸẹỊịỌọỤụỴỵ
795
+ #attribute diacritics_dotbelowanddotabove Ṩṩ
796
+ #attribute diacritics_dotbelowandmacron ḸḹṜṝ
797
+ #attribute diacritics_doubleacute ŐőŰű
798
+ #attribute diacritics_doublebar Ⱡⱡ
799
+ #attribute diacritics_doublegrave ȀȁȄȅȈȉȌȍȐȑȔȕ
800
+ #attribute diacritics_doublemiddletilde ᷬꬸ
801
+ #attribute diacritics_fishhook ɾʮ
802
+ #attribute diacritics_flourish ꝒꝓꞖꞗꬴ
803
+ #attribute diacritics_grave ÀàÈèÌìÒòÙùǸǹẀẁỲỳ
804
+ #attribute diacritics_highstroke ẝꝈꝉ
805
+ #attribute diacritics_hook ƇƈƑƘƙƤƥƬƭƳƴȤȥƁɓƊɗɝƓɠꞪɦⱮɱɻʂʛʠⱲⱳ
806
+ #attribute diacritics_hookabove ẢảẺẻỈỉỎỏỦủỶỷ
807
+ #attribute diacritics_hooktail ɋɊ
808
+ #attribute diacritics_horn ƠơƯư
809
+ #attribute diacritics_hornandacute ỚớỨứ
810
+ #attribute diacritics_hornanddotbelow ỢợỰự
811
+ #attribute diacritics_hornandgrave ỜờỪừ
812
+ #attribute diacritics_hornandhookabove ỞởỬử
813
+ #attribute diacritics_hornandtilde ỠỡỮữ
814
+ #attribute diacritics_invertedbreve ȂȃȆȇȊȋȎȏȒȓȖȗ
815
+ #attribute diacritics_lefthook Ɲɲꭒ
816
+ #attribute diacritics_lightcentralizationstroke ᷭᷰ
817
+ #attribute diacritics_linebelow ḆḇḎḏḴḵḺḻṈṉṞṟṮṯẔẕẖ
818
+ #attribute diacritics_longleg ɰɺɼ
819
+ #attribute diacritics_longrightleg Ƞƞ
820
+ #attribute diacritics_longstrokeoverlay Ꝋꝋ
821
+ #attribute diacritics_loop ỾỿꝌꝍ
822
+ #attribute diacritics_macron ĀāĒēĪīŌōŪūǢǣȲȳḠḡ
823
+ #attribute diacritics_macronandacute ḖḗṒṓ
824
+ #attribute diacritics_macronanddiaeresis Ṻṻ
825
+ #attribute diacritics_macronandgrave ḔḕṐṑ
826
+ #attribute diacritics_middledot Ŀŀ
827
+ #attribute diacritics_middletilde Ɫɫᵭᵮᵯᵰᵱᵲᵴᵵᵶ
828
+ #attribute diacritics_middletildebarredoobar Ɵᵬ
829
+ #attribute diacritics_obliquestroke ꞠꞡꞢꞣꞤꞥꞦꞧꞨꞩ
830
+ #attribute diacritics_ogonek ĄąĘęĮįŲųǪǫ
831
+ #attribute diacritics_ogonekandmacron Ǭǭ
832
+ #attribute diacritics_palatalhook ƫᶀᶁᶂᶃᶄᶅᶆᶇᶈᶉᶊᶌᶍᶎꞔꞕ
833
+ #attribute diacritics_retroflexhook ɭɳƮʈʐᶏᶒᶓᶔᶖᶗᶙ
834
+ #attribute diacritics_ringabove ÅåŮůẘẙ
835
+ #attribute diacritics_ringaboveandacute Ǻǻ
836
+ #attribute diacritics_ringbelow Ḁḁ
837
+ #attribute diacritics_shortrightleg ꭎꭏꭚ
838
+ #attribute diacritics_squirreltail Ꝕꝕ
839
+ #attribute diacritics_stroke ĐđĦħłŦŧƀƵǤǥȻȼɆɇɈɉɌɍɎɏɟᴌᴓᵻⱣᵽᵾȺⱥꝀꝁꞘꞙꬾꬿꭁꭄ
840
+ #attribute diacritics_strokeandacute Ǿǿ
841
+ #attribute diacritics_strokeanddiagonalstroke Ꝅꝅ
842
+ #attribute diacritics_strokebarrediibar Ɨɨ
843
+ #attribute diacritics_strokeoslash Øø
844
+ #attribute diacritics_strokethroughdescender ꝐꝑꝖꝗ
845
+ #attribute diacritics_swashtail ⱾȿⱿɀ
846
+ #attribute diacritics_tail Ɽɽⱹ
847
+ #attribute diacritics_tilde ÃãÑñÕõĨĩŨũṼṽẼẽỸỹ
848
+ #attribute diacritics_tildeandacute ṌṍṸṹ
849
+ #attribute diacritics_tildeanddiaeresis Ṏṏ
850
+ #attribute diacritics_tildeandmacron Ȭȭ
851
+ #attribute diacritics_tildebelow ḚḛḬḭṴṵ
852
+ #attribute diacritics_topbar ƂƃƋƌ