Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save clockworkpc/0f34dc7d7b894b9e3e9bac4d0149f757 to your computer and use it in GitHub Desktop.
Save clockworkpc/0f34dc7d7b894b9e3e9bac4d0149f757 to your computer and use it in GitHub Desktop.
Lithuanian Vowels and Consonants with Diacritics and Accents Combined
@lithuanian_letters_diacritics_and_accents = {
"a" => ["\u0061", "a"],
"ã" => ["\u00e3", "a"],
"à" => ["\u00e0", "a"],
"á" => ["\u00e1", "a"],
"ą" => ["\u0105"],
"ą̀" => ["\u0105\u0300", "ą"],
"ą́" => ["\u0105\u0301", "ą"],
"ą̃" => ["\u0105\u0303", "ą"],
"e" => ["\u0065"],
"ẽ" => ["\u1ebd", "e"],
"è" => ["\u00e8", "e"],
"é" => ["\u00e9", "e"],
"ę" => ["\u0119"],
"ę̀" => ["\u0119\u0300", "ę"],
"ę́" => ["\u0119\u0301", "ę"],
"ę̃" => ["\u0119\u0303", "ę"],
"ė" => ["\u0117"],
"ė̀" => ["\u0117\u0300", "ė"],
"ė́" => ["\u0117\u0301", "ė"],
"ė̃" => ["\u0117\u0303", "ė"],
"į" => ["\u012f"],
"į̀" => ["\u012f", "į"],
"į́" => ["\u012f", "į"],
"į̃" => ["\u012f", "į"],
"ì" => ["\u00ec", "į"],
"í" => ["\u00ed", "į"],
"ĩ" => ["\u0129", "į"],
"o" => ["\u006f"],
"ò" => ["\u00f2", "o"],
"ó" => ["\u00f3", "o"],
"õ" => ["\u00f5", "o"],
"u" => ["\u0075"],
"ù" => ["\u00f9", "u"],
"ú" => ["\u00fa", "u"],
"ũ" => ["\u0169", "u"],
"ų" => ["\u0173"],
"ų̀" => ["\u0173\u0300", "ų"],
"ų́" => ["\u0173\u0301", "ų"],
"ų̃" => ["\u0173\u0303", "ų"],
"ū" => ["\u016b"],
"ū̀" => ["\u016b\u0300", "ū"],
"ū́" => ["\u016b\u0301", "ū"],
"ū̃" => ["\u016b\u0303", "ū"],
"y" => ["\u0079"],
"ỳ" => ["\u1ef3", "y"],
"ý" => ["\u00fd", "y"],
"ỹ" => ["\u1ef9", "y"],
"l" => ["\u006c"],
"l̀" => ["\u006c\u0300", "l"],
"ĺ" => ["\u013a", "l"],
"l̃" => ["\u006c\u0303", "l"],
"m" => ["\u006d"],
"m̀" => ["\u006d\u0300", "m"],
"ḿ" => ["\u1e3f", "m"],
"m̃" => ["\u006d\u0303", "m"],
"n" => ["\u006e"],
"ǹ" => ["\u01f9", "n"],
"ń" => ["\u0144", "n"],
"ñ" => ["\u00f1", "n"],
"r" => ["\u0072"],
"r̀" => ["\u0072\u0300", "r"],
"ŕ" => ["\u0155", "r"],
"r̃" => ["\u0072\u0303", "r"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment