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,1312 @@
1
+ # liblouis: Portuguese Grade 1 Braille Table
2
+ # Originally created by Leon Ungier (of ViewPlus) <Leon.Ungier@ViewPlus.com>.
3
+ #
4
+ # Copyright (C) 2004-2008 ViewPlus Technologies, Inc. <www.viewplus.com>
5
+ # Copyright (C) 2004-2006 JJB Software, Inc. <www.jjb-software.com>
6
+ # Copyright (C) 2008 Eitan Isaacson <eitan@ascender.com>
7
+ # Copyright (C) 2008 James Teh <jamie@jantrid.net>
8
+ # Copyright (C) 2009, 2016, 2018-2019 Christian Egli <christian.egli@sbs.ch>
9
+ # Copyright (C) 2012 Rui Batista <ruiandrebatista@gmail.com>
10
+ # Copyright (C) 2012-2013 Mesar Hameed <mesar.hameed@gmail.com>
11
+ # Copyright (C) 2016 Davy Kager <davykager@dedicon.nl>
12
+ # Copyright (C) 2017, 2019, 2021-2022 Bert Frees <bertfrees@gmail.com>
13
+ # Copyright (C) 2018, 2020 Bue Vester-Andersen <bue@vester-andersen.dk>
14
+ # Copyright (C) 2019 Dave Mielke <dave@mielke.cc>
15
+ # Copyright (C) 2025-2026 Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
16
+ #
17
+ #-copyright: 2004-2008, ViewPlus Technologies, Inc. <www.viewplus.com>
18
+ #-copyright: 2004-2006, JJB Software, Inc. <www.jjb-software.com>
19
+ #-copyright: 2008, Eitan Isaacson <eitan@ascender.com>
20
+ #-copyright: 2008, James Teh <jamie@jantrid.net>
21
+ #-copyright: 2009, 2016, 2018-2019, Christian Egli <christian.egli@sbs.ch>
22
+ #-copyright: 2012, Rui Batista <ruiandrebatista@gmail.com>
23
+ #-copyright: 2012-2013, Mesar Hameed <mesar.hameed@gmail.com>
24
+ #-copyright: 2016, Davy Kager <davykager@dedicon.nl>
25
+ #-copyright: 2017, 2019, 2021-2022, Bert Frees <bertfrees@gmail.com>
26
+ #-copyright: 2018, 2020, Bue Vester-Andersen <bue@vester-andersen.dk>
27
+ #-copyright: 2019, Dave Mielke <dave@mielke.cc>
28
+ #-copyright: 2025-2026, Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
29
+ #-license: LGPLv2.1
30
+ #
31
+ # This file is part of liblouis.
32
+ #
33
+ # liblouis is free software: you can redistribute it and/or modify it
34
+ # under the terms of the GNU Lesser General Public License as
35
+ # published by the Free Software Foundation, either version 2.1 of the
36
+ # License, or (at your option) any later version.
37
+ #
38
+ # liblouis is distributed in the hope that it will be useful, but
39
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
40
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41
+ # Lesser General Public License for more details.
42
+ #
43
+ # You should have received a copy of the GNU Lesser General Public
44
+ # License along with liblouis. If not, see
45
+ # <http://www.gnu.org/licenses/>.
46
+ #
47
+ #-index-name: Portuguese, uncontracted
48
+ #-display-name: Portuguese uncontracted braille
49
+ #-name: Tabela Braille de 6 pontos integral da língua portuguesa
50
+ #
51
+ #+language:pt
52
+ #+type:literary
53
+ #+contraction:no
54
+ #+grade:1
55
+ #+direction: both
56
+ #+unicode-range: ucs2
57
+ #-authority: Comissão Brasileira do Braille e Comissão de Braille de Portugal
58
+ #+version: 2002
59
+ #
60
+ #-maintainer: Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
61
+ #-author: Leon Ungier <Leon.Ungier@ViewPlus.com>
62
+ #-author: John J. Boyer <john.boyer@jjb-software.com>
63
+ #-author: Tiago Melo Casal <tcasal@intervox.nce.ufrj.br>
64
+ #-updated: 2026-08-28
65
+ #
66
+ # This table is mainly based on the official Portuguese grade 1 braille code;
67
+ # Defines accented letters, punctuation marks, some math symbols,
68
+ # 6-dot computer braille characters, Greek, Russian and Hebrew alphabets, etc.
69
+ #
70
+ # For the omissions in the official documentation, they were solved
71
+ # using approximate character definitions of this table itself and
72
+ # resources from other tables so that such gaps would not be left
73
+ # uncovered.
74
+ #
75
+ # Official Braille Code references:
76
+ #
77
+ # Grafia Braille para a Língua Portuguesa
78
+ # (Braille Writing for the Portuguese Language), 3rd edition, 2002, by
79
+ # Comissão de Braille (Braille Commission of Portugal).
80
+ # Available at:
81
+ # <https://www.inr.pt/documents/11309/308366/Grafia+Braille+para+a+L%C3%ADngua+Portuguesa+%283.%C2%AA+edi%C3%A7%C3%A3o%29.brf.zip/68fa4819-4e68-458f-b385-ccb0972d7b77>
82
+ #
83
+ # Grafia Braille para a Língua Portuguesa
84
+ # (Braille Writing for the Portuguese Language), 1st edition, 2002, by
85
+ # Comissão Brasileira do Braille (Brazilian Braille Commission).
86
+ # Cataloging-in-Publication data: BRASIL. Ministério da Educação.
87
+ # Grafia Braille para Língua Portuguesa / Secretaria de Educação
88
+ # Especial - Brasília: MEC ; SEESP, 2002.
89
+ # Available at:
90
+ # <https://www.epedagogia.com.br/materialbibliotecaonine/1808Grafia-Braille-para-Lingua-portuguesa.pdfhttps://www.epedagogia.com.br/materialbibliotecaonine/1808Grafia-Braille-para-Lingua-portuguesa.pdf>
91
+ #
92
+ # Grafia Matemática Braille (Braille Mathematics Writing), 1994, by
93
+ # Comissão de Braille [Braille Commission of Portugal], based on the
94
+ # Unified Mathematics Code for the Spanish language of 1987.
95
+ # Available at:
96
+ # <https://www.inr.pt/documents/11309/308366/Grafia+Matem%C3%A1tica+Braille+1.zip/aa035d3e-5e23-4394-b229-20da9841e396>
97
+ #
98
+ # CMU - Código Matemático Unificado (Unified Mathematics Code) -, by
99
+ # Comissão para Estudo e Atualização do Sistema Braille em Uso no Brasil
100
+ # (Commission for the Study and Update the Braille System in Use in Brazil), 1994,
101
+ # adapted from the Unified Mathematics Code for the Spanish language of 1987,
102
+ # 1st braille publication in Brazil in 1995 by Instituto Benjamin Constant;
103
+ # Renamed to Código Matemático Unificado para a Língua Portuguesa - CMU -
104
+ # (Unified Mathematics Code for the Portuguese Language) by
105
+ # Comissão Brasileira de Braille da União Brasileira de Cegos - UBC -
106
+ # (Brazilian Braille Commission of the Brazilian Union of the Blind) in 1998 and
107
+ # braille publication by Fundação Dorina Nowill para Cegos.
108
+ #
109
+ # Grafia Braille para Informática (Braille Writing for Computing), 2004, by
110
+ # Comissão Brasileira do Braille (Brazilian Braille Commission).
111
+ # Cataloging-in-Publication data: Grafia Braille para Informática /
112
+ # Coordenação: Lêda Lucia Spelta, Maria Glória Batista da Mota ;
113
+ # Autores: Antônio Carlos Hildebrandt ... [et al.]. -
114
+ # Brasília : MEC, SEESP, 2004. 52 p.
115
+ # Available at:
116
+ # <https://www.gov.br/mec/pt-br/media/publicacoes/semesp/grafiainfo.pdf>
117
+ #
118
+ # Normas Técnicas para a Produção de Textos em Braille
119
+ # (Standards for the Production of Braille texts), 2002, by
120
+ # Comissão Brasileira do Braille (Brazilian Braille Commission).
121
+ # Cataloging-in-Publication data: Normas técnicas para a produção de textos
122
+ # em Braille/Secretaria de Educação Especial. _ Brasília: MEC; SEESP, 2002 70 p.
123
+ # Available at:
124
+ # <https://www.epedagogia.com.br/materialbibliotecaonine/2260Normas-tecnicas-para-a-producao-de-textos-em-braille.pdf>
125
+
126
+ # For Braille embossers, includes file with display entries
127
+ include text_nabcc.dis
128
+
129
+ # Form feed or transpagination, not yet implemented
130
+ # sign \f 5-25 # ⠐⠒ quebra de página / transpaginação | form feed (FF)
131
+
132
+ # Space Character Definitions
133
+ space \x00A0 a # ⠀ non-breaking space
134
+ include spaces.uti
135
+
136
+ # Includes basic Latin alphabet and basic digits
137
+ include latinLetterDef6Dots.uti
138
+ include digits6Dots.uti # Must come after letters.
139
+ include litdigits6Dots.uti # Must come after letters.
140
+
141
+ # Character-definition entries
142
+
143
+ punctuation ! 235 # ⠖ ponto de exclamação | exclamation mark
144
+ punctuation " 236 # ⠦ aspas genérica | quotation mark
145
+ sign # 3456-13 # ⠼⠅ símbolo de número, hashtag | number sign
146
+ sign $ 56 # ⠰ cifrão | dollar sign
147
+ math % 456-356 # ⠸⠴ porcento | percent sign
148
+ noback sign & 12346 # ⠯ e comercial | ampersand
149
+
150
+ # Definition of apostrophe with role of a quotation mark variant
151
+ noback punctuation ' 56-236 # ⠰⠦ apóstrofo genérico como variante de aspas simples | apostrophe
152
+ # For braille typing of apostrophe, dot 6 is used since Liblouis 3.15
153
+ nofor punctuation ' 6 # ⠠ apóstrofo genérico | apostrophe
154
+
155
+ noback punctuation ( 126-3 # ⠣⠄ abre parênteses | left parenthesis
156
+ noback math ( 126 # ⠣ abre parênteses | left parenthesis
157
+ punctuation ) 6-345 # ⠠⠜ fecha parênteses | right parenthesis
158
+ noback math ) 345 # ⠜ fecha parênteses | right parenthesis
159
+ punctuation * 35 # ⠔ asterisco | asterisk
160
+ math + 235 # ⠖ mais | plus sign
161
+ punctuation , 2 # ⠂ vírgula | comma
162
+ punctuation - 36 # ⠤ tracinho, hífen e/ou menos | hyphen-minus
163
+ punctuation . 3 # ⠄ ponto | full stop
164
+ math / 6-2 # ⠠⠂ barra literária e de data | literary and date slash
165
+ nofor sign / 256 # ⠲ barra | slash
166
+ punctuation : 25 # ⠒ dois pontos | colon
167
+ punctuation ; 23 # ⠆ ponto e vírgula | semicolon
168
+ noback math < 246 # ⠪ menor que | less-than sign
169
+ math = 2356 # ⠶ igual | equals sign
170
+
171
+ # Regarding the literary greater-than sign, there is a note at the foot of
172
+ # braille page 43 of the book Grafia Matemática Braille ,
173
+ # here is the excerpt in Portuguese:
174
+ # Em textos literários o sinal de "maior que", quando entre palavras,
175
+ # é antecedido do sinal ⠠ (6).
176
+ sign > 6-135 # ⠠⠕ maior que literário | literary greater-than sign
177
+ noback math > 135 # ⠕ maior que matemático | mathematical greater-than sign
178
+
179
+ punctuation ? 26 # ⠢ ponto de interrogação | question mark
180
+ sign @ 156 # ⠱ arroba | commercial at
181
+ noback punctuation [ 12356-3 # ⠷⠄ abre colchete ou parênteses reto | left square bracket
182
+ noback math [ 12356 # ⠷ abre colchete ou parênteses reto | left square bracket
183
+ sign \\ 5-3 # ⠐⠄ barra invertida | backslash
184
+ punctuation ] 6-23456 # ⠠⠾ fecha colchete ou parênteses reto | right square bracket
185
+ noback math ] 23456 # ⠾ fecha colchete ou parênteses reto | right square bracket
186
+ sign ^ 4-2346 # ⠈⠮ acento circunflexo autônomo | circumflex accent
187
+ sign _ 46-36 # ⠨⠤ sublinha autônoma | underscore
188
+ sign ` 456-2346 # ⠸⠮ acento grave autônomo | grave accent
189
+
190
+ # Do not back-translate the left curly bracket in favor of back-translating the
191
+ # Latin lowercase l after a sequence with two or more uppercase letters
192
+ noback math { 5-123 # ⠐⠇ abre chave ou chaveta | left curly bracket
193
+
194
+ sign | 456 # ⠸ barra vertical | vertical line
195
+ math } 456-2 # ⠸⠂ fecha chave ou chaveta | right curly bracket
196
+ noback sign ~ 2346 # ⠮ til autônomo | tilde
197
+ punctuation \x00A1 235 # ¡ ⠖ ponto de exclamação invertido | inverted exclamation mark
198
+ sign ¢ 4-14 # ⠈⠉ centavos de dólar | cent sign
199
+ sign £ 4-123 # ⠈⠇ libra | Pound sign
200
+ noback sign ¤ 45-15 # ⠘⠑ currency sign
201
+ noback sign ¥ 4-13456 # ⠈⠽ iene | Yen sign
202
+ noback sign § 234-234 # ⠎⠎ parágrafo jurídico ou secção | section sign
203
+ sign \x00A8 45-2346 # ¨ ⠘⠮ trema autônoma | diaeresis
204
+
205
+ # Using the Brazilian definition of copyright sign from the book
206
+ # Normas Técnicas para a Produção de Textos em Braille of 2002, topic 5.4
207
+ noback sign © 126-3-46-14-6-345 # ⠣⠄⠨⠉⠠⠜ copyright sign
208
+
209
+ noback sign \x00AA 3-1 # ª ⠄⠁ indicador ordinal feminino | feminine ordinal indicator
210
+ noback punctuation « 6-236 # ⠠⠦ abre aspas angulares | left-pointing double angle quotation mark
211
+ math \x00AC 6-3 # ¬ ⠠⠄ negação | not sign
212
+ math ° 356 # ⠴ grau | degree sign
213
+ math \x00B1 235-25-36 # ± ⠖⠒⠤ mais ou menos | plus-or-minus sign
214
+ math ² 16-3456-12 # ⠡⠼⠃ dois sobrescrito | superscript two
215
+ math ³ 16-3456-14 # ⠡⠼⠉ três sobrescrito | superscript three
216
+ sign \x00B4 5-2346 # ´ ⠐⠮ acento agudo autônomo | acute accent
217
+ noback sign \x00B5 4-134 # µ ⠈⠍ micro sign
218
+ noback sign \x00B6 5-346 # ¶ ⠐⠬ pilcrow sign
219
+ math ¹ 16-3456-1 # ⠡⠼⠁ um sobrescrito | superscript one
220
+ noback sign \x00BA 3-135 # º ⠄⠕ indicador ordinal masculino | masculine ordinal indicator
221
+ punctuation » 6-236 # ⠠⠦ fecha aspas angulares | right-pointing double angle quotation mark
222
+ math ¼ 3456-2-145 # ⠼⠂⠙ um quarto | vulgar fraction one quarter
223
+ math ½ 3456-2-12 # ⠼⠂⠃ um meio | vulgar fraction one half
224
+ math ¾ 3456-25-145 # ⠼⠒⠙ três quartos | vulgar fraction three quarters
225
+ punctuation \x00BF 26 # ¿ ⠢ ponto de interrogação invertido | inverted question mark
226
+ math × 236 # ⠦ multiplicação | multiplication sign
227
+ math ÷ 256 # ⠲ divisão | division sign
228
+
229
+ # Lowercase Brazilian/Portuguese letters with diacritic, from the 2002 documentation
230
+ lowercase \x00E0 1246 # à ⠫ a grave minúsculo | Latin small letter a with grave
231
+ lowercase á 12356 # ⠷ a agudo minúsculo | Latin small letter a with acute
232
+ lowercase â 16 # ⠡ a circunflexo minúsculo | Latin small letter a with circumflex
233
+ lowercase \x00E3 345 # ã ⠜ a til minúsculo | Latin small letter a with tilde
234
+ lowercase ç 12346 # ⠯ c cedilha minúsculo | Latin small letter c with cedilla
235
+ lowercase \x00E9 123456 # é ⠿ e agudo minúsculo | Latin small letter e with acute
236
+ lowercase \x00EA 126 # ê ⠣ e circunflexo minúsculo | Latin small letter e with circumflex
237
+ lowercase \x00ED 34 # í ⠌ i agudo minúsculo | Latin small letter i with acute
238
+ lowercase \x00F3 346 # ó ⠬ o agudo minúsculo | Latin small letter o with acute
239
+ lowercase \x00F4 1456 # ô ⠹ o circunflexo minúsculo | Latin small letter o with circumflex
240
+ lowercase \x00F5 246 # õ ⠪ o com til minúsculo | Latin small letter o with tilde
241
+ lowercase \x00FA 23456 # ú ⠾ u agudo minúsculo | Latin small letter u with acute
242
+ lowercase \x00FC 1256 # ü ⠳ u com trema minúsculo | Latin small letter u with diaeresis
243
+
244
+ # Uppercase Brazilian/Portuguese letters with diacritic, from the 2002 documentation
245
+ base uppercase \x00C0 \x00E0 # À ⠨⠫ a grave maiúsculo | Latin capital letter a with grave
246
+ base uppercase Á á # ⠨⠷ a agudo maiúsculo | Latin capital letter a with acute
247
+ base uppercase  â # ⠨⠡ a circunflexo maiúsculo | Latin capital letter a with circumflex
248
+ base uppercase \x00C3 \x00E3 # Ã ⠨⠜ a til maiúsculo | Latin capital letter a with tilde
249
+ base uppercase Ç ç # ⠨⠯ c cedilha maiúsculo | Latin capital letter c with cedilla
250
+ base uppercase \x00C9 \x00E9 # É ⠨⠿ e agudo maiúsculo | Latin capital letter e with acute
251
+ base uppercase \x00CA \x00EA # Ê ⠨⠣ e circunflexo maiúsculo | Latin capital letter e with circumflex
252
+ base uppercase \x00CD \x00ED # Í ⠨⠌ i agudo maiúsculo | Latin capital letter i with acute
253
+ base uppercase \x00D3 \x00F3 # Ó ⠨⠬ o agudo maiúsculo | Latin capital letter o with acute
254
+ base uppercase \x00D4 \x00F4 # Ô ⠨⠹ o circunflexo maiúsculo | Latin capital letter o with circumflex
255
+ base uppercase \x00D5 \x00F5 # Õ ⠨⠪ o com til maiúsculo | Latin capital letter o with tilde
256
+ base uppercase \x00DA \x00FA # Ú ⠨⠾ u agudo maiúsculo | Latin capital letter u with acute
257
+ base uppercase \x00DC \x00FC # Ü ⠨⠳ u com trema maiúsculo | Latin capital letter u with diaeresis
258
+
259
+ # Some letters with diacritic, definitions from the
260
+ # Appendix 2 or B of the book Grafia Braille para a Língua Portuguesa
261
+ noback lowercase \x00DF 2346 # ß ⠮ eszett minúsculo | Latin small letter sharp s
262
+ lowercase ä 345 # ⠜ a trema minúsculo | Latin small letter a with diaeresis
263
+ lowercase å 16 # ⠡ a minúsculo com círculo em cima | Latin small letter a with ring above
264
+ noback lowercase \x00E6 1-15 # æ ⠁⠑ ligadura ae minúsculo | Latin small letter ae
265
+ lowercase \x00E8 2346 # è ⠮ e grave minúsculo | Latin small letter e with grave
266
+ lowercase \x00EB 1246 # ë ⠫ e trema minúsculo | Latin small letter e with diaeresis
267
+ noback lowercase \x00EC 34 # ì ⠌ i grave minúsculo | Latin small letter i with grave
268
+ lowercase \x00EE 146 # î ⠩ i circunflexo minúsculo | Latin small letter i with circumflex
269
+ noback lowercase \x00EF 12456 # ï ⠻ i trema minúsculo | Latin small letter i with diaeresis
270
+ lowercase \x00F1 12456 # ñ ⠻ n til minúsculo | Latin small letter n with tilde
271
+ noback lowercase \x00F2 346 # ò ⠬ o grave minúsculo | Latin small letter o with grave
272
+ lowercase ö 246 # ⠪ o trema minúsculo | Latin small letter o with diaeresis
273
+ lowercase \x00F8 246 # ø ⠪ o minúsculo cortado | Latin small letter o with stroke
274
+ lowercase \x00F9 23456 # ù ⠾ u grave minúsculo | Latin small letter u with grave
275
+ lowercase \x00FB 156 # û ⠱ u circunflexo minúsculo | Latin small letter u with circumflex
276
+ noback lowercase \x0153 135-15 # œ ⠕⠑ ligadura oe minúsculo | Latin small ligature oe
277
+ base uppercase Ä ä # ⠨⠜ a trema maiúsculo | Latin capital letter a with diaeresis
278
+ base uppercase Å å # ⠨⠡ a maiúsculo com círculo em cima | Latin capital letter a with ring above
279
+ base uppercase \x00C6 \x00E6 # Æ ⠨⠁⠑ ligadura ae maiúsculo | Latin capital letter ae
280
+ base uppercase \x00C8 \x00E8 # È ⠨⠮ e grave maiúsculo | Latin capital letter e with grave
281
+ base uppercase \x00CB \x00EB # Ë ⠨⠫ e trema maiúsculo | Latin capital letter e with diaeresis
282
+ base uppercase \x00CC \x00EC # Ì ⠨⠌ i grave maiúsculo | Latin capital letter i with grave
283
+ base uppercase \x00CE \x00EE # Î ⠨⠩ i circunflexo maiúsculo | Latin capital letter i with circumflex
284
+ base uppercase \x00CF \x00EF # Ï ⠨⠻ i trema maiúsculo | Latin capital letter i with diaeresis
285
+ base uppercase \x00D1 \x00F1 # Ñ ⠨⠻ n til maiúsculo | Latin capital letter n with tilde
286
+ base uppercase \x00D2 \x00F2 # Ò ⠨⠬ o grave maiúsculo | Latin capital letter o with grave
287
+ base uppercase Ö ö # ⠨⠪ o trema maiúsculo | Latin capital letter o with diaeresis
288
+ base uppercase \x00D8 \x00F8 # Ø ⠨⠪ o maiúsculo cortado | Latin capital letter o with stroke
289
+ base uppercase \x00D9 \x00F9 # Ù ⠨⠾ u grave maiúsculo | Latin capital letter u with grave
290
+ base uppercase \x00DB \x00FB # Û ⠨⠱ u circunflexo maiúsculo | Latin capital letter u with circumflex
291
+ base uppercase \x0152 \x0153 # Œ ⠨⠕⠑ ligadura oe maiúsculo | Latin capital ligature oe
292
+ base uppercase \x1E9E \x00DF # ẞ ⠨⠮ eszett maiúsculo | Latin capital letter sharp s
293
+
294
+ # Other Latin letters with diacritics, prefixes defined in item 42 in Portugal
295
+ # and 43 in Brazil of the 2002 Grafia Braille para a Língua Portuguesa, the
296
+ # documentation of the braille code demonstrates the use with lowercase letters
297
+ # and is silent in relation to uppercase letters, should the diacritic prefix be
298
+ # after or before the capsletter sign? Example of an ambiguous situation, the
299
+ # prefix of tilde is dot 5 which is the same prefix for endcapsword;
300
+ # To avoid confusion it is being used before the capsletter sign
301
+ noback letter \x00FD 35-13456 # ý ⠔⠽ y agudo minúsculo | Latin small letter y with acute
302
+ noback letter \x00FF 45-13456 # ÿ ⠘⠽ y trema minúsculo | Latin small letter y with diaeresis
303
+ noback letter \x0107 35-14 # ć ⠔⠉ c agudo minúsculo | Latin small letter c with acute
304
+ noback letter \x0169 5-136 # ũ ⠐⠥ u til minúsculo | Latin small letter u with tilde
305
+ noback letter \x00DD 35-46-13456 # Ý ⠔⠨⠽ y agudo maiúsculo | Latin capital letter y with acute
306
+ noback letter \x0106 35-46-14 # Ć ⠔⠨⠉ c agudo maiúsculo | Latin capital letter c with acute
307
+ letter \x0168 5-46-136 # Ũ ⠐⠨⠥ u til maiúsculo | Latin capital letter u with tilde
308
+ letter \x0178 45-46-13456 # Ÿ ⠘⠨⠽ y trema maiúsculo | Latin capital letter y with diaeresis
309
+
310
+ # For ogonek using definition from the book World Braille Usage 3rd edition.
311
+ # this is for compiler
312
+ noback letter \x0105 6-1 # ą ⠠⠁ Latin small letter a with ogonek
313
+ noback letter \x0119 6-15 # ę ⠠⠑ Latin small letter e with ogonek
314
+ noback letter \x0104 6-46-1 # Ą ⠠⠨⠁ Latin capital letter a with ogonek
315
+ noback letter \x0118 6-46-15 # Ę ⠠⠨⠑ Latin capital letter e with ogonek
316
+
317
+ # Accented letters of Esperanto using definitions from the book World Braille Usage 3rd edition
318
+ lowercase \x0109 146 # ĉ ⠩ c circunflexo minúsculo | Latin small letter c with circumflex
319
+ lowercase \x011D 12456 # ĝ ⠻ g circunflexo minúsculo | Latin small letter g with circumflex
320
+ lowercase \x0125 1256 # ĥ ⠳ h circunflexo minúsculo | Latin small letter h with circumflex
321
+ lowercase \x0135 2456 # ĵ ⠺ j circunflexo minúsculo | Latin small letter j with circumflex
322
+ lowercase \x015D 2346 # ŝ ⠮ s circunflexo minúsculo | Latin small letter s with circumflex
323
+ lowercase \x016D 346 # ŭ ⠬ u breve minúsculo | Latin small letter u with breve
324
+ base uppercase \x0108 \x0109 # Ĉ ⠨⠩ c circunflexo maiúsculo | Latin capital letter c with circumflex
325
+ base uppercase \x011C \x011D # Ĝ ⠨⠻ g circunflexo maiúsculo | Latin capital letter g with circumflex
326
+ base uppercase \x0124 \x0125 # Ĥ ⠨⠳ h circunflexo maiúsculo | Latin capital letter h with circumflex
327
+ base uppercase \x0134 \x0135 # Ĵ ⠨⠺ j circunflexo maiúsculo | Latin capital letter j with circumflex
328
+ base uppercase \x015C \x015D # Ŝ ⠨⠮ s circunflexo maiúsculo | Latin capital letter s with circumflex
329
+ base uppercase \x016C \x016D # Ŭ ⠨⠬ u breve maiúsculo | Latin capital letter u with breve
330
+
331
+ # Some Latin vowels with macron or breve diacritic
332
+ noback letter \x0101 25-1 # ā ⠒⠁ a longa minúscula | Latin small letter a with macron
333
+ letter \x0103 6-1 # ă ⠠⠁ a breve minúsculo | Latin small letter a with breve
334
+ noback letter \x0113 25-15 # ē ⠒⠑ e longa minúscula | Latin small letter e with macron
335
+ letter \x0115 6-15 # ĕ ⠠⠑ e breve minúsculo | Latin small letter e with breve
336
+ noback letter \x012B 25-24 # ī ⠒⠊ i longa minúscula | Latin small letter i with macron
337
+ letter \x012D 6-24 # ĭ ⠠⠊ i breve minúsculo | Latin small letter i with breve
338
+ noback letter \x014D 25-135 # ō ⠒⠕ o longa minúscula | Latin small letter o with macron
339
+ noback letter \x014F 6-135 # ŏ ⠠⠕ o breve minúsculo | Latin small letter o with breve
340
+ noback letter \x016B 25-136 # ū ⠒⠥ u longa minúscula | Latin small letter u with macron
341
+ noback letter \x0100 25-46-1 # Ā ⠒⠨⠁ a longa maiúscula | Latin capital letter a with macron
342
+ letter \x0102 6-46-1 # Ă ⠠⠨⠁ a breve maiúsculo | Latin capital letter a with breve
343
+ noback letter \x0112 25-46-15 # Ē ⠒⠨⠑ e longa maiúscula | Latin capital letter e with macron
344
+ letter \x0114 6-46-15 # Ĕ ⠠⠨⠑ e breve maiúsculo | Latin capital letter e with breve
345
+ noback letter \x012A 25-46-24 # Ī ⠒⠨⠊ i longa maiúscula | Latin capital letter i with macron
346
+ letter \x012C 6-46-24 # Ĭ ⠠⠨⠊ i breve maiúsculo | Latin capital letter i with breve
347
+ noback letter \x014C 25-46-135 # Ō ⠒⠨⠕ o longa maiúscula | Latin capital letter o with macron
348
+ letter \x014E 6-46-135 # Ŏ ⠠⠨⠕ o breve maiúsculo | Latin capital letter o with breve
349
+ noback letter \x016A 25-46-136 # Ū ⠒⠨⠥ u longa maiúscula | Latin capital letter u with macron
350
+
351
+ # Uppercase Greek alphabet
352
+ letter \x0391 45-1 # Α ⠘⠁ alfa maiúsculo | Greek capital letter alpha
353
+ letter \x0392 45-12 # Β ⠘⠃ beta maiúsculo | Greek capital letter beta
354
+ letter \x0393 45-1245 # Γ ⠘⠛ gama maiúsculo | Greek capital letter gamma
355
+ letter \x0394 45-145 # Δ ⠘⠙ delta maiúsculo | Greek capital letter delta
356
+ letter \x0395 45-15 # Ε ⠘⠑ épsilon maiúsculo | Greek capital letter epsilon
357
+ letter \x0396 45-1356 # Ζ ⠘⠵ zeta maiúsculo | Greek capital letter zeta
358
+ letter \x0397 45-156 # Η ⠘⠱ eta maiúsculo | Greek capital letter eta
359
+ letter \x0398 45-1456 # Θ ⠘⠹ teta maiúsculo | Greek capital letter theta
360
+ letter \x0399 45-24 # Ι ⠘⠊ iota maiúsculo | Greek capital letter iota
361
+ letter \x039A 45-13 # Κ ⠘⠅ capa maiúsculo | Greek capital letter kappa
362
+ letter \x039B 45-123 # Λ ⠘⠇ lambda maiúsculo | Greek capital letter lamda
363
+ letter \x039C 45-134 # Μ ⠘⠍ mi ou mu maiúsculo | Greek capital letter mu
364
+ letter \x039D 45-1345 # Ν ⠘⠝ ni ou nu maiúsculo | Greek capital letter nu
365
+ letter \x039E 45-1346 # Ξ ⠘⠭ xi maiúsculo | Greek capital letter xi
366
+ letter \x039F 45-135 # Ο ⠘⠕ omicron maiúsculo | Greek capital letter omicron
367
+ letter \x03A0 45-1234 # Π ⠘⠏ pi maiúsculo | Greek capital letter pi
368
+ letter \x03A1 45-1235 # Ρ ⠘⠗ rô maiúsculo | Greek capital letter rho
369
+ letter \x03A3 45-234 # Σ ⠘⠎ sigma maiúsculo | Greek capital letter sigma
370
+ letter \x03A4 45-2345 # Τ ⠘⠞ tau maiúsculo | Greek capital letter tau
371
+ letter \x03A5 45-136 # Υ ⠘⠥ úpsilon maiúsculo | Greek capital letter upsilon
372
+ letter \x03A6 45-124 # Φ ⠘⠋ fi maiúsculo | Greek capital letter phi
373
+ letter \x03A7 45-12346 # Χ ⠘⠯ khi maiúsculo | Greek capital letter chi
374
+ letter \x03A8 45-13456 # Ψ ⠘⠽ psi maiúsculo | Greek capital letter psi
375
+ letter \x03A9 45-2456 # Ω ⠘⠺ ômega maiúsculo | Greek capital letter omega
376
+
377
+ # Lowercase Greek alphabet
378
+ letter \x03B1 4-1 # α ⠈⠁ alfa minúsculo | Greek small letter alpha
379
+ letter \x03B2 4-12 # β ⠈⠃ beta minúsculo | Greek small letter beta
380
+ letter \x03B3 4-1245 # γ ⠈⠛ gama minúsculo | Greek small letter gamma
381
+ letter \x03B4 4-145 # δ ⠈⠙ delta minúsculo | Greek small letter delta
382
+ noback letter \x03B5 4-15 # ε ⠈⠑ épsilon minúsculo | Greek small letter epsilon
383
+ letter \x03B6 4-1356 # ζ ⠈⠵ zeta minúsculo | Greek small letter zeta
384
+ letter \x03B7 4-156 # η ⠈⠱ eta minúsculo | Greek small letter eta
385
+ letter \x03B8 4-1456 # θ ⠈⠹ teta minúsculo | Greek small letter theta
386
+ letter \x03B9 4-24 # ι ⠈⠊ iota minúsculo | Greek small letter iota
387
+ letter \x03BA 4-13 # κ ⠈⠅ capa minúsculo | Greek small letter kappa
388
+ letter \x03BB 4-123 # λ ⠈⠇ lambda minúsculo | Greek small letter lamda
389
+ letter \x03BC 4-134 # μ ⠈⠍ mi ou mu minúsculo | Greek small letter mu
390
+ letter \x03BD 4-1345 # ν ⠈⠝ ni ou nu minúsculo | Greek small letter nu
391
+ letter \x03BE 4-1346 # ξ ⠈⠭ xi minúsculo | Greek small letter xi
392
+ letter \x03BF 4-135 # ο ⠈⠕ omicron minúsculo | Greek small letter omicron
393
+ letter \x03C0 4-1234 # π ⠈⠏ pi minúsculo | Greek small letter pi
394
+ letter \x03C1 4-1235 # ρ ⠈⠗ rô minúsculo | Greek small letter rho
395
+ letter \x03C3 4-234 # σ ⠈⠎ sigma minúsculo | Greek small letter sigma
396
+ noback letter \x03C2 4-234 # ς ⠈⠎ sigma minúsculo em fim de palavra | Greek small letter final sigma
397
+ letter \x03C4 4-2345 # τ ⠈⠞ tau minúsculo | Greek small letter tau
398
+ letter \x03C5 4-136 # υ ⠈⠥ úpsilon minúsculo | Greek small letter upsilon
399
+ letter \x03C6 4-124 # φ ⠈⠋ fi minúsculo | Greek small letter phi
400
+ letter \x03C7 4-12346 # χ ⠈⠯ khi minúsculo | Greek small letter chi
401
+ letter \x03C8 4-13456 # ψ ⠈⠽ psi minúsculo | Greek small letter psi
402
+ letter \x03C9 4-2456 # ω ⠈⠺ ômega minúsculo | Greek small letter omega
403
+
404
+ # Other Greek characters
405
+ letter \x03DC 456-1236 # Ϝ ⠸⠧ digama | Greek letter digamma
406
+ letter \x03DD 456-1236 # ϝ ⠸⠧ digama pequeno | Greek small letter digamma
407
+ noback letter \x03DA 456-23456 # Ϛ ⠸⠾ stigma | Greek letter stigma
408
+ noback letter \x03DB 456-23456 # ϛ ⠸⠾ stigma pequeno | Greek small letter stigma
409
+ noback letter \x03DE 456-12345 # Ϟ ⠸⠟ copa | Greek letter koppa
410
+ noback letter \x03DF 456-12345 # ϟ ⠸⠟ copa pequeno | Greek small letter koppa
411
+ noback letter \x03E0 456-2346 # Ϡ ⠸⠮ sampi | Greek letter sampi
412
+ noback letter \x03E1 456-2346 # ϡ ⠸⠮ sampi pequeno | Greek small letter sampi
413
+ noback sign \x03D0 4-12 # ϐ ⠈⠃ símbolo beta | Greek beta symbol
414
+ noback sign \x03D1 4-1456 # ϑ ⠈⠹ símbolo teta | Greek theta symbol
415
+ math \x03D6 4-1234 # ϖ ⠈⠏ símbolo de pi | Greek pi symbol
416
+ noback sign \x03D5 4-124 # ϕ ⠈⠋ símbolo fi | Greek phi symbol
417
+ noback sign \x03F2 4-234 # ϲ ⠈⠎ símbolo sigma luniforme | Greek lunate sigma symbol
418
+ noback sign \x03F9 45-234 # Ϲ ⠘⠎ símbolo sigma luniforme maiúsculo | Greek capital lunate sigma symbol
419
+ noback letter \x03D8 456-12345 # Ϙ ⠸⠟ copa arcaico | Greek letter archaic koppa
420
+ noback letter \x03D9 456-12345 # ϙ ⠸⠟ copa arcaico pequeno | Greek small letter archaic koppa
421
+ noback letter \x0372 456-2346 # Ͳ ⠸⠮ sampi arcaico | Greek capital letter archaic sampi
422
+ noback letter \x0373 456-2346 # ͳ ⠸⠮ sampi arcaico pequeno | Greek small letter archaic sampi
423
+
424
+ # Pairs of uppercase and lowercase Greek letters with diacritics.
425
+ # The placement of the uppercase and lowercase Greek letter prefix is the same
426
+ # as the Latin letter placement, as indicated for Latin letters in the
427
+ # books Grafia Matemática Braille and Código Matemático Unificado para a
428
+ # Língua Portuguesa, both in Chapter 1 topic 1.1 note b).
429
+ # Definitions of Greek letter diacritics and equivalents can be found in the
430
+ # book Grafia Braille para a Língua Portuguesa, Appendices 3.1.3 and 3.1.4 of
431
+ # the Portuguese edition, and Appendix C 1 of the Brazilian edition
432
+ letter \x0386 45-345 # Ά ⠘⠜ alfa agudo (tonos) maiúsculo | Greek capital letter alpha with tonos
433
+ letter \x03AC 4-345 # ά ⠈⠜ alfa agudo (tonos) minúsculo | Greek small letter alpha with tonos
434
+ letter \x1FBB 45-345 # Ά ⠘⠜ alfa agudo (oxia) maiúsculo | Greek capital letter alpha with oxia
435
+ letter \x1F71 4-345 # ά ⠈⠜ alfa agudo (oxia) minúsculo | Greek small letter alpha with oxia
436
+ noback letter \x1FBA 45-12356 # Ὰ ⠘⠷ alfa grave maiúsculo | Greek capital letter alpha with varia
437
+ letter \x1F70 4-12356 # ὰ ⠈⠷ alfa grave minúsculo | Greek small letter alpha with varia
438
+ noback letter \x1FB9 25-45-1 # Ᾱ ⠒⠘⠁ alfa longa maiúsculo | Greek capital letter alpha with macron
439
+ noback letter \x1FB1 25-4-1 # ᾱ ⠒⠈⠁ alfa longa minúsculo | Greek small letter alpha with macron
440
+ letter \x1FB8 6-45-1 # Ᾰ ⠠⠘⠁ alfa breve maiúsculo | Greek capital letter alpha with vrachy
441
+ letter \x1FB0 6-4-1 # ᾰ ⠠⠈⠁ alfa breve minúsculo | Greek small letter alpha with vrachy
442
+ noback letter \x1F08 356-45-1 # Ἀ ⠴⠘⠁ alfa maiúsculo com espírito suave | Greek capital letter alpha with psili
443
+ noback letter \x1F00 356-4-1 # ἀ ⠴⠈⠁ alfa minúsculo com espírito suave | Greek small letter alpha with psili
444
+ noback letter \x1F0C 356-45-345 # Ἄ ⠴⠘⠜ alfa agudo (oxia) maiúsculo com espírito suave | Greek capital letter alpha with psili and oxia
445
+ noback letter \x1F04 356-4-345 # ἄ ⠴⠈⠜ alfa agudo (oxia) minúsculo com espírito suave | Greek small letter alpha with psili and oxia
446
+ noback letter \x1F0A 356-45-12356 # Ἂ ⠴⠘⠷ alfa grave maiúsculo com espírito suave | Greek capital letter alpha with psili and varia
447
+ noback letter \x1F02 356-4-12356 # ἂ ⠴⠈⠷ alfa grave minúsculo com espírito suave | Greek small letter alpha with psili and varia
448
+ noback letter \x1F0E 356-45-16 # Ἆ ⠴⠘⠡ alfa circunflexo maiúsculo com espírito suave | Greek capital letter alpha with psili and perispomeni
449
+ noback letter \x1F06 356-4-16 # ἆ ⠴⠈⠡ alfa circunflexo minúsculo com espírito suave | Greek small letter alpha with psili and perispomeni
450
+ noback letter \x1F09 125-45-1 # Ἁ ⠓⠘⠁ alfa maiúsculo com espírito áspero | Greek capital letter alpha with dasia
451
+ noback letter \x1F01 125-4-1 # ἁ ⠓⠈⠁ alfa minúsculo com espírito áspero | Greek small letter alpha with dasia
452
+ noback letter \x1F0D 125-45-345 # Ἅ ⠓⠘⠜ alfa agudo (oxia) maiúsculo com espírito áspero | Greek capital letter alpha with dasia and oxia
453
+ noback letter \x1F05 125-4-345 # ἅ ⠓⠈⠜ alfa agudo (oxia) minúsculo com espírito áspero | Greek small letter alpha with dasia and oxia
454
+ noback letter \x1F0B 125-45-12356 # Ἃ ⠓⠘⠷ alfa grave maiúsculo com espírito áspero | Greek capital letter alpha with dasia and varia
455
+ noback letter \x1F03 125-4-12356 # ἃ ⠓⠈⠷ alfa grave minúsculo com espírito áspero | Greek small letter alpha with dasia and varia
456
+ noback letter \x1F0F 125-45-16 # Ἇ ⠓⠘⠡ alfa circunflexo maiúsculo com espírito áspero | Greek capital letter alpha with dasia and perispomeni
457
+ noback letter \x1F07 125-4-16 # ἇ ⠓⠈⠡ alfa circunflexo minúsculo com espírito áspero | Greek small letter alpha with dasia and perispomeni
458
+ noback letter \x0388 45-1246 # Έ ⠘⠫ épsilon agudo (tonos) maiúsculo | Greek capital letter epsilon with tonos
459
+ letter \x03AD 4-1246 # έ ⠈⠫ épsilon agudo (tonos) minúsculo | Greek small letter epsilon with tonos
460
+ noback letter \x1FC9 45-1246 # Έ ⠘⠫ épsilon agudo (oxia) maiúsculo | Greek capital letter epsilon with oxia
461
+ letter \x1F73 4-1246 # έ ⠈⠫ épsilon agudo (oxia) minúsculo | Greek small letter epsilon with oxia
462
+ noback letter \x1FC8 45-14 # Ὲ ⠘⠉ épsilon grave maiúsculo | Greek capital letter epsilon with varia
463
+ letter \x1F72 4-14 # ὲ ⠈⠉ épsilon grave minúsculo | Greek small letter epsilon with varia
464
+ noback letter \x1F18 356-45-15 # Ἐ ⠴⠘⠑ épsilon maiúsculo com espírito suave | Greek capital letter epsilon with psili
465
+ noback letter \x1F10 356-4-15 # ἐ ⠴⠈⠑ épsilon minúsculo com espírito suave | Greek small letter epsilon with psili
466
+ noback letter \x1F1C 356-45-1246 # Ἔ ⠴⠘⠫ épsilon agudo (oxia) maiúsculo com espírito suave | Greek capital letter epsilon with psili and oxia
467
+ noback letter \x1F14 356-4-1246 # ἔ ⠴⠈⠫ épsilon agudo (oxia) minúsculo com espírito suave | Greek small letter epsilon with psili and oxia
468
+ noback letter \x1F1A 356-45-14 # Ἒ ⠴⠘⠉ épsilon grave maiúsculo com espírito suave | Greek capital letter epsilon with psili and varia
469
+ noback letter \x1F12 356-4-14 # ἒ ⠴⠈⠉ épsilon grave minúsculo com espírito suave | Greek small letter epsilon with psili and varia
470
+ noback letter \x1F19 125-45-15 # Ἑ ⠓⠘⠑ épsilon maiúsculo com espírito áspero | Greek capital letter epsilon with dasia
471
+ noback letter \x1F11 125-4-15 # ἑ ⠓⠈⠑ épsilon minúsculo com espírito áspero | Greek small letter epsilon with dasia
472
+ noback letter \x1F1D 125-45-1246 # Ἕ ⠓⠘⠫ épsilon agudo (oxia) maiúsculo com espírito áspero | Greek capital letter epsilon with dasia and oxia
473
+ noback letter \x1F15 125-4-1246 # ἕ ⠓⠈⠫ épsilon agudo (oxia) minúsculo com espírito áspero | Greek small letter epsilon with dasia and oxia
474
+ noback letter \x1F1B 125-45-14 # Ἓ ⠓⠘⠉ épsilon grave maiúsculo com espírito áspero | Greek capital letter epsilon with dasia and varia
475
+ noback letter \x1F13 125-4-14 # ἓ ⠓⠈⠉ épsilon grave minúsculo com espírito áspero | Greek small letter epsilon with dasia and varia
476
+ letter \x0389 45-123456 # Ή ⠘⠿ eta agudo (tonos) maiúsculo | Greek capital letter eta with tonos
477
+ letter \x03AE 4-123456 # ή ⠈⠿ eta agudo (tonos) minúsculo | Greek small letter eta with tonos
478
+ letter \x1FCB 45-123456 # Ή ⠘⠿ Ή eta agudo (oxia) maiúsculo | Greek capital letter eta with oxia
479
+ letter \x1F75 4-123456 # ή ⠈⠿ eta agudo (oxia) minúsculo | Greek small letter eta with oxia
480
+ letter \x1FCA 45-2346 # Ὴ ⠘⠮ eta grave maiúsculo | Greek capital letter eta with varia
481
+ letter \x1F74 4-2346 # ὴ ⠈⠮ eta grave minúsculo | Greek small letter eta with varia
482
+ noback letter \x1F28 356-45-156 # Ἠ ⠴⠘⠱ eta maiúsculo com espírito suave | Greek capital letter eta with psili
483
+ noback letter \x1F20 356-4-156 # ἠ ⠴⠈⠱ eta minúsculo com espírito suave | Greek small letter eta with psili
484
+ noback letter \x1F2C 356-45-123456 # Ἤ ⠴⠘⠿ eta agudo (oxia) maiúsculo com espírito suave | Greek capital letter eta with psili and oxia
485
+ noback letter \x1F24 356-4-123456 # ἤ ⠴⠈⠿ eta agudo (oxia) minúsculo com espírito suave | Greek small letter eta with psili and oxia
486
+ noback letter \x1F2A 356-45-2346 # Ἢ ⠴⠘⠮ eta grave maiúsculo com espírito suave | Greek capital letter eta with psili and varia
487
+ noback letter \x1F22 356-4-2346 # ἢ ⠴⠈⠮ eta grave minúsculo com espírito suave | Greek small letter eta with psili and varia
488
+ noback letter \x1F2E 356-45-126 # Ἦ ⠴⠘⠣ eta circunflexo maiúsculo com espírito suave | Greek capital letter eta with psili and perispomeni
489
+ noback letter \x1F26 356-4-126 # ἦ ⠴⠈⠣ eta circunflexo minúsculo com espírito suave | Greek small letter eta with psili and perispomeni
490
+ noback letter \x1F29 125-45-156 # Ἡ ⠓⠘⠱ eta maiúsculo com espírito áspero | Greek capital letter eta with dasia
491
+ noback letter \x1F21 125-4-156 # ἡ ⠓⠈⠱ eta minúsculo com espírito áspero | Greek small letter eta with dasia
492
+ noback letter \x1F2D 125-45-123456 # Ἥ ⠓⠘⠿ eta agudo (oxia) maiúsculo com espírito áspero | Greek capital letter eta with dasia and oxia
493
+ noback letter \x1F25 125-4-123456 # ἥ ⠓⠈⠿ eta agudo (oxia) minúsculo com espírito áspero | Greek small letter eta with dasia and oxia
494
+ noback letter \x1F2B 125-45-2346 # Ἣ ⠓⠘⠮ eta grave maiúsculo com espírito áspero | Greek capital letter eta with dasia and varia
495
+ noback letter \x1F23 125-4-2346 # ἣ ⠓⠈⠮ eta grave minúsculo com espírito áspero | Greek small letter eta with dasia and varia
496
+ noback letter \x1F2F 125-45-126 # Ἧ ⠓⠘⠣ eta circunflexo maiúsculo com espírito áspero | Greek capital letter eta with dasia and perispomeni
497
+ noback letter \x1F27 125-4-126 # ἧ ⠓⠈⠣ eta circunflexo minúsculo com espírito áspero | Greek small letter eta with dasia and perispomeni
498
+ letter \x03AA 5-45-24 # Ϊ ⠐⠘⠊ iota trema maiúsculo | Greek capital letter iota with dialytika
499
+ letter \x03CA 5-4-24 # ϊ ⠐⠈⠊ iota trema minúsculo | Greek small letter iota with dialytika
500
+ letter \x038A 45-12456 # Ί ⠘⠻ iota agudo (tonos) maiúsculo | Greek capital letter iota with tonos
501
+ noback letter \x03AF 4-12456 # ί ⠈⠻ iota agudo (tonos) minúsculo | Greek small letter iota with tonos
502
+ letter \x1FDB 45-12456 # Ί ⠘⠻ iota agudo (oxia) maiúsculo | Greek capital letter iota with oxia
503
+ noback letter \x1F77 4-12456 # ί ⠈⠻ iota agudo (oxia) minúsculo | Greek small letter iota with oxia
504
+ letter \x1FDA 45-34 # Ὶ ⠘⠌ iota grave maiúsculo | Greek capital letter iota with varia
505
+ letter \x1F76 4-34 # ὶ ⠈⠌ iota grave minúsculo | Greek small letter iota with varia
506
+ noback letter \x1FD9 25-45-24 # Ῑ ⠒⠘⠊ iota longa maiúsculo | Greek capital letter iota with macron
507
+ noback letter \x1FD1 25-4-24 # ῑ ⠒⠈⠊ iota longa minúsculo | Greek small letter iota with macron
508
+ letter \x1FD8 6-45-24 # Ῐ ⠠⠘⠊ iota breve maiúsculo | Greek capital letter iota with vrachy
509
+ letter \x1FD0 6-4-24 # ῐ ⠠⠈⠊ iota breve minúsculo | Greek small letter iota with vrachy
510
+ noback letter \x1F38 356-45-24 # Ἰ ⠴⠘⠊ iota maiúsculo com espírito suave | Greek capital letter iota with psili
511
+ noback letter \x1F30 356-4-24 # ἰ ⠴⠈⠊ iota minúsculo com espírito suave | Greek small letter iota with psili
512
+ noback letter \x1F3C 356-45-12456 # Ἴ ⠴⠘⠻ iota agudo (oxia) maiúsculo com espírito suave | Greek capital letter iota with psili and oxia
513
+ noback letter \x1F34 356-4-12456 # ἴ ⠴⠈⠻ iota agudo (oxia) minúsculo com espírito suave | Greek small letter iota with psili and oxia
514
+ noback letter \x1F3A 356-45-34 # Ἲ ⠴⠘⠌ iota grave maiúsculo com espírito suave | Greek capital letter iota with psili and varia
515
+ noback letter \x1F32 356-4-34 # ἲ ⠴⠈⠌ iota grave minúsculo com espírito suave | Greek small letter iota with psili and varia
516
+ noback letter \x1F3E 356-45-146 # Ἶ ⠴⠘⠩ iota circunflexo maiúsculo com espírito suave | Greek capital letter iota with psili and perispomeni
517
+ noback letter \x1F36 356-4-146 # ἶ ⠴⠈⠩ iota circunflexo minúsculo com espírito suave | Greek small letter iota with psili and perispomeni
518
+ noback letter \x1F39 125-45-24 # Ἱ ⠓⠘⠊ iota maiúsculo com espírito áspero | Greek capital letter iota with dasia
519
+ noback letter \x1F31 125-4-24 # ἱ ⠓⠈⠊ iota minúsculo com espírito áspero | Greek small letter iota with dasia
520
+ noback letter \x1F3D 125-45-12456 # Ἵ ⠓⠘⠻ iota agudo (oxia) maiúsculo com espírito áspero | Greek capital letter iota with dasia and oxia
521
+ noback letter \x1F35 125-4-12456 # ἵ ⠓⠈⠻ iota agudo (oxia) minúsculo com espírito áspero | Greek small letter iota with dasia and oxia
522
+ noback letter \x1F3B 125-45-34 # Ἳ ⠓⠘⠌ iota grave maiúsculo com espírito áspero | Greek capital letter iota with dasia and varia
523
+ noback letter \x1F33 125-4-34 # ἳ ⠓⠈⠌ iota grave minúsculo com espírito áspero | Greek small letter iota with dasia and varia
524
+ noback letter \x1F3F 125-45-146 # Ἷ ⠓⠘⠩ iota circunflexo maiúsculo com espírito áspero | Greek capital letter iota with dasia and perispomeni
525
+ noback letter \x1F37 125-4-146 # ἷ ⠓⠈⠩ iota circunflexo minúsculo com espírito áspero | Greek small letter iota with dasia and perispomeni
526
+ noback letter \x038C 45-246 # Ό ⠘⠪ omicron agudo (tonos) maiúsculo | Greek capital letter omicron with tonos
527
+ letter \x03CC 4-246 # ό ⠈⠪ omicron agudo (tonos) minúsculo | Greek small letter omicron with tonos
528
+ noback letter \x1FF9 45-246 # Ό ⠘⠪ omicron agudo (oxia) maiúsculo | Greek capital letter omicron with oxia
529
+ letter \x1F79 4-246 # ό ⠈⠪ omicron agudo (oxia) minúsculo | Greek small letter omicron with oxia
530
+ letter \x1FF8 45-346 # Ὸ ⠘⠬ omicron grave maiúsculo | Greek capital letter omicron with varia
531
+ letter \x1F78 4-346 # ὸ ⠈⠬ omicron grave minúsculo | Greek small letter omicron with varia
532
+ noback letter \x1F48 356-45-135 # Ὀ ⠴⠘⠕ omicron maiúsculo com espírito suave | Greek capital letter omicron with psili
533
+ noback letter \x1F40 356-4-135 # ὀ ⠴⠈⠕ omicron minúsculo com espírito suave | Greek small letter omicron with psili
534
+ noback letter \x1F4C 356-45-246 # Ὄ ⠴⠘⠪ omicron agudo (oxia) maiúsculo com espírito suave | Greek capital letter omicron with psili and oxia
535
+ noback letter \x1F44 356-4-246 # ὄ ⠴⠈⠪ omicron agudo (oxia) minúsculo com espírito suave | Greek small letter omicron with psili and oxia
536
+ noback letter \x1F4A 356-45-346 # Ὂ ⠴⠘⠬ omicron grave maiúsculo com espírito suave | Greek capital letter omicron with psili and varia
537
+ noback letter \x1F42 356-4-346 # ὂ ⠴⠈⠬ omicron grave minúsculo com espírito suave | Greek small letter omicron with psili and varia
538
+ noback letter \x1F49 125-45-135 # Ὁ ⠓⠘⠕ omicron maiúsculo com espírito áspero | Greek capital letter omicron with dasia
539
+ noback letter \x1F41 125-4-135 # ὁ ⠓⠈⠕ omicron minúsculo com espírito áspero | Greek small letter omicron with dasia
540
+ noback letter \x1F4D 125-45-246 # Ὅ ⠓⠘⠪ omicron agudo (oxia) maiúsculo com espírito áspero | Greek capital letter omicron with dasia and oxia
541
+ noback letter \x1F45 125-4-246 # ὅ ⠓⠈⠪ omicron agudo (oxia) minúsculo com espírito áspero | Greek small letter omicron with dasia and oxia
542
+ noback letter \x1F4B 125-45-346 # Ὃ ⠓⠘⠬ omicron grave maiúsculo com espírito áspero | Greek capital letter omicron with dasia and varia
543
+ noback letter \x1F43 125-4-346 # ὃ ⠓⠈⠬ omicron grave minúsculo com espírito áspero | Greek small letter omicron with dasia and varia
544
+ noback letter \x1FEC 125-45-1235 # Ῥ ⠓⠘⠗ rô maiúsculo com espírito áspero | Greek capital letter rho with dasia
545
+ noback letter \x1FE5 125-4-1235 # ῥ ⠓⠈⠗ rô minúsculo com espírito áspero | Greek small letter rho with dasia
546
+ letter \x03AB 5-45-136 # Ϋ ⠐⠘⠥ úpsilon trema maiúsculo | Greek capital letter upsilon with dialytika
547
+ letter \x03CB 5-4-136 # ϋ ⠐⠈⠥ úpsilon trema minúsculo | Greek small letter upsilon with dialytika
548
+ noback letter \x038E 45-1256 # Ύ ⠘⠳ úpsilon agudo (tonos) maiúsculo | Greek capital letter upsilon with tonos
549
+ letter \x03CD 4-1256 # ύ ⠈⠳ úpsilon agudo (tonos) minúsculo | Greek small letter upsilon with tonos
550
+ noback letter \x1FEB 45-1256 # Ύ ⠘⠳ úpsilon agudo (oxia) maiúsculo | Greek capital letter upsilon with oxia
551
+ letter \x1F7B 4-1256 # ύ ⠈⠳ úpsilon agudo (oxia) minúsculo | Greek small letter upsilon with oxia
552
+ noback letter \x1FEA 45-23456 # Ὺ ⠘⠾ úpsilon grave maiúsculo | Greek capital letter upsilon with varia
553
+ letter \x1F7A 4-23456 # ὺ ⠈⠾ úpsilon grave minúsculo | Greek small letter upsilon with varia
554
+ noback letter \x1FE9 25-45-136 # Ῡ ⠒⠘⠥ úpsilon longa maiúsculo | Greek capital letter upsilon with macron
555
+ noback letter \x1FE1 25-4-136 # ῡ ⠒⠈⠥ úpsilon longa minúsculo | Greek small letter upsilon with macron
556
+ letter \x1FE8 6-45-136 # Ῠ ⠠⠘⠥ úpsilon breve maiúsculo | Greek capital letter upsilon with vrachy
557
+ letter \x1FE0 6-4-136 # ῠ ⠠⠈⠥ úpsilon breve minúsculo | Greek small letter upsilon with vrachy
558
+ noback letter \x1F59 125-45-136 # Ὑ ⠓⠘⠥ úpsilon maiúsculo com espírito áspero | Greek capital letter upsilon with dasia
559
+ noback letter \x1F51 125-4-136 # ὑ ⠓⠈⠥ úpsilon minúsculo com espírito áspero | Greek small letter upsilon with dasia
560
+ noback letter \x1F5D 125-45-1256 # Ὕ ⠓⠘⠳ úpsilon agudo (oxia) maiúsculo com espírito áspero | Greek capital letter upsilon with dasia and oxia
561
+ noback letter \x1F55 125-4-1256 # ὕ ⠓⠈⠳ úpsilon agudo (oxia) minúsculo com espírito áspero | Greek small letter upsilon with dasia and oxia
562
+ noback letter \x1F5B 125-45-23456 # Ὓ ⠓⠘⠾ úpsilon grave maiúsculo com espírito áspero | Greek capital letter upsilon with dasia and varia
563
+ noback letter \x1F53 125-4-23456 # ὓ ⠓⠈⠾ úpsilon grave minúsculo com espírito áspero | Greek small letter upsilon with dasia and varia
564
+ noback letter \x1F5F 125-45-1236 # Ὗ ⠓⠘⠧ úpsilon circunflexo maiúsculo com espírito áspero | Greek capital letter upsilon with dasia and perispomeni
565
+ noback letter \x1F57 125-4-1236 # ὗ ⠓⠈⠧ úpsilon circunflexo minúsculo com espírito áspero | Greek small letter upsilon with dasia and perispomeni
566
+ noback letter \x038F 45-245 # Ώ ⠘⠚ ômega agudo (tonos) maiúsculo | Greek capital letter omega with tonos
567
+ letter \x03CE 4-245 # ώ ⠈⠚ ômega agudo (tonos) minúsculo | Greek small letter omega with tonos
568
+ noback letter \x1FFB 45-245 # Ώ ⠘⠚ ômega agudo (oxia) maiúsculo | Greek capital letter omega with oxia
569
+ letter \x1F7D 4-245 # ώ ⠈⠚ ômega agudo (oxia) minúsculo | Greek small letter omega with oxia
570
+ noback letter \x1FFA 45-12345 # Ὼ ⠘⠟ ômega grave maiúsculo | Greek capital letter omega with varia
571
+ letter \x1F7C 4-12345 # ὼ ⠈⠟ ômega grave minúsculo | Greek small letter omega with varia
572
+ noback letter \x1F68 356-45-2456 # Ὠ ⠴⠘⠺ ômega maiúsculo com espírito suave | Greek capital letter omega with psili
573
+ noback letter \x1F60 356-4-2456 # ὠ ⠴⠈⠺ ômega minúsculo com espírito suave | Greek small letter omega with psili
574
+ noback letter \x1F6C 356-45-245 # Ὤ ⠴⠘⠚ ômega agudo (oxia) maiúsculo com espírito suave | Greek capital letter omega with psili and oxia
575
+ noback letter \x1F64 356-4-245 # ὤ ⠴⠈⠚ ômega agudo (oxia) minúsculo com espírito suave | Greek small letter omega with psili and oxia
576
+ noback letter \x1F6A 356-45-12345 # Ὢ ⠴⠘⠟ ômega grave maiúsculo com espírito suave | Greek capital letter omega with psili and varia
577
+ noback letter \x1F62 356-4-12345 # ὢ ⠴⠈⠟ ômega grave minúsculo com espírito suave | Greek small letter omega with psili and varia
578
+ noback letter \x1F6E 356-45-3456 # Ὦ ⠴⠘⠼ ômega circunflexo maiúsculo com espírito suave | Greek capital letter omega with psili and perispomeni
579
+ noback letter \x1F66 356-4-3456 # ὦ ⠴⠈⠼ ômega circunflexo minúsculo com espírito suave | Greek small letter omega with psili and perispomeni
580
+ noback letter \x1F69 125-45-2456 # Ὡ ⠓⠘⠺ ômega maiúsculo com espírito áspero | Greek capital letter omega with dasia
581
+ noback letter \x1F61 125-4-2456 # ὡ ⠓⠈⠺ ômega minúsculo com espírito áspero | Greek small letter omega with dasia
582
+ noback letter \x1F6D 125-45-245 # Ὥ ⠓⠘⠚ ômega agudo (oxia) maiúsculo com espírito áspero | Greek capital letter omega with dasia and oxia
583
+ noback letter \x1F65 125-4-245 # ὥ ⠓⠈⠚ ômega agudo (oxia) minúsculo com espírito áspero | Greek small letter omega with dasia and oxia
584
+ noback letter \x1F6B 125-45-12345 # Ὣ ⠓⠘⠟ ômega grave maiúsculo com espírito áspero | Greek capital letter omega with dasia and varia
585
+ noback letter \x1F63 125-4-12345 # ὣ ⠓⠈⠟ ômega grave minúsculo com espírito áspero | Greek small letter omega with dasia and varia
586
+ noback letter \x1F6F 125-45-3456 # Ὧ ⠓⠘⠼ ômega circunflexo maiúsculo com espírito áspero | Greek capital letter omega with dasia and perispomeni
587
+ noback letter \x1F67 125-4-3456 # ὧ ⠓⠈⠼ ômega circunflexo minúsculo com espírito áspero | Greek small letter omega with dasia and perispomeni
588
+
589
+ # Other Greek letters with diacritics
590
+ noback letter \x1FBC 45-1-24 # ᾼ ⠘⠁⠊ alfa maiúsculo com iota adscrito | Greek capital letter alpha with prosgegrammeni
591
+ noback letter \x1F88 356-45-1-24 # ᾈ ⠴⠘⠁⠊ alfa maiúsculo com espírito suave e iota adscrito | Greek capital letter alpha with psili and prosgegrammeni
592
+ noback letter \x1F8C 356-45-345-24 # ᾌ ⠴⠘⠜⠊ alfa agudo (oxia) maiúsculo com espírito suave e iota adscrito | Greek capital letter alpha with psili and oxia and prosgegrammeni
593
+ noback letter \x1F8A 356-45-12356-24 # ᾊ ⠴⠘⠷⠊ alfa grave maiúsculo com espírito suave e iota adscrito | Greek capital letter alpha with psili and varia and prosgegrammeni
594
+ noback letter \x1F8E 356-45-16-24 # ᾎ ⠴⠘⠡⠊ alfa circunflexo maiúsculo com espírito suave e iota adscrito | Greek capital letter alpha with psili and perispomeni and prosgegrammeni
595
+ noback letter \x1F89 125-45-1-24 # ᾉ ⠓⠘⠁⠊ alfa maiúsculo com espírito áspero e iota adscrito | Greek capital letter alpha with dasia and prosgegrammeni
596
+ noback letter \x1F8D 125-45-345-24 # ᾍ ⠓⠘⠜⠊ alfa agudo (oxia) maiúsculo com espírito áspero e iota adscrito | Greek capital letter alpha with dasia and oxia and prosgegrammeni
597
+ noback letter \x1F8B 125-45-12356-24 # ᾋ ⠓⠘⠷⠊ alfa grave maiúsculo com espírito áspero e iota adscrito | Greek capital letter alpha with dasia and varia and prosgegrammeni
598
+ noback letter \x1F8F 125-45-16-24 # ᾏ ⠓⠘⠡⠊ alfa circunflexo maiúsculo com espírito áspero e iota adscrito | Greek capital letter alpha with dasia and perispomeni and prosgegrammeni
599
+ letter \x1FB6 4-16 # ᾶ ⠈⠡ alfa circunflexo minúsculo | Greek small letter alpha with perispomeni
600
+ noback letter \x1FB3 4-1-35 # ᾳ ⠈⠁⠔ alfa minúsculo com iota subscrito | Greek small letter alpha with ypogegrammeni
601
+ noback letter \x1FB4 4-345-35 # ᾴ ⠈⠜⠔ alfa agudo (oxia) minúsculo com iota subscrito | Greek small letter alpha with oxia and ypogegrammeni
602
+ noback letter \x1FB2 4-12356-35 # ᾲ ⠈⠷⠔ alfa grave minúsculo com iota subscrito | Greek small letter alpha with varia and ypogegrammeni
603
+ noback letter \x1FB7 4-16-35 # ᾷ ⠈⠡⠔ alfa circunflexo minúsculo com iota subscrito | Greek small letter alpha with perispomeni and ypogegrammeni
604
+ noback letter \x1F80 356-4-1-35 # ᾀ ⠴⠈⠁⠔ alfa minúsculo com espírito suave e iota subscrito | Greek small letter alpha with psili and ypogegrammeni
605
+ noback letter \x1F84 356-4-345-35 # ᾄ ⠴⠈⠜⠔ alfa agudo (oxia) minúsculo com espírito suave e iota subscrito | Greek small letter alpha with psili and oxia and ypogegrammeni
606
+ noback letter \x1F82 356-4-12356-35 # ᾂ ⠴⠈⠷⠔ alfa grave minúsculo com espírito suave e iota subscrito | Greek small letter alpha with psili and varia and ypogegrammeni
607
+ noback letter \x1F86 356-4-16-35 # ᾆ ⠴⠈⠡⠔ alfa circunflexo minúsculo com espírito suave e iota subscrito | Greek small letter alpha with psili and perispomeni and ypogegrammeni
608
+ noback letter \x1F81 125-4-1-35 # ᾁ ⠓⠈⠁⠔ alfa minúsculo com espírito áspero e iota subscrito | Greek small letter alpha with dasia and ypogegrammeni
609
+ noback letter \x1F85 125-4-345-35 # ᾅ ⠓⠈⠜⠔ alfa agudo (oxia) minúsculo com espírito áspero e iota subscrito | Greek small letter alpha with dasia and oxia and ypogegrammeni
610
+ noback letter \x1F83 125-4-12356-35 # ᾃ ⠓⠈⠷⠔ alfa grave minúsculo com espírito áspero e iota subscrito | Greek small letter alpha with dasia and varia and ypogegrammeni
611
+ noback letter \x1F87 125-4-16-35 # ᾇ ⠓⠈⠡⠔ alfa circunflexo minúsculo com espírito áspero e iota subscrito | Greek small letter alpha with dasia and perispomeni and ypogegrammeni
612
+ noback letter \x1FCC 45-156-24 # ῌ ⠘⠱⠊ eta maiúsculo com iota adscrito | Greek capital letter eta with prosgegrammeni
613
+ noback letter \x1F98 356-45-156-24 # ᾘ ⠴⠘⠱⠊ eta maiúsculo com espírito suave e iota adscrito | Greek capital letter eta with psili and prosgegrammeni
614
+ noback letter \x1F9C 356-45-123456-24 # ᾜ ⠴⠘⠿⠊ eta agudo (oxia) maiúsculo com espírito suave e iota adscrito | Greek capital letter eta with psili and oxia and prosgegrammeni
615
+ noback letter \x1F9A 356-45-2346-24 # ᾚ ⠴⠘⠮⠊ eta grave maiúsculo com espírito suave e iota adscrito | Greek capital letter eta with psili and varia and prosgegrammeni
616
+ noback letter \x1F9E 356-45-126-24 # ᾞ ⠴⠘⠣⠊ eta circunflexo maiúsculo com espírito suave e iota adscrito | Greek capital letter eta with psili and perispomeni and prosgegrammeni
617
+ noback letter \x1F99 125-45-156-24 # ᾙ ⠓⠘⠱⠊ eta maiúsculo com espírito áspero e iota adscrito | Greek capital letter eta with dasia and prosgegrammeni
618
+ noback letter \x1F9D 125-45-123456-24 # ᾝ ⠓⠘⠿⠊ eta agudo (oxia) maiúsculo com espírito áspero e iota adscrito | Greek capital letter eta with dasia and oxia and prosgegrammeni
619
+ noback letter \x1F9B 125-45-2346-24 # ᾛ ⠓⠘⠮⠊ eta grave maiúsculo com espírito áspero e iota adscrito | Greek capital letter eta with dasia and varia and prosgegrammeni
620
+ noback letter \x1F9F 125-45-126-24 # ᾟ ⠓⠘⠣⠊ eta circunflexo maiúsculo com espírito áspero e iota adscrito | Greek capital letter eta with dasia and perispomeni and prosgegrammeni
621
+ letter \x1FC6 4-126 # ῆ ⠈⠣ eta circunflexo minúsculo | Greek small letter eta with perispomeni
622
+ noback letter \x1FC3 4-156-35 # ῃ ⠈⠱⠔ eta minúsculo com iota subscrito | Greek small letter eta with ypogegrammeni
623
+ noback letter \x1FC4 4-123456-35 # ῄ ⠈⠿⠔ eta agudo (oxia) minúsculo com iota subscrito | Greek small letter eta with oxia and ypogegrammeni
624
+ noback letter \x1FC2 4-2346-35 # ῂ ⠈⠮⠔ eta grave minúsculo com iota subscrito | Greek small letter eta with varia and ypogegrammeni
625
+ noback letter \x1FC7 4-126-35 # ῇ ⠈⠣⠔ eta circunflexo minúsculo com iota subscrito | Greek small letter eta with perispomeni and ypogegrammeni
626
+ noback letter \x1F90 356-4-156-35 # ᾐ ⠴⠈⠱⠔ eta minúsculo com espírito suave e iota subscrito | Greek small letter eta with psili and ypogegrammeni
627
+ noback letter \x1F94 356-4-123456-35 # ᾔ ⠴⠈⠿⠔ eta agudo (oxia) minúsculo com espírito suave e iota subscrito | Greek small letter eta with psili and oxia and ypogegrammeni
628
+ noback letter \x1F92 356-4-2346-35 # ᾒ ⠴⠈⠮⠔ eta grave minúsculo com espírito suave e iota subscrito | Greek small letter eta with psili and varia and ypogegrammeni
629
+ noback letter \x1F96 356-4-126-35 # ᾖ ⠴⠈⠣⠔ eta circunflexo minúsculo com espírito suave e iota subscrito | Greek small letter eta with psili and perispomeni and ypogegrammeni
630
+ noback letter \x1F91 125-4-156-35 # ᾑ ⠓⠈⠱⠔ eta minúsculo com espírito áspero e iota subscrito | Greek small letter eta with dasia and ypogegrammeni
631
+ noback letter \x1F95 125-4-123456-35 # ᾕ ⠓⠈⠿⠔ eta agudo (oxia) minúsculo com espírito áspero e iota subscrito | Greek small letter eta with dasia and oxia and ypogegrammeni
632
+ noback letter \x1F93 125-4-2346-35 # ᾓ ⠓⠈⠮⠔ eta grave minúsculo com espírito áspero e iota subscrito | Greek small letter eta with dasia and varia and ypogegrammeni
633
+ noback letter \x1F97 125-4-126-35 # ᾗ ⠓⠈⠣⠔ eta circunflexo minúsculo com espírito áspero e iota subscrito | Greek small letter eta with dasia and perispomeni and ypogegrammeni
634
+ letter \x0390 5-4-12456 # ΐ ⠐⠈⠻ iota agudo (tonos) minúsculo com trema | Greek small letter iota with dialytika and tonos
635
+ letter \x1FD3 5-4-12456 # ΐ ⠐⠈⠻ iota agudo (oxia) minúsculo com trema | Greek small letter iota with dialytika and oxia
636
+ letter \x1FD2 5-4-34 # ῒ ⠐⠈⠌ iota grave minúsculo com trema | Greek small letter iota with dialytika and varia
637
+ letter \x1FD6 4-146 # ῖ ⠈⠩ iota circunflexo minúsculo | Greek small letter iota with perispomeni
638
+ letter \x1FD7 5-4-146 # ῗ ⠐⠈⠩ iota circunflexo minúsculo com trema | Greek small letter iota with dialytika and perispomeni
639
+ noback letter \x1FE4 356-4-1235 # ῤ ⠴⠈⠗ rô minúsculo com espírito suave | Greek small letter rho with psili
640
+ letter \x03B0 5-4-1256 # ΰ ⠐⠈⠳ úpsilon agudo (tonos) minúsculo com trema | Greek small letter upsilon with dialytika and tonos
641
+ letter \x1FE3 5-4-1256 # ΰ ⠐⠈⠳ úpsilon agudo (oxia) minúsculo com trema | Greek small letter upsilon with dialytika and oxia
642
+ letter \x1FE2 5-4-23456 # ῢ ⠐⠈⠾ úpsilon grave minúsculo com trema | Greek small letter upsilon with dialytika and varia
643
+ letter \x1FE6 4-1236 # ῦ ⠈⠧ úpsilon circunflexo minúsculo | Greek small letter upsilon with perispomeni
644
+ letter \x1FE7 5-4-1236 # ῧ ⠐⠈⠧ úpsilon circunflexo minúsculo com trema | Greek small letter upsilon with dialytika and perispomeni
645
+ noback letter \x1F50 356-4-136 # ὐ ⠴⠈⠥ úpsilon minúsculo com espírito suave | Greek small letter upsilon with psili
646
+ noback letter \x1F54 356-4-1256 # ὔ ⠴⠈⠳ úpsilon agudo (oxia) minúsculo com espírito suave | Greek small letter upsilon with psili and oxia
647
+ noback letter \x1F52 356-4-23456 # ὒ ⠴⠈⠾ úpsilon grave minúsculo com espírito suave | Greek small letter upsilon with psili and varia
648
+ noback letter \x1F56 356-4-1236 # ὖ ⠴⠈⠧ úpsilon circunflexo minúsculo com espírito suave | Greek small letter upsilon with psili and perispomeni
649
+ noback letter \x1FFC 45-2456-24 # ῼ ⠘⠺⠊ ômega maiúsculo com iota adscrito | Greek capital letter omega with prosgegrammeni
650
+ noback letter \x1FA8 356-45-2456-24 # ᾨ ⠴⠘⠺⠊ ômega maiúsculo com espírito suave e iota adscrito | Greek capital letter omega with psili and prosgegrammeni
651
+ noback letter \x1FAC 356-45-245-24 # ᾬ ⠴⠘⠚⠊ ômega agudo (oxia) maiúsculo com espírito suave e iota adscrito | Greek capital letter omega with psili and oxia and prosgegrammeni
652
+ noback letter \x1FAA 356-45-12345-24 # ᾪ ⠴⠘⠟⠊ ômega grave maiúsculo com espírito suave e iota adscrito | Greek capital letter omega with psili and varia and prosgegrammeni
653
+ noback letter \x1FAE 356-45-3456-24 # ᾮ ⠴⠘⠼⠊ ômega circunflexo maiúsculo com espírito suave e iota adscrito | Greek capital letter omega with psili and perispomeni and prosgegrammeni
654
+ noback letter \x1FA9 125-45-2456-24 # ᾩ ⠓⠘⠺⠊ ômega maiúsculo com espírito áspero e iota adscrito | Greek capital letter omega with dasia and prosgegrammeni
655
+ noback letter \x1FAD 125-45-245-24 # ᾭ ⠓⠘⠚⠊ ômega agudo (oxia) maiúsculo com espírito áspero e iota adscrito | Greek capital letter omega with dasia and oxia and prosgegrammeni
656
+ noback letter \x1FAB 125-45-12345-24 # ᾫ ⠓⠘⠟⠊ ômega grave maiúsculo com espírito áspero e iota adscrito | Greek capital letter omega with dasia and varia and prosgegrammeni
657
+ noback letter \x1FAF 125-45-3456-24 # ᾯ ⠓⠘⠼⠊ ômega circunflexo maiúsculo com espírito áspero e iota adscrito | Greek capital letter omega with dasia and perispomeni and prosgegrammeni
658
+ letter \x1FF6 4-3456 # ῶ ⠈⠼ ômega circunflexo minúsculo | Greek small letter omega with perispomeni
659
+ noback letter \x1FF3 4-2456-35 # ῳ ⠈⠺⠔ ômega minúsculo com iota subscrito | Greek small letter omega with ypogegrammeni
660
+ noback letter \x1FF4 4-245-35 # ῴ ⠈⠚⠔ ômega agudo (oxia) minúsculo e iota subscrito | Greek small letter omega with oxia and ypogegrammeni
661
+ noback letter \x1FF2 4-12345-35 # ῲ ⠈⠟⠔ ômega grave minúsculo e iota subscrito | Greek small letter omega with varia and ypogegrammeni
662
+ noback letter \x1FF7 4-3456-35 # ῷ ⠈⠼⠔ ômega circunflexo minúsculo e iota subscrito | Greek small letter omega with perispomeni and ypogegrammeni
663
+ noback letter \x1FA0 356-4-2456-35 # ᾠ ⠴⠈⠺⠔ ômega minúsculo com espírito suave e iota subscrito | Greek small letter omega with psili and ypogegrammeni
664
+ noback letter \x1FA4 356-4-245-35 # ᾤ ⠴⠈⠚⠔ ômega agudo (oxia) minúsculo com espírito suave e iota subscrito | Greek small letter omega with psili and oxia and ypogegrammeni
665
+ noback letter \x1FA2 356-4-12345-35 # ᾢ ⠴⠈⠟⠔ ômega grave minúsculo com espírito suave e iota subscrito | Greek small letter omega with psili and varia and ypogegrammeni
666
+ noback letter \x1FA6 356-4-3456-35 # ᾦ ⠴⠈⠼⠔ ômega circunflexo minúsculo com espírito suave e iota subscrito | Greek small letter omega with psili and perispomeni and ypogegrammeni
667
+ noback letter \x1FA1 125-4-2456-35 # ᾡ ⠓⠈⠺⠔ ômega minúsculo com espírito áspero e iota subscrito | Greek small letter omega with dasia and ypogegrammeni
668
+ noback letter \x1FA5 125-4-245-35 # ᾥ ⠓⠈⠚⠔ ômega agudo (oxia) minúsculo com espírito áspero e iota subscrito | Greek small letter omega with dasia and oxia and ypogegrammeni
669
+ noback letter \x1FA3 125-4-12345-35 # ᾣ ⠓⠈⠟⠔ ômega grave minúsculo com espírito áspero e iota subscrito | Greek small letter omega with dasia and varia and ypogegrammeni
670
+ noback letter \x1FA7 125-4-3456-35 # ᾧ ⠓⠈⠼⠔ ômega circunflexo minúsculo com espírito áspero e iota subscrito | Greek small letter omega with dasia and perispomeni and ypogegrammeni
671
+
672
+ # Uppercase Russian alphabet
673
+ letter \x0401 45-16 # Ё ⠘⠡ io maiúsculo | Cyrillic capital letter io
674
+ letter \x0410 45-1 # А ⠘⠁ a maiúsculo cirílico | Cyrillic capital letter a
675
+ letter \x0411 45-12 # Б ⠘⠃ be maiúsculo | Cyrillic capital letter be
676
+ letter \x0412 45-2456 # В ⠘⠺ ve maiúsculo | Cyrillic capital letter ve
677
+ letter \x0413 45-1245 # Г ⠘⠛ ge maiúsculo | Cyrillic capital letter ghe
678
+ letter \x0414 45-145 # Д ⠘⠙ de maiúsculo | Cyrillic capital letter de
679
+ letter \x0415 45-15 # Е ⠘⠑ ie maiúsculo | Cyrillic capital letter ie
680
+ letter \x0416 45-245 # Ж ⠘⠚ je maiúsculo | Cyrillic capital letter zhe
681
+ letter \x0417 45-1356 # З ⠘⠵ ze maiúsculo | Cyrillic capital letter ze
682
+ letter \x0418 45-24 # И ⠘⠊ i maiúsculo cirílico | Cyrillic capital letter i
683
+ letter \x0419 45-12346 # Й ⠘⠯ i kratkoye maiúsculo | Cyrillic capital letter short i
684
+ letter \x041A 45-13 # К ⠘⠅ ka maiúsculo | Cyrillic capital letter ka
685
+ letter \x041B 45-123 # Л ⠘⠇ el maiúsculo | Cyrillic capital letter el
686
+ letter \x041C 45-134 # М ⠘⠍ em maiúsculo | Cyrillic capital letter em
687
+ letter \x041D 45-1345 # Н ⠘⠝ en maiúsculo | Cyrillic capital letter en
688
+ letter \x041E 45-135 # О ⠘⠕ o maiúsculo cirílico | Cyrillic capital letter o
689
+ letter \x041F 45-1234 # П ⠘⠏ pe maiúsculo | Cyrillic capital letter pe
690
+ letter \x0420 45-1235 # Р ⠘⠗ er maiúsculo | Cyrillic capital letter er
691
+ letter \x0421 45-234 # С ⠘⠎ es maiúsculo | Cyrillic capital letter es
692
+ letter \x0422 45-2345 # Т ⠘⠞ te maiúsculo | Cyrillic capital letter te
693
+ letter \x0423 45-136 # У ⠘⠥ u maiúsculo cirílico | Cyrillic capital letter u
694
+ letter \x0424 45-124 # Ф ⠘⠋ ef maiúsculo | Cyrillic capital letter ef
695
+ letter \x0425 45-125 # Х ⠘⠓ kha maiúsculo | Cyrillic capital letter kha
696
+ letter \x0426 45-14 # Ц ⠘⠉ tse maiúsculo | Cyrillic capital letter tse
697
+ letter \x0427 45-12345 # Ч ⠘⠟ tche maiúsculo | Cyrillic capital letter che
698
+ letter \x0428 45-156 # Ш ⠘⠱ sha maiúsculo | Cyrillic capital letter sha
699
+ letter \x0429 45-1346 # Щ ⠘⠭ shcha maiúsculo | Cyrillic capital letter shcha
700
+ letter \x042A 45-12356 # Ъ ⠘⠷ tvyordɨy znak maiúsculo | Cyrillic capital letter hard sign
701
+ letter \x042B 45-2346 # Ы ⠘⠮ yeru maiúsculo | Cyrillic capital letter yeru
702
+ letter \x042C 45-23456 # Ь ⠘⠾ myagkiy znak maiúsculo | Cyrillic capital letter soft sign
703
+ noback letter \x042D 45-246 # Э ⠘⠪ e oborotnoie maiúsculo | Cyrillic capital letter reversed e
704
+ letter \x042E 45-1256 # Ю ⠘⠳ yu maiúsculo | Cyrillic capital letter yu
705
+ letter \x042F 45-1246 # Я ⠘⠫ ia maiúsculo | Cyrillic capital letter ya
706
+
707
+ # Lowercase Russian alphabet
708
+ noback letter \x0430 5-1 # а ⠐⠁ a minúsculo cirílico | Cyrillic small letter a
709
+ noback letter \x0431 5-12 # б ⠐⠃ be minúsculo | Cyrillic small letter be
710
+ noback letter \x0432 5-2456 # в ⠐⠺ ve minúsculo | Cyrillic small letter ve
711
+ noback letter \x0433 5-1245 # г ⠐⠛ ge minúsculo | Cyrillic small letter ghe
712
+ noback letter \x0434 5-145 # д ⠐⠙ de minúsculo | Cyrillic small letter de
713
+ noback letter \x0435 5-15 # е ⠐⠑ ie minúsculo | Cyrillic small letter ie
714
+ noback letter \x0436 5-245 # ж ⠐⠚ je minúsculo | Cyrillic small letter zhe
715
+ noback letter \x0437 5-1356 # з ⠐⠵ ze minúsculo | Cyrillic small letter ze
716
+ noback letter \x0438 5-24 # и ⠐⠊ i minúsculo cirílico | Cyrillic small letter i
717
+ noback letter \x0439 5-12346 # й ⠐⠯ i kratkoye minúsculo | Cyrillic small letter short i
718
+ noback letter \x043A 5-13 # к ⠐⠅ ka minúsculo | Cyrillic small letter ka
719
+ noback letter \x043B 5-123 # л ⠐⠇ el minúsculo | Cyrillic small letter el
720
+ noback letter \x043C 5-134 # м ⠐⠍ em minúsculo | Cyrillic small letter em
721
+ noback letter \x043D 5-1345 # н ⠐⠝ en minúsculo | Cyrillic small letter en
722
+ noback letter \x043E 5-135 # о ⠐⠕ o minúsculo cirílico | Cyrillic small letter o
723
+ noback letter \x043F 5-1234 # п ⠐⠏ pe minúsculo | Cyrillic small letter pe
724
+ noback letter \x0440 5-1235 # р ⠐⠗ er minúsculo | Cyrillic small letter er
725
+ noback letter \x0441 5-234 # с ⠐⠎ es minúsculo | Cyrillic small letter es
726
+ noback letter \x0442 5-2345 # т ⠐⠞ te minúsculo | Cyrillic small letter te
727
+ noback letter \x0443 5-136 # у ⠐⠥ u minúsculo cirílico | Cyrillic small letter u
728
+ noback letter \x0444 5-124 # ф ⠐⠋ ef minúsculo | Cyrillic small letter ef
729
+ noback letter \x0445 5-125 # х ⠐⠓ kha minúsculo | Cyrillic small letter kha
730
+ noback letter \x0446 5-14 # ц ⠐⠉ tse minúsculo | Cyrillic small letter tse
731
+ noback letter \x0447 5-12345 # ч ⠐⠟ tche minúsculo | Cyrillic small letter che
732
+ noback letter \x0448 5-156 # ш ⠐⠱ sha minúsculo | Cyrillic small letter sha
733
+ noback letter \x0449 5-1346 # щ ⠐⠭ shcha minúsculo | Cyrillic small letter shcha
734
+ noback letter \x044A 5-12356 # ъ ⠐⠷ tvyordɨy znak minúsculo | Cyrillic small letter hard sign
735
+ noback letter \x044B 5-2346 # ы ⠐⠶ yeru minúsculo | Cyrillic small letter yeru
736
+ noback letter \x044C 5-23456 # ь ⠐⠾ myagkiy znak minúsculo | Cyrillic small letter soft sign
737
+ noback letter \x044D 5-246 # э ⠐⠪ e oborotnoie minúsculo | Cyrillic small letter reversed e
738
+ noback letter \x044E 5-1256 # ю ⠐⠳ yu minúsculo | Cyrillic small letter yu
739
+ noback letter \x044F 5-1246 # я ⠐⠫ ia minúsculo | Cyrillic small letter ya
740
+ noback letter \x0451 5-16 # ё ⠐⠡ io minúsculo | Cyrillic small letter io
741
+
742
+ # Hebrew alphabet
743
+ letter \x05D0 1 # א ⠁ Hebrew letter alef
744
+ letter \x05D1 12 # ב ⠃ Hebrew letter bet
745
+ letter \x05D2 1245 # ג ⠛ Hebrew letter gimel
746
+ letter \x05D3 145 # ד ⠙ Hebrew letter dalet
747
+ letter \x05D4 125 # ה ⠓ Hebrew letter he
748
+ letter \x05D5 2456 # ו ⠺ Hebrew letter vav
749
+ letter \x05D6 1356 # ז ⠵ Hebrew letter zayin
750
+ letter \x05D7 1346 # ח ⠭ Hebrew letter het
751
+ letter \x05D8 2345 # ט ⠞ Hebrew letter tet
752
+ letter \x05D9 245 # י ⠚ Hebrew letter yod
753
+ letter \x05DB 13 # כ ⠅ Hebrew letter kaf
754
+ letter \x05DA 13 # ך ⠅ Hebrew letter final kaf
755
+ letter \x05DC 123 # ל ⠇ Hebrew letter lamed
756
+ letter \x05DE 134 # מ ⠍ Hebrew letter mem
757
+ letter \x05DD 134 # ם ⠍ Hebrew letter final mem
758
+ letter \x05E0 1345 # נ ⠝ Hebrew letter nun
759
+ letter \x05DF 1345 # ן ⠝ Hebrew letter final nun
760
+ letter \x05E1 234 # ס ⠎ Hebrew letter samekh
761
+ letter \x05E2 1246 # ע ⠫ Hebrew letter ayin
762
+ letter \x05E4 1234 # פ ⠏ Hebrew letter pe
763
+ letter \x05E3 1234 # ף ⠏ Hebrew letter final pe
764
+ letter \x05E6 2346 # צ ⠮ Hebrew letter tsadi
765
+ letter \x05E5 2346 # ץ ⠮ Hebrew letter final tsadi
766
+ letter \x05E7 12345 # ק ⠟ Hebrew letter qof
767
+ letter \x05E8 1235 # ר ⠗ Hebrew letter resh
768
+ letter \x05E9 146 # ש ⠩ Hebrew letter shin
769
+ letter \x05EA 1456 # ת ⠹ Hebrew letter tav
770
+
771
+ punctuation \x2010 36 # ‐ ⠤ hífen | hyphen
772
+ punctuation \x2011 36 # ‑ ⠤ non-breaking hyphen
773
+ punctuation \x2012 36 # ‒ ⠤ figure dash
774
+ math \x2013 36 # – ⠤ traço de ligação | en dash
775
+ noback punctuation \x2014 36-36 # — ⠤⠤ travessão | em dash
776
+ sign \x2015 4-14 # ― ⠈⠉ horizontal bar
777
+ math \x2016 456-123 # ‖ ⠸⠇ barra dupla | double vertical line
778
+ noback punctuation \x2018 56-236 # ‘ ⠰⠦ apóstrofo invertido | single turned comma quotation mark
779
+ punctuation \x2019 56-236 # ’ ⠰⠦ apóstrofo | right single quotation mark
780
+ punctuation \x201C 236 # “ ⠦ abre aspas | left double quotation mark
781
+ punctuation \x201D 236 # ” ⠦ fecha aspas | right double quotation mark
782
+ punctuation \x201E 56-236 # „ ⠰⠦ double low-9 quotation mark
783
+ punctuation \x201F 56-236 # ‟ ⠰⠦ double high-reversed-9 quotation mark
784
+ sign \x2022 246-135 # • ⠪⠕ bolinha | bullet
785
+ noback sign \x2023 6-23456 # ‣ ⠠⠾ marcador triangular | triangular bullet
786
+ noback punctuation \x2026 3-3-3 # … ⠄⠄⠄ reticências | horizontal ellipsis
787
+ math \x2030 456-356-356 # ‰ ⠸⠴⠴ por mil | per mille sign
788
+ noback math \x2032 1256 # ′ ⠳ linha ou plica | prime
789
+ noback math \x2033 1256-1256 # ″ ⠳⠳ duas linhas ou plica dupla | double prime
790
+ noback math \x2034 1256-1256-1256 # ‴ ⠳⠳⠳ três linhas ou plica tripla | triple prime
791
+ noback sign \x2043 36 # ⁃ ⠤ marcador tracinho | hyphen bullet
792
+ math \x2044 5-256 # ⁄ ⠐⠲ barra de fração | fraction slash
793
+
794
+ # Some superscript and subscript characters
795
+ math \x2070 16-3456-245 # ⁰ ⠡⠼⠚ zero sobrescrito | superscript zero
796
+ math \x2074 16-3456-145 # ⁴ ⠡⠼⠙ quatro sobrescrito | superscript four
797
+ math \x2075 16-3456-15 # ⁵ ⠡⠼⠑ cinco sobrescrito | superscript five
798
+ math \x2076 16-3456-124 # ⁶ ⠡⠼⠋ seis sobrescrito | superscript six
799
+ math \x2077 16-3456-1245 # ⁷ ⠡⠼⠛ sete sobrescrito | superscript seven
800
+ math \x2078 16-3456-125 # ⁸ ⠡⠼⠓ oito sobrescrito | superscript eight
801
+ math \x2079 16-3456-24 # ⁹ ⠡⠼⠊ nove sobrescrito | superscript nine
802
+ noback math \x207F 16-1345 # ⁿ ⠡⠝ n sobrescrito | superscript Latin small letter n
803
+ math \x2080 34-3456-245 # ₀ ⠌⠼⠚ zero subscrito | subscript zero
804
+ math \x2081 34-3456-1 # ₁ ⠌⠼⠁ um subscrito | subscript one
805
+ math \x2082 34-3456-12 # ₂ ⠌⠼⠃ dois subscrito | subscript two
806
+ math \x2083 34-3456-14 # ₃ ⠌⠼⠉ três subscrito | subscript three
807
+ math \x2084 34-3456-145 # ₄ ⠌⠼⠙ quatro subscrito | subscript four
808
+ math \x2085 34-3456-15 # ₅ ⠌⠼⠑ cinco subscrito | subscript five
809
+ math \x2086 34-3456-124 # ₆ ⠌⠼⠋ seis subscrito | subscript six
810
+ math \x2087 34-3456-1245 # ₇ ⠌⠼⠛ sete subscrito | subscript seven
811
+ math \x2088 34-3456-125 # ₈ ⠌⠼⠓ oito subscrito | subscript eight
812
+ math \x2089 34-3456-24 # ₉ ⠌⠼⠊ nove subscrito | subscript nine
813
+
814
+ noback sign \x20A2 46-14-1235 # ₢ ⠨⠉⠗ Cruzeiro sign
815
+ sign \x20AC 4-15 # € ⠈⠑ euro sign
816
+ math \x2102 456-14 # ℂ ⠸⠉ números complexos, c maiúsculo cunhado | double-struck capital c
817
+ noback sign \x2103 356-46-14 # ℃ ⠴⠨⠉ graus Celsius | degree Celsius
818
+ noback sign \x2109 356-46-124 # ℉ ⠴⠨⠋ graus Fahrenheit | degree Fahrenheit
819
+ math \x2115 456-1345 # ℕ ⠸⠝ números naturais, n maiúsculo cunhado | double-struck capital n
820
+ math \x211A 456-12345 # ℚ ⠸⠟ números racionais, q maiúsculo cunhado | double-struck capital q
821
+ math \x211D 456-1235 # ℝ ⠸⠗ números reais, r maiúsculo cunhado | double-struck capital r
822
+ math \x2124 456-1356 # ℤ ⠸⠵ números inteiros, z maiúsculo cunhado | double-struck capital z
823
+ noback sign \x212A 46-13 # K ⠨⠅ graus Kelvin | degrees Kelvin
824
+ math \x2135 6-1256 # ℵ ⠠⠳ primeiro cardinal transfinito, símbolo alef | alef symbol
825
+
826
+ # Some fractions
827
+ math \x2150 3456-2-1245 # ⅐ ⠼⠂⠛ um sétimo | vulgar fraction one seventh
828
+ math \x2151 3456-2-24 # ⅑ ⠼⠂⠊ um nono | vulgar fraction one ninth
829
+ math \x2152 3456-2-1-245 # ⅒ ⠼⠂⠁⠚ um décimo | vulgar fraction one tenth
830
+ math \x2153 3456-2-14 # ⅓ ⠼⠂⠉ um terço | vulgar fraction one third
831
+ math \x2154 3456-23-14 # ⅔ ⠼⠆⠉ dois terços | vulgar fraction two thirds
832
+ math \x2155 3456-2-15 # ⅕ ⠼⠂⠑ um quinto | vulgar fraction one fifth
833
+ math \x2156 3456-23-15 # ⅖ ⠼⠆⠑ dois quintos | vulgar fraction two fifths
834
+ math \x2157 3456-25-15 # ⅗ ⠼⠒⠑ três quintos | vulgar fraction three fifths
835
+ math \x2158 3456-256-15 # ⅘ ⠼⠲⠑ quatro quintos | vulgar fraction four fifths
836
+ math \x2159 3456-2-124 # ⅙ ⠼⠂⠋ um sexto | vulgar fraction one sixth
837
+ math \x215A 3456-26-124 # ⅚ ⠼⠢⠋ cinco sextos | vulgar fraction five sixths
838
+ math \x215B 3456-2-125 # ⅛ ⠼⠂⠓ um oitavo | vulgar fraction one eighth
839
+ math \x215C 3456-25-125 # ⅜ ⠼⠒⠓ três oitavos | vulgar fraction three eighths
840
+ math \x215D 3456-26-125 # ⅝ ⠼⠢⠓ cinco oitavos | vulgar fraction five eighths
841
+ math \x215E 3456-2356-125 # ⅞ ⠼⠶⠓ sete oitavos | vulgar fraction seven eighths
842
+ math \x215F 3456-1-5-256 # ⅟ ⠼⠁⠐⠲ numerador um | fraction numerator one
843
+ math \x2189 3456-356-14 # ↉ ⠼⠴⠉ zero sobre três | vulgar fraction zero thirds
844
+
845
+ noback sign \x2190 246-25 # ← ⠪⠒ seta para esquerda | leftwards arrow
846
+ noback sign \x2192 25-135 # → ⠒⠕ seta para direita | rightwards arrow
847
+ sign \x2194 246-25-135 # ↔ ⠪⠒⠕ seta de duplo sentido, para esquerda e direita | left right arrow
848
+ math \x2200 46-3 # ∀ ⠨⠄ para todo | for all
849
+ math \x2202 456-145 # ∂ ⠸⠙ derivada parcial | partial differential
850
+ math \x2204 45-46-26 # ∄ ⠘⠨⠢ não existe | there does not exist
851
+ math \x2205 456-245 # ∅ ⠸⠚ conjunto vazio | empty set
852
+ math \x2207 4-12456 # ∇ ⠈⠻ nabla
853
+ noback math \x2208 126-2 # ∈ ⠣⠂ pertence | element of
854
+ math \x2209 45-126-2 # ∉ ⠘⠣⠂ não pertence | not an element of
855
+ math \x2212 36 # − ⠤ menos | minus sign
856
+ math \x2215 256 # ∕ ⠲ barra de divisão | division slash
857
+ noback math \x2216 5-3 # ∖ ⠐⠄ diferença de conjunto | set minus
858
+
859
+ # Root symbols
860
+ math \x221A 1246-156 # √ ⠫⠱ raiz quadrada | square root
861
+ math \x221B 1246-3456-14-156 # ∛ ⠫⠼⠉⠱ raiz cúbica | cube root
862
+ math \x221C 1246-3456-145-156 # ∜ ⠫⠼⠙⠱ raiz quarta | fourth root
863
+
864
+ math \x221F 456-36 # ∟ ⠸⠤ ângulo reto | right angle
865
+ noback math \x2223 456 # ∣ ⠸ divide | divides
866
+ noback math \x2225 456-123 # ∥ ⠸⠇ paralelo a | parallel to
867
+ noback math \x2227 56-2 # ∧ ⠰⠂ conjunção, e lógico | logical and
868
+ noback math \x2228 56-3 # ∨ ⠰⠄ disjunção, ou lógico | logical or
869
+ math \x2229 456-156 # ∩ ⠸⠱ interseção | intersection
870
+ math \x222A 456-345 # ∪ ⠸⠜ união | union
871
+ noback math \x222B 12346-156 # ∫ ⠯⠱ integral
872
+ math \x222C 12346-12346-156 # ∬ ⠯⠯⠱ Integral dupla | double integral
873
+ math \x222D 12346-12346-12346-156 # ∭ ⠯⠯⠯⠱ Integral tripla | triple integral
874
+ noback math \x2234 6-16 # ∴ ⠠⠡ portanto | therefore
875
+ math \x2243 56-1256-2 # ≃ ⠰⠳⠂ assintoticamente igual a | asymptotically equal to
876
+ math \x2245 4-2356 # ≅ ⠐⠢⠶ aproximadamente igual a | approximately equal to
877
+ math \x224D 5-26-3 # ≍ ⠐⠢⠄ equivalente a | equivalent to
878
+ math \x2260 45-2356 # ≠ ⠘⠶ diferente de | not equal to
879
+ noback math \x2261 2356-2356 # ≡ ⠶⠶ congruente, idêntico a | identical to
880
+ noback math \x2264 246-2356 # ≤ ⠪⠶ menor ou igual a | less-than or equal to
881
+ noback math \x2265 135-2356 # ≥ ⠕⠶ maior ou igual a | greater-than or equal to
882
+ noback math \x226A 246-246 # ≪ ⠪⠪ muito menor quê | much less-than
883
+ noback math \x226B 135-135 # ≫ ⠕⠕ muito maior quê | much greater-than
884
+ math \x226E 45-246 # ≮ ⠘⠪ não menor quê | not less-than
885
+ noback math \x226F 45-135 # ≯ ⠘⠕ não maior quê | not greater-than
886
+ noback math \x22BB 56-356 # ⊻ ⠰⠴ disjunção exclusiva, ou exclusivo | xor
887
+ math \x22BF 456-236 # ⊿ ⠸⠦ triângulo retângulo | right triangle
888
+ noback math \x22C5 3 # ⋅ ⠄ operador ponto, multiplicação | dot operator
889
+ noback sign \x2422 146 # ␢ ⠩ símbolo de branco | blank symbol
890
+ noback math \x25A0 456-13456 # ■ ⠸⠽ quadrado preto | black square
891
+ noback math \x25A1 456-13456 # □ ⠸⠽ quadrado branco | white square
892
+ sign \x25AA 456-13456 # ▪ ⠸⠽ quadradinho preto | black small square
893
+ noback math \x25AC 12346-13456 # ▬ ⠯⠽ retângulo preto | black rectangle
894
+ noback math \x25AD 12346-13456 # ▭ ⠯⠽ retângulo branco | white rectangle
895
+ noback math \x25B2 6-23456 # ▲ ⠠⠾ triângulo preto apontando para cima | black up-pointing triangle
896
+ noback math \x25B3 6-23456 # △ ⠠⠾ triângulo branco apontando para cima | white up-pointing triangle
897
+ noback math \x25CB 246-135 # ○ ⠪⠕ círculo branco | white circle
898
+ noback math \x25CF 246-135 # ● ⠪⠕ círculo preto | black circle
899
+ noback sign \x25E6 246-135 # ◦ ⠪⠕ bolinha branca | white bullet
900
+ noback sign \x25FE 456-13456 # ◾ ⠸⠽ quadradinho médio preto | black medium small square
901
+ math \x27C2 3456-3 # ⟂ ⠼⠄ perpendicular
902
+
903
+ # Do not back-translate the left angle bracket in favor of back-translating the
904
+ # Latin lowercase k after a sequence with two or more uppercase letters
905
+ noback math \x27E8 5-13 # ⟨ ⠐⠅ abre parêntesis angular | mathematical left angle bracket
906
+ math \x27E9 46-2 # ⟩ ⠨⠂ fecha parêntesis angular | mathematical right angle bracket
907
+
908
+ # Some fullwidth punctuations
909
+ noback punctuation \xFF01 235 # ! ⠖ fullwidth exclamation mark
910
+ noback punctuation \xFF0C 2 # , ⠂ fullwidth comma
911
+ noback punctuation \xFF0E 3 # . ⠄ fullwidth full stop
912
+ noback punctuation \xFF1A 25 # : ⠒ fullwidth colon
913
+ noback punctuation \xFF1B 23 # ; ⠆ fullwidth semicolon
914
+ noback punctuation \xFF1F 26 # ? ⠢ fullwidth question mark
915
+
916
+ # Unicode Braille characters
917
+ include braille-patterns.cti
918
+
919
+ # Braille indicator entries
920
+
921
+ capsletter 46 # ⠨
922
+ begcapsword 46-46 # ⠨⠨
923
+ endcapsword 5 # ⠐
924
+ hyphen - 36 # ⠤
925
+ numsign 3456 # ⠼
926
+ decpoint , 2 # ⠂ vírgula decimal | decimal comma
927
+ midendnumericmodechars ,
928
+ nonumsign 5 # ⠐
929
+ numericnocontchars abcdefghij
930
+ multind 5 nonumsign endcapsword
931
+ begcomp 5-2 # ⠐⠂
932
+ endcomp 5-2 # ⠐⠂
933
+ # lencapsphrase 4 frase em letras maiúsculas com mínimo de 4 palavras | phrase in all capital letters with a minimum of 4 words
934
+ # begcapsphrase 25-46-46 # ⠒⠨⠨
935
+ # endcapsphrase before 46-46 # ⠨⠨
936
+ emphclass italic
937
+ emphclass underline
938
+ emphclass bold
939
+ noback begemph italic 35 # ⠔
940
+ noback begemph bold 35 # ⠔
941
+ noback begemph underline 35 # ⠔
942
+ noback endemph italic 35 # ⠔
943
+ noback endemph bold 35 # ⠔
944
+ noback endemph underline 35 # ⠔
945
+
946
+ # Translation entries
947
+
948
+ midnum , 2 # ⠂
949
+ midnum . 3 # ⠄
950
+ begnum § 234-234 # ⠎⠎
951
+
952
+ # Examples of the use of apostrophe as a quotation mark variant can be found in
953
+ # the 2002 Grafia Braille para a Língua Portuguesa, item 36
954
+ prepunc ' 56-236 # ⠰⠦
955
+ postpunc ' 56-236 # ⠰⠦
956
+
957
+ # Examples of the use of apostrophe in the middle of a word can be found in
958
+ # item 33 of the 2002 Grafia Braille para a Língua Portuguesa
959
+ noback midword ' 3 # ⠄
960
+ noback midword \x2019 3 # ’ ⠄
961
+
962
+ # Definition and rule of use of the ampersand can be found in the
963
+ # publication of Portugal, Chapter II, item 39 of book Grafia Braille para a
964
+ # Língua Portuguesa, 3rd edition, 2002
965
+ noback before space after space always & 12346 # ⠯
966
+ noback before space always & 0-12346 # ⠀⠯
967
+ noback after space always & 12346-0 # ⠯⠀
968
+ noback always & 0-12346-0 # ⠀⠯⠀
969
+
970
+ # With Liblouis 3.37.0 and earlier on screen readers, braille typing
971
+ # the plus sign between numbers doesn't work back-translation
972
+ # with "midnum + 235", while this doesn't work,
973
+ # using "endnum + 235" to achieve the desired effect,
974
+ # similar situation with the multiplication and division signs
975
+ endnum + 235 # ⠖
976
+ endnum × 236 # ⠦
977
+ endnum ÷ 256 # ⠲
978
+
979
+ # Note on the representation of ordinal numbers in Portugal can only be found in
980
+ # the book published in Portugal, Chapter II, item 15 of book Grafia Braille
981
+ # para a Língua Portuguesa, 3rd edition, 2002, excerpt in Portuguese:
982
+ # Os números ordinais representam-se pelos caracteres da 5ª série, precedidos do
983
+ # sinal ⠼ (3456) e seguidos de uma das terminações *o, a, os, as*. Em Portugal,
984
+ # contudo, está mais difundida a representação dos ordinais pelos cardinais,
985
+ # seguidos de ponto e das referidas terminações.
986
+ noback always .ª 3-1 # ⠄⠁
987
+ noback endword ª. 1-3 # ⠁⠄
988
+ noback always .º 3-135 # ⠄⠕
989
+ noback endword º. 135-3 # ⠕⠄
990
+ endnum \x00AA 3-1 # ª ⠄⠁
991
+ endnum \x00BA 3-135 # º ⠄⠕
992
+ # The entry "endnum \x00BA 135" has been used for years to back-translate
993
+ # masculine ordinal numbers in braille typing mode on screen readers, until a
994
+ # better way is found this trick continues to be used
995
+ nofor endnum \x00BA 135 # º ⠕
996
+
997
+ # Parentheses
998
+ nofor begword ( 126-3 # ⠣⠄
999
+ noback begnum ( 126 # ⠣
1000
+ midnum ( 126 # ⠣
1001
+ endnum ( 126 # ⠣
1002
+ after math always ( 126 # ⠣
1003
+ noback begnum ) 345 # ⠜
1004
+ midnum ) 345 # ⠜
1005
+ endnum ) 345 # ⠜
1006
+ after math always ) 345 # ⠜
1007
+
1008
+ # Less-than and greater-than signs in mathematical expressions
1009
+ begnum < 246 # ⠪
1010
+ midnum < 246 # ⠪
1011
+ endnum < 246 # ⠪
1012
+ noback begnum > 135 # ⠕
1013
+ noback midnum > 135 # ⠕
1014
+ noback endnum > 135 # ⠕
1015
+ noback after math always > 135 # ⠕
1016
+ noback begnum >o 135-5-135 # ⠕⠐⠕
1017
+ midnum >o 135-5-135 # ⠕⠐⠕
1018
+ noback endnum >o 135-5-135 # ⠕⠐⠕
1019
+
1020
+ # Square brackets
1021
+ nofor begword [ 12356-3 # ⠷⠄
1022
+ noback begnum [ 12356 # ⠷
1023
+ midnum [ 12356 # ⠷
1024
+ endnum [ 12356 # ⠷
1025
+ after math always [ 12356 # ⠷
1026
+ noback begnum ] 23456 # ⠾
1027
+ midnum ] 23456 # ⠾
1028
+ endnum ] 23456 # ⠾
1029
+ after math always ] 23456 # ⠾
1030
+
1031
+ # Parentheses and square brackets together in mathematical expressions
1032
+ noback begnum [( 12356-126 # ⠷⠣
1033
+ noback midnum [( 12356-126 # ⠷⠣
1034
+ noback endnum [( 12356-126 # ⠷⠣
1035
+ noback begnum )] 345-23456 # ⠜⠾
1036
+ noback midnum )] 345-23456 # ⠜⠾
1037
+ noback endnum )] 345-23456 # ⠜⠾
1038
+
1039
+ # Left curly bracket
1040
+ begnum { 5-123 # ⠐⠇
1041
+ midnum { 5-123 # ⠐⠇
1042
+ endnum { 5-123 # ⠐⠇
1043
+
1044
+ # Definition and rule of use of the therefore character, it is found in the book
1045
+ # Grafia Matemática Braille (Braille Mathematics Writing)
1046
+ noback before space after space always \x2234 6-16 # ∴ ⠠⠡
1047
+ noback before space always \x2234 0-6-16 # ∴ ⠀⠠⠡
1048
+ noback after space always \x2234 6-16-0 # ∴ ⠠⠡⠀
1049
+ noback always \x2234 0-6-16-0 # ∴ ⠀⠠⠡⠀
1050
+
1051
+ # Left angle bracket
1052
+ begnum \x27E8 5-13 # ⟨ ⠐⠅
1053
+ midnum \x27E8 5-13 # ⟨ ⠐⠅
1054
+ endnum \x27E8 5-13 # ⟨ ⠐⠅
1055
+
1056
+ # Classe de caracteres representados ou prefixados em braille com pontos da coluna direita |
1057
+ # Class of characters represented or prefixed in braille with right column dots
1058
+ attribute rightcolumnchars $%')/>\\]^_`{|}¢£¤¥¨«¬´µ¶»ÿũŨŸąęĄĘăĕĭŏĂĔĬŎΑΒΓΔΕΖΗΘΙΚΛ
1059
+ attribute rightcolumnchars ΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρσςτυφχψωϜϝϚϛϞϟϠϡϐϑϖϕϲϹϘ
1060
+ attribute rightcolumnchars ϙͲͳΆΈΉΊΌΎΏΐΪΫάέήίΰϊϋόύώὰάὲέὴήὶίὸόὺύὼώᾰᾲᾳᾴᾶᾷᾸᾺΆᾼῂῃῄῆῇῈ
1061
+ attribute rightcolumnchars ΈῊΉῌῐῒΐῖῗῘῚΊῠῢΰῦῧῨῪΎῲῳῴῶῷῸΌῺΏῼЁАБВГДЕЖЗИЙКЛМНОПРСТУФХ
1062
+ attribute rightcolumnchars ЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюяё―‖‘’„‟‣‰⁄₢
1063
+ attribute rightcolumnchars €ℂℕℚℝℤKℵ∀∂∄∅∇∉∖∟∣∥∧∨∩∪≃≅≍≠≮≯⊻⊿■□▪▲△◾⟨⟩
1064
+
1065
+ # The vertical bar symbol when preceding a Braille represented or prefixed
1066
+ # character with dots in the right column does not require space between them in
1067
+ # forward translation, similarly when it precedes a character of the space class
1068
+ noback before uppercase before rightcolumnchars before space always | 456 # ⠸
1069
+ # Except for the cases of the above entry, the forward translation of a
1070
+ # vertical bar preceding other characters requires space between them, e.g.,
1071
+ # when it precedes a braille pattern with dots in the left column
1072
+ noback always | 456-0 # ⠸⠀
1073
+
1074
+ # 6-dot computer braille characters
1075
+ comp6 ! 5-235 # ⠐⠖
1076
+ comp6 $ 4-145 # ⠈⠙
1077
+ comp6 & 5-12346 # ⠐⠯
1078
+ comp6 ' 6 # ⠠
1079
+ comp6 ( 5-126 # ⠐⠣
1080
+ comp6 ) 5-345 # ⠐⠜
1081
+ comp6 / 256 # ⠲
1082
+ comp6 < 5-246 # ⠐⠪
1083
+ comp6 > 5-135 # ⠐⠕
1084
+ comp6 [ 5-12356 # ⠐⠷
1085
+ comp6 ] 5-23456 # ⠐⠾
1086
+ comp6 | 456-123 # ⠸⠇
1087
+ comp6 § 5-234 # ⠐⠎
1088
+ comp6 \x00AA 456-1 # ª ⠸⠁
1089
+ comp6 « 5-236 # ⠐⠦
1090
+ comp6 \x00AC 456-3 # ¬ ⠸⠄
1091
+ comp6 \x00BA 456-135 # º ⠸⠕
1092
+ comp6 » 5-356 # ⠐⠴
1093
+ comp6 \x2019 6 # ’ ⠠
1094
+ comp6 \x2227 45-1 # ∧ ⠘⠁
1095
+ comp6 \x2228 45-2 # ∨ ⠘⠂
1096
+ comp6 \x0391 456-45-1 # Α ⠸⠘⠁
1097
+ comp6 \x0392 456-45-12 # Β ⠸⠘⠃
1098
+ comp6 \x0393 456-45-1245 # Γ ⠸⠘⠛
1099
+ comp6 \x0394 456-45-145 # Δ ⠸⠘⠙
1100
+ comp6 \x0395 456-45-15 # Ε ⠸⠘⠑
1101
+ comp6 \x0396 456-45-1356 # Ζ ⠸⠘⠵
1102
+ comp6 \x0397 456-45-156 # Η ⠸⠘⠱
1103
+ comp6 \x0398 456-45-1456 # Θ ⠸⠘⠹
1104
+ comp6 \x0399 456-45-24 # Ι ⠸⠘⠊
1105
+ comp6 \x039A 456-45-13 # Κ ⠸⠘⠅
1106
+ comp6 \x039B 456-45-123 # Λ ⠸⠘⠇
1107
+ comp6 \x039C 456-45-134 # Μ ⠸⠘⠍
1108
+ comp6 \x039D 456-45-1345 # Ν ⠸⠘⠝
1109
+ comp6 \x039E 456-45-1346 # Ξ ⠸⠘⠭
1110
+ comp6 \x039F 456-45-135 # Ο ⠸⠘⠕
1111
+ comp6 \x03A0 456-45-1234 # Π ⠸⠘⠏
1112
+ comp6 \x03A1 456-45-1235 # Ρ ⠸⠘⠗
1113
+ comp6 \x03A3 456-45-234 # Σ ⠸⠘⠎
1114
+ comp6 \x03A4 456-45-2345 # Τ ⠸⠘⠞
1115
+ comp6 \x03A5 456-45-136 # Υ ⠸⠘⠥
1116
+ comp6 \x03A6 456-45-124 # Φ ⠸⠘⠋
1117
+ comp6 \x03A7 456-45-12346 # Χ ⠸⠘⠯
1118
+ comp6 \x03A8 456-45-13456 # Ψ ⠸⠘⠽
1119
+ comp6 \x03A9 456-45-2456 # Ω ⠸⠘⠺
1120
+ comp6 \x03B1 456-4-1 # α ⠸⠈⠁
1121
+ comp6 \x03B2 456-4-12 # β ⠸⠈⠃
1122
+ comp6 \x03B3 456-4-1245 # γ ⠸⠈⠛
1123
+ comp6 \x03B4 456-4-145 # δ ⠸⠈⠙
1124
+ comp6 \x03B5 456-4-15 # ε ⠸⠈⠑
1125
+ comp6 \x03B6 456-4-1356 # ζ ⠸⠈⠵
1126
+ comp6 \x03B7 456-4-156 # η ⠸⠈⠱
1127
+ comp6 \x03B8 456-4-1456 # θ ⠸⠈⠹
1128
+ comp6 \x03B9 456-4-24 # ι ⠸⠈⠊
1129
+ comp6 \x03BA 456-4-13 # κ ⠸⠈⠅
1130
+ comp6 \x03BB 456-4-123 # λ ⠸⠈⠇
1131
+ comp6 \x03BC 456-4-134 # μ ⠸⠈⠍
1132
+ comp6 \x03BD 456-4-1345 # ν ⠸⠈⠝
1133
+ comp6 \x03BE 456-4-1346 # ξ ⠸⠈⠭
1134
+ comp6 \x03BF 456-4-135 # ο ⠸⠈⠕
1135
+ comp6 \x03C0 456-4-1234 # π ⠸⠈⠏
1136
+ comp6 \x03C1 456-4-1235 # ρ ⠸⠈⠗
1137
+ comp6 \x03C2 456-4-234 # ς ⠸⠈⠎
1138
+ comp6 \x03C3 456-4-234 # σ ⠸⠈⠎
1139
+ comp6 \x03C4 456-4-2345 # τ ⠸⠈⠞
1140
+ comp6 \x03C5 456-4-136 # υ ⠸⠈⠥
1141
+ comp6 \x03C6 456-4-124 # φ ⠸⠈⠋
1142
+ comp6 \x03C7 456-4-12346 # χ ⠸⠈⠯
1143
+ comp6 \x03C8 456-4-13456 # ψ ⠸⠈⠽
1144
+ comp6 \x03C9 456-4-2456 # ω ⠸⠈⠺
1145
+
1146
+ # Digits and Latin uppercase letters in 6-dot computer braille mode; this is
1147
+ # fine for presence of only one digit or one capital letter, but not good for
1148
+ # two or more digits or uppercase letters in sequence. It would be helpful if
1149
+ # the following specific Opcodes existed for 6-dot computer braille: capsletter,
1150
+ # begcapsword, endcapsword, numsign, nonumsign, numericnocontchars, etc.
1151
+ comp6 \x0030 3456-245 # 0 ⠼⠚ zero | digit zero
1152
+ comp6 \x0031 3456-1 # 1 ⠼⠁ um | digit one
1153
+ comp6 \x0032 3456-12 # 2 ⠼⠃ dois | digit two
1154
+ comp6 \x0033 3456-14 # 3 ⠼⠉ três | digit three
1155
+ comp6 \x0034 3456-145 # 4 ⠼⠙ quatro | digit four
1156
+ comp6 \x0035 3456-15 # 5 ⠼⠑ cinco | digit five
1157
+ comp6 \x0036 3456-124 # 6 ⠼⠋ seis | digit six
1158
+ comp6 \x0037 3456-1245 # 7 ⠼⠛ sete | digit seven
1159
+ comp6 \x0038 3456-125 # 8 ⠼⠓ oito | digit eight
1160
+ comp6 \x0039 3456-24 # 9 ⠼⠊ nove | digit nine
1161
+ comp6 \x0041 46-1 # A ⠨⠁ a maiúsculo | Latin capital letter a
1162
+ comp6 \x0042 46-12 # B ⠨⠃ b maiúsculo | Latin capital letter b
1163
+ comp6 \x0043 46-14 # C ⠨⠉ c maiúsculo | Latin capital letter c
1164
+ comp6 \x0044 46-145 # D ⠨⠙ d maiúsculo | Latin capital letter d
1165
+ comp6 \x0045 46-15 # E ⠨⠑ e maiúsculo | Latin capital letter e
1166
+ comp6 \x0046 46-124 # F ⠨⠋ f maiúsculo | Latin capital letter f
1167
+ comp6 \x0047 46-1245 # G ⠨⠛ g maiúsculo | Latin capital letter g
1168
+ comp6 \x0048 46-125 # H ⠨⠓ h maiúsculo | Latin capital letter h
1169
+ comp6 \x0049 46-24 # I ⠨⠊ i maiúsculo | Latin capital letter i
1170
+ comp6 \x004A 46-245 # J ⠨⠚ j maiúsculo | Latin capital letter j
1171
+ comp6 \x004B 46-13 # K ⠨⠅ k maiúsculo | Latin capital letter k
1172
+ comp6 \x004C 46-123 # L ⠨⠇ l maiúsculo | Latin capital letter l
1173
+ comp6 \x004D 46-134 # M ⠨⠍ m maiúsculo | Latin capital letter m
1174
+ comp6 \x004E 46-1345 # N ⠨⠝ n maiúsculo | Latin capital letter n
1175
+ comp6 \x004F 46-135 # O ⠨⠕ o maiúsculo | Latin capital letter o
1176
+ comp6 \x0050 46-1234 # P ⠨⠏ p maiúsculo | Latin capital letter p
1177
+ comp6 \x0051 46-12345 # Q ⠨⠟ q maiúsculo | Latin capital letter q
1178
+ comp6 \x0052 46-1235 # R ⠨⠗ r maiúsculo | Latin capital letter r
1179
+ comp6 \x0053 46-234 # S ⠨⠎ s maiúsculo | Latin capital letter s
1180
+ comp6 \x0054 46-2345 # T ⠨⠞ t maiúsculo | Latin capital letter t
1181
+ comp6 \x0055 46-136 # U ⠨⠥ u maiúsculo | Latin capital letter u
1182
+ comp6 \x0056 46-1236 # V ⠨⠧ v maiúsculo | Latin capital letter v
1183
+ comp6 \x0057 46-2456 # W ⠨⠺ w maiúsculo | Latin capital letter w
1184
+ comp6 \x0058 46-1346 # X ⠨⠭ x maiúsculo | Latin capital letter x
1185
+ comp6 \x0059 46-13456 # Y ⠨⠽ y maiúsculo | Latin capital letter y
1186
+ comp6 \x005A 46-1356 # Z ⠨⠵ z maiúsculo | Latin capital letter z
1187
+ comp6 \x00C0 46-1246 # À ⠨⠫
1188
+ comp6 \x00C1 46-12356 # Á ⠨⠷
1189
+ comp6 \x00C2 46-16 # Â ⠨⠡
1190
+ comp6 \x00C3 46-345 # Ã ⠨⠜
1191
+ comp6 \x00C7 46-12346 # Ç ⠨⠯
1192
+ comp6 \x00C9 46-123456 # É ⠨⠿
1193
+ comp6 \x00CA 46-126 # Ê ⠨⠣
1194
+ comp6 \x00CD 46-34 # Í ⠨⠌
1195
+ comp6 \x00D3 46-346 # Ó ⠨⠬
1196
+ comp6 \x00D4 46-1456 # Ô ⠨⠹
1197
+ comp6 \x00D5 46-246 # Õ ⠨⠪
1198
+ comp6 \x00DA 46-23456 # Ú ⠨⠾
1199
+ comp6 \x00DC 46-1256 # Ü ⠨⠳
1200
+
1201
+ # In Portugal the computer braille indicators is used in very few
1202
+ # situations, unlike Brazil that always uses it, the information about this was
1203
+ # only found in the book published in Portugal, note 2.1 in Appendix 1 of book
1204
+ # Grafia Braille para a Língua Portuguesa, 3rd edition, 2002; excerpt in Portuguese:
1205
+ # O sinal ⠐⠂ (52) serve para delimitar a expressão informática que enquadra.
1206
+ # Emprega-se sempre, no Brasil. Em Portugal só se usa, quando nessa expressão
1207
+ # existir qualquer símbolo deste Apêndice, cujo significado não seja o que já
1208
+ # estava normalizado nesta Grafia. [...]
1209
+ compbrl ://
1210
+
1211
+ # Ignores any consecutive repetitions of the same character sequence
1212
+ repeated ..... 3-3-3-3-3 # ⠄⠄⠄⠄⠄
1213
+ repeated ----- 36-36-36-36-36 # ⠤⠤⠤⠤⠤
1214
+ noback repeated ___ 46-36-46-36-46-36 # ⠨⠤⠨⠤⠨⠤
1215
+
1216
+ # Normalization of some letters combining with diacritic
1217
+ noback correct "A\x0300" "À" # À Latin capital letter a + combining grave accent
1218
+ noback correct "a\x0300" "à" # à Latin small letter a + combining grave accent
1219
+ noback correct "E\x0300" "È" # È Latin capital letter e + combining grave accent
1220
+ noback correct "e\x0300" "è" # è Latin small letter e + combining grave accent
1221
+ noback correct "I\x0300" "Ì" # Ì Latin capital letter i + combining grave accent
1222
+ noback correct "i\x0300" "ì" # ì Latin small letter i + combining grave accent
1223
+ noback correct "O\x0300" "Ò" # Ò Latin capital letter o + combining grave accent
1224
+ noback correct "o\x0300" "ò" # ò Latin small letter o + combining grave accent
1225
+ noback correct "U\x0300" "Ù" # Ù Latin capital letter u + combining grave accent
1226
+ noback correct "u\x0300" "ù" # ù Latin small letter u + combining grave accent
1227
+ noback correct "A\x0301" "Á" # Á Latin capital letter a + combining acute accent
1228
+ noback correct "a\x0301" "á" # á Latin small letter a + combining acute accent
1229
+ noback correct "E\x0301" "É" # É Latin capital letter e + combining acute accent
1230
+ noback correct "e\x0301" "é" # é Latin small letter e + combining acute accent
1231
+ noback correct "I\x0301" "Í" # Í Latin capital letter i + combining acute accent
1232
+ noback correct "i\x0301" "í" # í Latin small letter i + combining acute accent
1233
+ noback correct "O\x0301" "Ó" # Ó Latin capital letter o + combining acute accent
1234
+ noback correct "o\x0301" "ó" # ó Latin small letter o + combining acute accent
1235
+ noback correct "U\x0301" "Ú" # Ú Latin capital letter u + combining acute accent
1236
+ noback correct "u\x0301" "ú" # ú Latin small letter u + combining acute accent
1237
+ noback correct "A\x0302" "Â" # Â Latin capital letter a + combining circumflex accent
1238
+ noback correct "a\x0302" "â" # â Latin small letter a + combining circumflex accent
1239
+ noback correct "C\x0302" "Ĉ" # Ĉ Latin capital letter c + combining circumflex accent
1240
+ noback correct "c\x0302" "ĉ" # ĉ Latin small letter c + combining circumflex accent
1241
+ noback correct "E\x0302" "Ê" # Ê Latin capital letter e + combining circumflex accent
1242
+ noback correct "e\x0302" "ê" # ê Latin small letter e + combining circumflex accent
1243
+ noback correct "G\x0302" "Ĝ" # Ĝ Latin capital letter g + combining circumflex accent
1244
+ noback correct "g\x0302" "ĝ" # ĝ Latin small letter g + combining circumflex accent
1245
+ noback correct "H\x0302" "Ĥ" # Ĥ Latin capital letter h + combining circumflex accent
1246
+ noback correct "h\x0302" "ĥ" # ĥ Latin small letter h + combining circumflex accent
1247
+ noback correct "I\x0302" "Î" # Î Latin capital letter i + combining circumflex accent
1248
+ noback correct "i\x0302" "î" # î Latin small letter i + combining circumflex accent
1249
+ noback correct "J\x0302" "Ĵ" # Ĵ Latin capital letter j + combining circumflex accent
1250
+ noback correct "j\x0302" "ĵ" # ĵ Latin small letter j + combining circumflex accent
1251
+ noback correct "O\x0302" "Ô" # Ô Latin capital letter o + combining circumflex accent
1252
+ noback correct "o\x0302" "ô" # ô Latin small letter o + combining circumflex accent
1253
+ noback correct "S\x0302" "Ŝ" # Ŝ Latin capital letter s + combining circumflex accent
1254
+ noback correct "s\x0302" "ŝ" # ŝ Latin small letter s + combining circumflex accent
1255
+ noback correct "U\x0302" "Û" # Û Latin capital letter u + combining circumflex accent
1256
+ noback correct "u\x0302" "û" # û Latin small letter u + combining circumflex accent
1257
+ noback correct "A\x0303" "Ã" # Ã Latin capital letter a + combining tilde
1258
+ noback correct "a\x0303" "ã" # ã Latin small letter a + combining tilde
1259
+ noback correct "N\x0303" "Ñ" # Ñ Latin capital letter n + combining tilde
1260
+ noback correct "n\x0303" "ñ" # ñ Latin small letter n + combining tilde
1261
+ noback correct "O\x0303" "Õ" # Õ Latin capital letter o + combining tilde
1262
+ noback correct "o\x0303" "õ" # õ Latin small letter o + combining tilde
1263
+ noback correct "U\x0306" "Ŭ" # Ŭ Latin capital letter u + combining breve
1264
+ noback correct "u\x0306" "ŭ" # ŭ Latin small letter u + combining breve
1265
+ noback correct "A\x0308" "Ä" # Ä Latin capital letter a + combining diaeresis
1266
+ noback correct "a\x0308" "ä" # ä Latin small letter a + combining diaeresis
1267
+ noback correct "E\x0308" "Ë" # Ë Latin capital letter e + combining diaeresis
1268
+ noback correct "e\x0308" "ë" # ë Latin small letter e + combining diaeresis
1269
+ noback correct "I\x0308" "Ï" # Ï Latin capital letter i + combining diaeresis
1270
+ noback correct "i\x0308" "ï" # ï Latin small letter i + combining diaeresis
1271
+ noback correct "O\x0308" "Ö" # Ö Latin capital letter o + combining diaeresis
1272
+ noback correct "o\x0308" "ö" # ö Latin small letter o + combining diaeresis
1273
+ noback correct "U\x0308" "Ü" # Ü Latin capital letter u + combining diaeresis
1274
+ noback correct "u\x0308" "ü" # ü Latin small letter u + combining diaeresis
1275
+ noback correct "A\x030A" "Å" # Å Latin capital letter a + combining ring above
1276
+ noback correct "a\x030A" "å" # å Latin small letter a + combining ring above
1277
+ noback correct "C\x0327" "Ç" # Ç Latin capital letter c + combining cedilla
1278
+ noback correct "c\x0327" "ç" # ç Latin small letter c + combining cedilla
1279
+
1280
+ # Normalization of Roman Numerals
1281
+ noback correct "\x2160" "I" # Ⅰ algarismo romano um | Roman numeral one
1282
+ noback correct "\x2161" "II" # Ⅱ algarismo romano dois | Roman numeral two
1283
+ noback correct "\x2162" "III" # Ⅲ algarismo romano três | Roman numeral three
1284
+ noback correct "\x2163" "IV" # Ⅳ algarismo romano quatro | Roman numeral four
1285
+ noback correct "\x2164" "V" # Ⅴ algarismo romano cinco | Roman numeral five
1286
+ noback correct "\x2165" "VI" # Ⅵ algarismo romano seis | Roman numeral six
1287
+ noback correct "\x2166" "VII" # Ⅶ algarismo romano sete | Roman numeral seven
1288
+ noback correct "\x2167" "VIII" # Ⅷ algarismo romano oito | Roman numeral eight
1289
+ noback correct "\x2168" "IX" # Ⅸ algarismo romano nove | Roman numeral nine
1290
+ noback correct "\x2169" "X" # Ⅹ algarismo romano dez | Roman numeral ten
1291
+ noback correct "\x216A" "XI" # Ⅺ algarismo romano onze | Roman numeral eleven
1292
+ noback correct "\x216B" "XII" # Ⅻ algarismo romano doze | Roman numeral twelve
1293
+ noback correct "\x216C" "L" # Ⅼ algarismo romano cinquenta | Roman numeral fifty
1294
+ noback correct "\x216D" "C" # Ⅽ algarismo romano cem | Roman numeral one hundred
1295
+ noback correct "\x216E" "D" # Ⅾ algarismo romano quinhentos | Roman numeral five hundred
1296
+ noback correct "\x216F" "M" # Ⅿ algarismo romano mil | Roman numeral one thousand
1297
+ noback correct "\x2170" "i" # ⅰ algarismo romano minúsculo um | small Roman numeral one
1298
+ noback correct "\x2171" "ii" # ⅱ algarismo romano minúsculo dois | small Roman numeral two
1299
+ noback correct "\x2172" "iii" # ⅲ algarismo romano minúsculo três | small Roman numeral three
1300
+ noback correct "\x2173" "iv" # ⅳ algarismo romano minúsculo quatro | small Roman numeral four
1301
+ noback correct "\x2174" "v" # ⅴ algarismo romano minúsculo cinco | small Roman numeral five
1302
+ noback correct "\x2175" "vi" # ⅵ algarismo romano minúsculo seis | small Roman numeral six
1303
+ noback correct "\x2176" "vii" # ⅶ algarismo romano minúsculo sete | small Roman numeral seven
1304
+ noback correct "\x2177" "viii" # ⅷ algarismo romano minúsculo oito | small Roman numeral eight
1305
+ noback correct "\x2178" "ix" # ⅸ algarismo romano minúsculo nove | small Roman numeral nine
1306
+ noback correct "\x2179" "x" # ⅹ algarismo romano minúsculo dez | small Roman numeral ten
1307
+ noback correct "\x217A" "xi" # ⅺ algarismo romano minúsculo onze | small Roman numeral eleven
1308
+ noback correct "\x217B" "xii" # ⅻ algarismo romano minúsculo doze | small Roman numeral twelve
1309
+ noback correct "\x217C" "l" # ⅼ algarismo romano minúsculo cinquenta | small Roman numeral fifty
1310
+ noback correct "\x217D" "c" # ⅽ algarismo romano minúsculo cem | small Roman numeral one hundred
1311
+ noback correct "\x217E" "d" # ⅾ algarismo romano minúsculo quinhentos | small Roman numeral five hundred
1312
+ noback correct "\x217F" "m" # ⅿ algarismo romano minúsculo mil | small Roman numeral one thousand