-
Notifications
You must be signed in to change notification settings - Fork 8
/
char_to_unicode.py
88 lines (86 loc) · 1.27 KB
/
char_to_unicode.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/python
# -*- coding: latin-1 -*-
#todo(timifasubaa): fix all mappings with a ? should be better specified
readable_char_to_unicode = {
"a_do": "à",
"a_re": "a",
"a_mi": "á",
"A_do": "À",
"A_re": "A",
"A_mi": "Á",
"b": "b",
"B": "B",
"d": "d",
"D": "D",
"e_do": "è",
"e_re": "e",
"e_mi": "é",
"e_wd_do": "ẹ̀",
"e_wd_re": "ẹ",
"e_wd_mi": "ẹ́",
"E_do": "È",
"E_re": "E",
"E_mi": "É",
"E_wd_do": "È̩",
"E_wd_re": "Ẹ",
"E_wd_mi": "Ẹ́",
"f": "f",
"F": "F",
"g": "g",
"G": "G",
"gb": "gb",
"GB": "GB",
"h": "h",
"H": "H",
"i_do": "ì",
"i_re": "i",
"i_mi": "í",
"I_do": "Ì",
"I_re": "I",
"I_mi": "Í",
"j": "j",
"J": "J",
"k": "k",
"K": "K",
"l": "l",
"L": "L",
"m": "m",
"M": "M",
"n_do": "n?",
"n_re": "n",
"n_mi": "ń",
"N_do": "N?",
"N_re": "N",
"N_mi": "Ń",
"o_do": "ò",
"o_re": "o",
"o_mi": "ó",
"o_wd_do": "ọ̀",
"o_wd_re": "ọ",
"o_wd_mi": "ọ́",
"O_do": "Ò",
"O_re": "O",
"O_mi": "Ó",
"O_wd_do": "Ọ̀",
"O_wd_re": "Ọ",
"O_wd_mi": "Ọ́",
"p": "p",
"P": "P",
"r": "r",
"R": "R",
"s": "s",
"s_dot": "ṣ",
"S": "S",
"S_dot": "Ṣ",
"t": "t",
"u_do": "ù",
"u_re": "u",
"u_mi": "ú",
"U_do": "Ù",
"U_re": "U",
"U_mi": "Ú",
"w": "w",
"W": "W",
"y": "y",
"Y": "Y",
}