-
Notifications
You must be signed in to change notification settings - Fork 0
/
minigent.js
362 lines (349 loc) · 36.9 KB
/
minigent.js
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
// MiniGent (c) by Tobias Gurdan
//
// MiniGent is licensed under a
// Creative Commons Attribution 4.0 International License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by/4.0/>.
export const MiniGent = {
"Latin Alphabet": {
'A': { bits: [0,1,0,1,0,1,1,1,1,1,0,1], unicode: "U+0041", name: "Latin Capital Letter A", symbol: 'A' },
'B': { bits: [1,1,0,1,1,0,1,0,1,1,1,0], unicode: "U+0042", name: "Latin Capital Letter B", symbol: 'B' },
'C': { bits: [0,1,1,1,0,0,1,0,0,0,1,1], unicode: "U+0043", name: "Latin Capital Letter C", symbol: 'C' },
'D': { bits: [1,1,0,1,0,1,1,0,1,1,1,0], unicode: "U+0044", name: "Latin Capital Letter D", symbol: 'D' },
'E': { bits: [0,1,1,1,0,0,1,1,0,1,1,1], unicode: "U+0045", name: "Latin Capital Letter E", symbol: 'E' },
'F': { bits: [0,1,1,1,0,0,1,1,0,1,0,0], unicode: "U+0046", name: "Latin Capital Letter F", symbol: 'F' },
'G': { bits: [0,1,1,1,0,0,1,0,1,0,1,1], unicode: "U+0047", name: "Latin Capital Letter G", symbol: 'G' },
'H': { bits: [1,0,1,1,0,1,1,1,1,1,0,1], unicode: "U+0048", name: "Latin Capital Letter H", symbol: 'H' },
'I': { bits: [1,1,1,0,1,0,0,1,0,1,1,1], unicode: "U+0049", name: "Latin Capital Letter I", symbol: 'I' },
'J': { bits: [0,1,1,0,0,1,0,0,1,1,1,0], unicode: "U+004A", name: "Latin Capital Letter J", symbol: 'J' },
'K': { bits: [1,0,1,1,0,1,1,1,0,1,0,1], unicode: "U+004B", name: "Latin Capital Letter K", symbol: 'K' },
'L': { bits: [1,0,0,1,0,0,1,0,0,0,1,1], unicode: "U+004C", name: "Latin Capital Letter L", symbol: 'L' },
'M': { bits: [1,1,1,1,1,1,1,0,1,1,0,1], unicode: "U+004D", name: "Latin Capital Letter M", symbol: 'M' },
'N': { bits: [1,1,0,1,0,1,1,0,1,1,0,1], unicode: "U+004E", name: "Latin Capital Letter N", symbol: 'N' },
'O': { bits: [0,1,0,1,0,1,1,0,1,0,1,0], unicode: "U+004F", name: "Latin Capital Letter O", symbol: 'O' },
'P': { bits: [1,1,0,1,0,1,1,1,0,1,0,0], unicode: "U+0050", name: "Latin Capital Letter P", symbol: 'P' },
'Q': { bits: [0,1,0,1,0,1,1,0,1,0,1,1], unicode: "U+0051", name: "Latin Capital Letter Q", symbol: 'Q' },
'R': { bits: [1,1,0,1,0,1,1,1,0,1,0,1], unicode: "U+0052", name: "Latin Capital Letter R", symbol: 'R' },
'S': { bits: [0,1,1,1,0,0,0,1,1,1,1,0], unicode: "U+0053", name: "Latin Capital Letter S", symbol: 'S' },
'T': { bits: [1,1,1,0,1,0,0,1,0,0,1,0], unicode: "U+0054", name: "Latin Capital Letter T", symbol: 'T' },
'U': { bits: [1,0,1,1,0,1,1,0,1,0,1,1], unicode: "U+0055", name: "Latin Capital Letter U", symbol: 'U' },
'V': { bits: [1,0,1,1,0,1,1,0,1,0,1,0], unicode: "U+0056", name: "Latin Capital Letter V", symbol: 'V' },
'W': { bits: [1,0,1,1,0,1,1,1,1,1,1,1], unicode: "U+0057", name: "Latin Capital Letter W", symbol: 'W' },
'X': { bits: [1,0,1,1,0,1,0,1,0,1,0,1], unicode: "U+0058", name: "Latin Capital Letter X", symbol: 'X' },
'Y': { bits: [1,0,1,1,0,1,0,1,0,0,1,0], unicode: "U+0059", name: "Latin Capital Letter Y", symbol: 'Y' },
'Z': { bits: [1,1,1,0,0,1,0,1,0,1,1,1], unicode: "U+005A", name: "Latin Capital Letter Z", symbol: 'Z' },
'a': { bits: [0,0,0,0,1,1,1,0,1,1,1,1], unicode: "U+0061", name: "Latin Small Letter A", symbol: 'a' },
'b': { bits: [1,0,0,1,1,1,1,0,1,1,1,1], unicode: "U+0062", name: "Latin Small Letter B", symbol: 'b' },
'c': { bits: [0,0,0,1,1,1,1,0,0,1,1,1], unicode: "U+0063", name: "Latin Small Letter C", symbol: 'c' },
'd': { bits: [0,0,1,1,1,1,1,0,1,1,1,1], unicode: "U+0064", name: "Latin Small Letter D", symbol: 'd' },
'e': { bits: [0,0,0,1,1,1,1,0,1,1,1,0], unicode: "U+0065", name: "Latin Small Letter E", symbol: 'e' },
'f': { bits: [0,1,0,1,0,0,1,1,0,1,0,0], unicode: "U+0066", name: "Latin Small Letter F", symbol: 'f' },
'g': { bits: [0,0,0,1,1,1,1,1,1,0,0,1,1,1,1], unicode: "U+0067", name: "Latin Small Letter G", symbol: 'g' },
'h': { bits: [1,0,0,1,1,1,1,0,1,1,0,1], unicode: "U+0068", name: "Latin Small Letter H", symbol: 'h' },
'i': { bits: [0,1,0,0,0,0,0,1,0,0,1,0], unicode: "U+0069", name: "Latin Small Letter I", symbol: 'i' },
'j': { bits: [0,1,0,0,0,0,0,1,0,0,1,0,1,1,0], unicode: "U+006A", name: "Latin Small Letter J", symbol: 'j' },
'k': { bits: [1,0,0,1,0,1,1,1,0,1,0,1], unicode: "U+006B", name: "Latin Small Letter K", symbol: 'k' },
'l': { bits: [0,1,0,0,1,0,0,1,0,0,0,1], unicode: "U+006C", name: "Latin Small Letter L", symbol: 'l' },
'm': { bits: [0,0,0,1,1,1,1,1,1,1,0,1], unicode: "U+006D", name: "Latin Small Letter M", symbol: 'm' },
'n': { bits: [0,0,0,1,1,1,1,0,1,1,0,1], unicode: "U+006E", name: "Latin Small Letter N", symbol: 'n' },
'o': { bits: [0,0,0,1,1,1,1,0,1,1,1,1], unicode: "U+006F", name: "Latin Small Letter O", symbol: 'o' },
'p': { bits: [0,0,0,1,1,1,1,0,1,1,1,1,1,0,0], unicode: "U+0070", name: "Latin Small Letter P", symbol: 'p' },
'q': { bits: [0,0,0,1,1,1,1,0,1,1,1,1,0,0,1], unicode: "U+0071", name: "Latin Small Letter Q", symbol: 'q' },
'r': { bits: [0,0,0,1,1,0,1,0,0,1,0,0], unicode: "U+0072", name: "Latin Small Letter R", symbol: 'r' },
's': { bits: [0,0,0,0,1,1,0,1,0,1,1,0], unicode: "U+0073", name: "Latin Small Letter S", symbol: 's' },
't': { bits: [0,1,0,1,1,1,0,1,0,0,1,0], unicode: "U+0074", name: "Latin Small Letter T", symbol: 't' },
'u': { bits: [0,0,0,1,0,1,1,0,1,1,1,1], unicode: "U+0075", name: "Latin Small Letter U", symbol: 'u' },
'v': { bits: [0,0,0,1,0,1,1,0,1,0,1,0], unicode: "U+0076", name: "Latin Small Letter V", symbol: 'v' },
'w': { bits: [0,0,0,1,0,1,1,1,1,1,1,1], unicode: "U+0077", name: "Latin Small Letter W", symbol: 'w' },
'x': { bits: [0,0,0,1,0,1,0,1,0,1,0,1], unicode: "U+0078", name: "Latin Small Letter X", symbol: 'x' },
'y': { bits: [0,0,0,1,0,1,1,1,1,0,0,1,1,1,1], unicode: "U+0079", name: "Latin Small Letter Y", symbol: 'y' },
'z': { bits: [0,0,0,1,1,0,0,1,0,0,1,1], unicode: "U+007A", name: "Latin Small Letter Z", symbol: 'z' },
},
"Numerals": {
'0': { bits: [1,1,1,1,0,1,1,0,1,1,1,1], unicode: "U+0030", name: "Digit Zero", symbol: '0' },
'1': { bits: [0,1,0,1,1,0,0,1,0,1,1,1], unicode: "U+0031", name: "Digit One", symbol: '1' },
'2': { bits: [1,1,0,0,0,1,1,1,0,1,1,1], unicode: "U+0032", name: "Digit Two", symbol: '2' },
'3': { bits: [1,1,1,0,0,1,0,1,1,1,1,1], unicode: "U+0033", name: "Digit Three", symbol: '3' },
'4': { bits: [1,0,0,1,0,1,1,1,1,0,0,1], unicode: "U+0034", name: "Digit Four", symbol: '4' },
'5': { bits: [1,1,1,1,1,0,0,0,1,1,1,0], unicode: "U+0035", name: "Digit Five", symbol: '5' },
'6': { bits: [0,1,1,1,0,0,1,1,1,1,1,1], unicode: "U+0036", name: "Digit Six", symbol: '6' },
'7': { bits: [1,1,1,0,0,1,0,1,0,0,1,0], unicode: "U+0037", name: "Digit Seven", symbol: '7' },
'8': { bits: [1,1,1,1,1,1,1,0,1,1,1,1], unicode: "U+0038", name: "Digit Eight", symbol: '8' },
'9': { bits: [1,1,1,1,1,1,0,0,1,1,1,0], unicode: "U+0039", name: "Digit Nine", symbol: '9' },
},
"Greek Alphabet": {
'Alpha': { bits: [1,1,1,1,0,1,1,1,1,1,0,1], unicode: "U+0391", name: "Greek Capital Letter Alpha", symbol: 'Α', code: "\\Alpha" },
'Beta': { bits: [1,1,0,1,1,1,1,0,1,1,1,1], unicode: "U+0392", name: "Greek Capital Letter Beta", symbol: 'Β', code: "\\Beta" },
'Gamma': { bits: [1,1,1,1,0,0,1,0,0,1,0,0], unicode: "U+0393", name: "Greek Capital Letter Gamma", symbol: 'Γ', code: "\\Gamma" },
'Delta': { bits: [0,1,0,1,0,1,1,0,1,1,1,1], unicode: "U+0394", name: "Greek Capital Letter Delta", symbol: 'Δ', code: "\\Delta" },
'Epsilon': { bits: [1,1,1,1,0,0,1,1,0,1,1,1], unicode: "U+0395", name: "Greek Capital Letter Epsilon", symbol: 'Ε', code: "\\Epsilon" },
'Zeta': { bits: [1,1,1,0,0,1,0,1,0,1,1,1], unicode: "U+0396", name: "Greek Capital Letter Zeta", symbol: 'Ζ', code: "\\Zeta" },
'Eta': { bits: [1,0,1,1,1,1,1,0,1,1,0,1], unicode: "U+0397", name: "Greek Capital Letter Eta", symbol: 'Η', code: "\\Eta" },
'Theta': { bits: [0,1,1,1,0,1,1,1,1,1,1,1], unicode: "U+0398", name: "Greek Capital Letter Theta", symbol: 'Θ', code: "\\Theta" },
'Iota': { bits: [0,1,0,0,1,0,0,1,0,0,1,0], unicode: "U+0399", name: "Greek Capital Letter Iota", symbol: 'Ι', code: "\\Iota" },
'Kappa': { bits: [1,0,1,1,1,0,1,0,1,1,0,1], unicode: "U+039A", name: "Greek Capital Letter Kappa", symbol: 'Κ', code: "\\Kappa" },
'Lambda': { bits: [0,1,0,1,0,1,1,0,1,1,0,1], unicode: "U+039B", name: "Greek Capital Letter Lambda", symbol: 'Λ', code: "\\Lambda" },
'Mu': { bits: [1,1,0,1,1,1,1,0,1,1,0,1], unicode: "U+039C", name: "Greek Capital Letter Mu", symbol: 'Μ', code: "\\Mu" },
'Nu': { bits: [0,1,1,1,0,1,1,0,1,1,0,1], unicode: "U+039D", name: "Greek Capital Letter Nu", symbol: 'Ν', code: "\\Nu" },
'Xi': { bits: [1,1,1,0,0,0,0,1,0,1,1,1], unicode: "U+039E", name: "Greek Capital Letter Xi", symbol: 'Ξ', code: "\\Xi" },
'Omicron': { bits: [0,1,1,1,0,1,1,0,1,1,1,1], unicode: "U+039F", name: "Greek Capital Letter Omicron", symbol: 'Ο', code: "\\Omicron" },
'Pi': { bits: [1,1,1,1,0,1,1,0,1,1,0,1], unicode: "U+03A0", name: "Greek Capital Letter Pi", symbol: 'Π', code: "\\Pi" },
'Rho': { bits: [1,1,1,1,0,1,1,1,1,1,0,0], unicode: "U+03A1", name: "Greek Capital Letter Rho", symbol: 'Ρ', code: "\\Rho" },
'Sigma': { bits: [1,1,1,1,0,0,0,1,0,1,1,1], unicode: "U+03A3", name: "Greek Capital Letter Sigma", symbol: 'Σ', code: "\\Sigma" },
'Tau': { bits: [1,1,1,0,1,0,0,1,0,0,1,0], unicode: "U+03A4", name: "Greek Capital Letter Tau", symbol: 'Τ', code: "\\Tau" },
'Upsilon': { bits: [1,0,1,1,0,1,0,1,0,0,1,0], unicode: "U+03A5", name: "Greek Capital Letter Upsilon", symbol: 'Υ', code: "\\Upsilon" },
'Phi': { bits: [0,1,1,1,1,1,1,1,1,1,1,1], unicode: "U+03A6", name: "Greek Capital Letter Phi", symbol: 'Φ', code: "\\Phi" },
'Chi': { bits: [1,0,1,0,1,0,1,0,1,1,0,1], unicode: "U+03A7", name: "Greek Capital Letter Chi", symbol: 'Χ', code: "\\Chi" },
'Psi': { bits: [1,1,1,1,1,1,1,1,1,0,1,0], unicode: "U+03A8", name: "Greek Capital Letter Psi", symbol: 'Ψ', code: "\\Psi" },
'Omega': { bits: [1,1,1,1,0,1,0,1,0,1,1,1], unicode: "U+03A9", name: "Greek Capital Letter Omega", symbol: 'Ω', code: "\\Omega" },
'alpha': { bits: [0,0,0,0,1,1,1,0,1,0,1,1], unicode: "U+03B1", name: "Greek Small Letter Alpha", symbol: 'α', code: "\\alpha" },
'beta': { bits: [1,1,0, 1,1,0, 1,0,1, 1,1,0, 1,0,0], unicode: "U+03B2", name: "Greek Small Letter Beta", symbol: 'β', code: "\\beta" },
'gamma': { bits: [0,0,0,1,0,0,1,0,1,1,1,0,0,1,0], unicode: "U+03B3", name: "Greek Small Letter Gamma", symbol: 'γ', code: "\\gamma" },
'delta': { bits: [0,0,1,0,1,0,1,0,1,0,1,0], unicode: "U+03B4", name: "Greek Small Letter Delta", symbol: 'δ', code: "\\delta" },
'epsilon': { bits: [0,0,0,0,1,1,1,1,0,0,1,1], unicode: "U+03B5", name: "Greek Small Letter Epsilon", symbol: 'ϵ', code: "\\epsilon" },
'zeta': { bits: [1,1,1,0,0,1,0,1,0,0,0,1,0,1,0], unicode: "U+03B6", name: "Greek Small Letter Zeta", symbol: 'ζ', code: "\\zeta" },
'eta': { bits: [0,0,0,1,1,0,1,0,1,1,0,1,0,0,1], unicode: "U+03B7", name: "Greek Small Letter Eta", symbol: 'η', code: "\\eta" },
'theta': { bits: [0,1,0,1,0,1,1,1,1,0,1,0], unicode: "U+03B8", name: "Greek Small Letter Theta", symbol: 'θ', code: "\\theta" },
'iota': { bits: [0,0,0,0,1,0,0,1,0,0,0,1], unicode: "U+03B9", name: "Greek Small Letter Iota", symbol: 'ι', code: "\\iota" },
'kappa': { bits: [0,0,0,1,0,1,1,1,0,1,0,1], unicode: "U+03BA", name: "Greek Small Letter Kappa", symbol: 'κ', code: "\\kappa" },
'lambda': { bits: [1,0,0,0,1,0,0,1,1,1,0,1], unicode: "U+03BB", name: "Greek Small Letter Lambda", symbol: 'λ', code: "\\lambda" },
'mu': { bits: [0,0,0,1,0,1,1,0,1,1,1,0,1,0,0], unicode: "U+03BC", name: "Greek Small Letter Mu", symbol: 'μ', code: "\\mu" },
'nu': { bits: [0,0,0,1,0,1,0,1,1,0,1,0], unicode: "U+03BD", name: "Greek Small Letter Nu", symbol: 'ν', code: "\\nu" },
'xi': { bits: [0,1,1,1,0,0,0,1,0,1,0,0,0,1,0], unicode: "U+03BE", name: "Greek Small Letter Xi", symbol: 'ξ', code: "\\xi" },
'omicron': { bits: [0,0,0,0,1,0,1,0,1,0,1,0], unicode: "U+03BF", name: "Greek Small Letter Omicron", symbol: 'ο', code: "\\omicron" },
'pi': { bits: [0,0,0,1,1,1,1,0,1,1,0,1], unicode: "U+03C0", name: "Greek Small Letter Pi", symbol: 'π', code: "\\pi" },
'rho': { bits: [0,0,0,0,1,0,1,0,1,1,1,0,1,0,0], unicode: "U+03C1", name: "Greek Small Letter Rho", symbol: 'ρ', code: "\\rho" },
'sigma': { bits: [0,0,0,0,1,1,1,0,1,0,1,0], unicode: "U+03C3", name: "Greek Small Letter Sigma", symbol: 'σ', code: "\\sigma" },
'tau': { bits: [0,0,0,1,1,1,0,1,0,0,0,1], unicode: "U+03C4", name: "Greek Small Letter Tau", symbol: 'τ', code: "\\tau" },
'upsilon': { bits: [0,0,0,1,0,1,1,0,1,1,1,0], unicode: "U+03C5", name: "Greek Small Letter Upsilon", symbol: 'υ', code: "\\upsilon" },
'phi': { bits: [0,1,0,0,1,0,1,0,1,1,1,1,0,1,0], unicode: "U+03C6", name: "Greek Small Letter Phi", symbol: 'ϕ', code: "\\phi" },
'chi': { bits: [1,0,0,0,1,1,0,1,0,1,0,1], unicode: "U+03C7", name: "Greek Small Letter Chi", symbol: 'χ', code: "\\chi" },
'psi': { bits: [0,1,0,0,1,0,1,1,1,1,1,1,0,1,0], unicode: "U+03C8", name: "Greek Small Letter Psi", symbol: 'ψ', code: "\\psi" },
'omega': { bits: [0,0,0,1,0,1,1,1,1,1,1,0], unicode: "U+03C9", name: "Greek Small Letter Omega", symbol: 'ω', code: "\\omega" },
},
"Punctuation Marks": {
'.': { bits: [0,0,0,0,0,0,0,0,0,0,1,0], unicode: "U+002E", name: "Full Stop", symbol: '.' },
',': { bits: [0,0,0,0,0,0,0,0,0,0,1,0,0,1,0], unicode: "U+002C", name: "Comma", symbol: ',' },
';': { bits: [0,0,0,0,1,0,0,0,0,0,1,0,0,1,0], unicode: "U+003B", name: "Semicolon", symbol: ';' },
':': { bits: [0,0,0,0,1,0,0,0,0,0,1,0], unicode: "U+003A", name: "Colon", symbol: ':' },
'!': { bits: [0,1,0,0,1,0,0,0,0,0,1,0], unicode: "U+0021", name: "Exclamation Mark", symbol: '!' },
'?': { bits: [1,1,0,0,0,1,0,0,0,0,1,0], unicode: "U+003F", name: "Question Mark", symbol: '?' },
'_': { bits: [0,0,0,0,0,0,0,0,0,1,1,1], unicode: "U+005F", name: "Low Line", symbol: '_' },
// '-': { bits: [0,0,0,0,0,0,1,1,0,0,0,0], unicode: "U+2010", name: "Hyphen", symbol: '-' },
'^': { bits: [0,1,0,1,0,1,0,0,0,0,0,0], unicode: "U+005E", name: "Circumflex Accent", symbol: '^', code: "\\^" },
'`': { bits: [0,1,0,0,0,1,0,0,0,0,0,0], unicode: "U+0060", name: "Grave Accent", symbol: '`' },
'~': { bits: [0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0], unicode: "U+007E", name: "Tilde", symbol: '~' },
'/': { bits: [0,0,1,0,1,0,0,1,0,1,0,0], unicode: "U+002F", name: "Solidus", symbol: '/' },
'\\': { bits: [1,0,0,0,1,0,0,1,0,0,0,1], unicode: "U+005C", name: "Reverse Solidus", symbol: '\\', code: '\\\\' },
'|': { bits: [0,1,0,0,1,0,0,1,0,0,1,0], unicode: "U+0070", name: "Vertical Line", symbol: '|' },
// brackets
'(': { bits: [0,0,1,0,1,0,0,1,0,0,0,1], unicode: "U+0028", name: "Left Paranthesis", symbol: '(' },
')': { bits: [1,0,0,0,1,0,0,1,0,1,0,0], unicode: "U+0029", name: "Right Paranthesis", symbol: ')' },
'[': { bits: [0,1,1,0,1,0,0,1,0,0,1,1], unicode: "U+005B", name: "Left Square Bracket", symbol: '[' },
']': { bits: [1,1,0,0,1,0,0,1,0,1,1,0], unicode: "U+005D", name: "Right Square Bracket", symbol: ']' },
'{': { bits: [0,1,1,0,1,0,1,1,0,0,1,1], unicode: "U+007B", name: "Left Curly Bracket", symbol: '{', code: "\\{" },
'}': { bits: [1,1,0,0,1,0,0,1,1,1,1,0], unicode: "U+007D", name: "Right Curly Bracket", symbol: '}', code: "\\}" },
// quotation marks
'\'': { bits: [0,1,0,0,1,0,0,0,0,0,0,0], unicode: "U+0027", name: "Apostrophe", symbol: '\'' },
'\"': { bits: [0,1,1,0,1,1,0,0,0,0,0,0], unicode: "U+0022", name: "Quotation Mark", symbol: '\"' },
// symbols
'@': { bits: [0,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0], unicode: "U+0040", name: "Commercial At", symbol: '@' },
'&': { bits: [0,1,1,0,1,1,1,0,1,0,1,1], unicode: "U+0026", name: "Ampersand", symbol: '&' },
},
"Math Symbols": {
'+': { bits: [0,0,0,0,1,0,1,1,1,0,1,0], unicode: "U+002B", name: "Plus Sign", symbol: '+' },
'-': { bits: [0,0,0,0,0,0,1,1,1,0,0,0], unicode: "U+2212", name: "Minus Sign", symbol: '−' },
'cdot': { bits: [0,0,0,0,0,0,0,1,0,0,0,0], unicode: "U+2219", name: "Bullet Operator", symbol: '∙', code: "\\cdot" },
'div': { bits: [0,1,0,0,0,0,1,1,1,0,0,0,0,1,0], unicode: "U+00F7", name: "Division Sign", symbol: '∙', code: "\\div" },
'=': { bits: [0,0,0,1,1,1,0,0,0,1,1,1], unicode: "U+003D", name: "Equals Sign", symbol: '=' },
'neq': { bits: [0,0,1,1,1,1,0,1,0,1,1,1,1,0,0], unicode: "U+2260", name: "Not Equal To", symbol: '≠', code: "\\neq" },
'pm': { bits: [0,1,0,1,1,1,0,1,0,1,1,1], unicode: "U+00B1", name: "Plus Minus Symbol", symbol: '±', code: "\\pm" },
'%': { bits: [0,0,1,1,1,0,0,1,0,1,0,1], unicode: "U+0025", name: "Percent Sign", symbol: '%' },
'permil': { bits: [0,0,1,0,1,1,0,0,0,1,0,0,1,0,1,1], unicode: "U+0089", name: "Per Thousand Sign", symbol: '‰', code: "\\permil" },
'degree': { bits: [0,1,0,0,0,0,0,0,0,0,0,0], unicode: "U+00B0", name: "Degree Sign", symbol: '°', code: "\\degree" },
// '<': { bits: [0,0,1,0,1,0,1,1,1,0,0,0], unicode: "U+003C", name: "Less-Than Sign", symbol: '<' },
// '>': { bits: [1,0,0,0,1,0,1,1,1,0,0,0], unicode: "U+003E", name: "Greater-Than Sign", symbol: '>' },
'<': { bits: [0,0,0,0,1,0,1,0,0,0,1,0], unicode: "U+003C", name: "Less-Than Sign", symbol: '<' },
'>': { bits: [0,0,0,0,1,0,0,0,1,0,1,0], unicode: "U+003E", name: "Greater-Than Sign", symbol: '>' },
// '<': { bits: [0,0,0,0,1,1,1,0,0,0,1,1], unicode: "U+003C", name: "Less-Than Sign", symbol: '<' },
// '>': { bits: [0,0,0,1,1,0,0,0,1,1,1,0], unicode: "U+003E", name: "Greater-Than Sign", symbol: '>' },
'infty': { bits: [0,0,0,0,0,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0], unicode: "U+221E", name: "Infinity", symbol: '∞', code: "\\infty" },
'propto': { bits: [0,0,0,0,0,1,0,1,1,0,1,0,0,1,0,1], unicode: "U+221D", name: "Proportional To", symbol: '∝', code: "\\propto" },
// 'leq': { bits: [0,0,1,0,1,0,1,1,1,1,1,1], unicode: "U+2264", name: "Less-Than or Equal To", symbol: '≤', code: "\\leq" },
// 'geq': { bits: [1,0,0,0,1,0,1,1,1,1,1,1], unicode: "U+2265", name: "Greater-Than or Equal To", symbol: '≥', code: "\\geq" },
'sum': { bits: [1,1,1,1,0,0,0,1,0,1,1,1,], unicode: "U+2211", name: "N-Ary Summation", symbol: '∑', code: "\\sum" },
'prod': { bits: [1,1,1,1,0,1,1,0,1,1,0,1], unicode: "U+220F", name: "N-Ary Product", symbol: '∏', code: "\\prod" },
'sqrt': { bits: [0,1,1,0,1,0,1,1,0,0,1,0], unicode: "U+221A", name: "Square Root", symbol: '√', code: "\\sqrt" },
'partial': { bits: [1,1,0, 0,1,1, 1,0,1, 0,1,0], unicode: "U+2207", name: "Partial Differential", symbol: '∂', code: "\\partial" },
'nabla': { bits: [1,1,1,1,0,1,1,0,1,0,1,0], unicode: "U+2207", name: "Nabla", symbol: '∇', code: "\\nabla" },
'Bbbone': { bits: [0,1,1,1,1,1,0,1,1,1,1,1], unicode: "U+1D7D9", name: "Mathematical Double-Struck Digital One", symbol: '𝟙', code: "\\Bbbone" },
'lceil': { bits: [0,1,1,0,1,0,0,1,0,0,1,0], unicode: "U+2308", name: "Left Ceiling", symbol: '⌈', code: "\\lceil" },
'rceil': { bits: [1,1,0,0,1,0,0,1,0,0,1,0], unicode: "U+2309", name: "Right Ceiling", symbol: '⌉', code: "\\rceil" },
'lfloor': { bits: [0,1,0,0,1,0,0,1,0,0,1,1], unicode: "U+230A", name: "Left Floor", symbol: '⌊', code: "\\lfloor" },
'rfloor': { bits: [0,1,0,0,1,0,0,1,0,1,1,0], unicode: "U+230B", name: "Right Floor", symbol: '⌋', code: "\\rfloor" },
},
"Logic": {
'neg': { bits: [0,0,0,0,0,0,1,1,1,0,0,1], unicode: "U+00AC", name: "Not Sign", symbol: '⌐', code: "\\neg" },
'exists': { bits: [1,1,1,0,0,1,1,1,1,1,1,1], unicode: "U+2203", name: "There Exists", symbol: '∃', code: "\\exists" },
'forall': { bits: [1,0,1,1,1,1,1,0,1,0,1,0], unicode: "U+2200", name: "For All", symbol: '∀', code: "\\forall" },
'in': { bits: [0,1,1,1,0,0,1,1,1,0,1,1], unicode: "U+2208", name: "Element Of", symbol: '∈', code: "\\in" },
'wedge': { bits: [0,0,0,0,1,0,1,0,1,1,0,1], unicode: "U+2227", name: "Logical And", symbol: '∧', code: "\\wedge" },
'vee': { bits: [0,0,0,1,0,1,1,0,1,0,1,0], unicode: "U+2228", name: "Logical Or", symbol: '∨', code: "\\vee" },
'therefore': { bits: [0,0,0,0,1,0,0,0,0,1,0,1], unicode: "U+2234", name: "Therefore", symbol: '∴', code: "\\therefore" },
'because': { bits: [0,0,0,1,0,1,0,0,0,0,1,0], unicode: "U+2235", name: "Because", symbol: '∵', code: "\\because" },
},
"Arrows and Geometry": {
'rightarrow': { bits: [0,0,0,0,0,0,1,0,1,1,1,1,0,0,1,0], unicode: "U+2192", name: "Rightwards Arrow", symbol: '→', code: "\\rightarrow" },
'leftarrow': { bits: [0,0,0,0,0,1,0,0,1,1,1,1,0,1,0,0], unicode: "U+2190", name: "Leftwards Arrow", symbol: '→', code: "\\leftarrow" },
'angle': { bits: [0,0,1,0,1,0,1,0,0,1,1,1], unicode: "U+2220", name: "Angle", symbol: '∠', code: "\\angle" },
'measuredangle': { bits: [0,0,1,0,1,0,1,0,1,1,1,1], unicode: "U+2221", name: "Measured Angle", symbol: '∡', code: "\\measuredangle" },
'Angle': { bits: [1,0,0,1,0,0,1,0,0,1,1,1], unicode: "U+221F", name: "Right Angle", symbol: '∟', code: "\\Angle" },
'mid': { bits: [0,1,0,0,1,0,0,1,0,0,1,0], unicode: "U+2223", name: "Divides", symbol: '∣', code: '\\mid' },
'nmid': { bits: [0,1,0,0,1,1,1,1,0,0,1,0], unicode: "U+2224", name: "Does not Divide", symbol: '∤', code: '\\nmid' },
'parallel': { bits: [0,1,1,0,1,1,0,1,1,0,1,1], unicode: "U+2225", name: "Parallel To", symbol: '∥', code: '\\parallel' },
'nparallel': { bits: [0,1,1,0,0,1,1,1,1,1,1,0,0,1,1,0], unicode: "U+2226", name: "Not Parallel To", symbol: '∦', code: '\\nparallel' },
},
"Currency": {
'$': { bits: [0,1,0,1,1,1,0,1,1,1,1,1,0,1,0], unicode: "U+0024", name: "Dollar Sign", symbol: '$' },
'cent': { bits: [0,1,0,1,1,1,1,0,0,1,1,1,0,1,0], unicode: "U+00A2", name: "Cent Sign", symbol: '¢', code: "\\cent" },
'pounds': { bits: [0,0,1,0,1,0,1,1,0,0,1,1], unicode: "U+00A3", name: "Pound Sign", symbol: '£', code: "\\pounds" },
'yen': { bits: [1,0,1,0,1,0,1,1,1,0,1,0], unicode: "U+00A5", name: "Yen Sign", symbol: '¥', code: "\\yen" },
'ruble': { bits: [0,1,0,1,0,1,1,1,0,1,1,1,1,0,0], unicode: "U+20BD", name: "Ruble Sign", symbol: '₽', code: "\\ruble" },
'currency': { bits: [1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1], unicode: "U+00A4", name: "Currency Sign", symbol: '¤', code: "\\currency" },
// credit to https://github.com/yonilevy/crypto-currency-symbols
'btc': { bits: [1,1,0,1,1,1,1,0,1,1,1,1,0,1,0], unicode: "U+20BF", name: "Bitcoin", symbol: '₿', code: "\\btc" },
'bch': { bits: [0,1,1,0,0,1,1,1,1,1,0,1,0,1,1,1], unicode: "U+0243", name: "Bitcoin Cash", symbol: 'Ƀ', code: "\\bch" },
'bsv': { bits: [1,1,1,0,0,1,1,1,0,1,0,1,0,1,1,1], unicode: "U+0181", name: "Bitcoin SV", symbol: 'Ɓ', code: "\\bsv" },
'eth': { bits: [1,1,1,0,0,0,0,1,0,1,1,1], unicode: "U+039E", name: "Ethereum", symbol: 'Ξ', code: "\\eth" },
'etc': { bits: [0,1,1,1,0,0,0,1,0,1,0,0,0,1,0], unicode: "U+03BE", name: "Ethereum Classic", symbol: 'ξ', code: "\\etc" },
'usdt': { bits: [1,1,1,0,1,0,1,1,1,0,1,0], unicode: "U+20AE", name: "Tether", symbol: '₮', code: "\\usdt" },
'xrp': { bits: [1,0,1,1,0,1,0,1,0,1,0,1], unicode: "U+2715", name: "XRP", symbol: '✕', code: "\\xrp" },
'ltc': { bits: [0,1,0,0,1,1,1,0,0,1,0,0,0,0,1,1], unicode: "U+0141", name: "Litecoin", symbol: 'Ł', code: "\\ltc" },
'ada': { bits: [0,0,1,0,0,0,1,0,1,0,1,1,1,1,1,0,1,0,1,0], unicode: "U+20B3", name: "Cardano", symbol: '₳', code: "\\ada" },
'doge': { bits: [0,1,1,0,0,1,0,1,1,1,0,1,0,1,1,0], unicode: "U+00D0", name: "Dogecoin", symbol: 'Ð', code: "\\doge" },
'xmr': { bits: [0,0,0,1,1,1,1,1,1,1,0,1,0,0,1], unicode: "U+0271", name: "Monero", symbol: 'ɱ', code: "\\xmr" },
'rep': { bits: [0,1,1,0,0,1,0,1,1,1,1,0,0,1,0,1], unicode: "U+024C", name: "Augur", symbol: 'Ɍ', code: "\\rep" },
'zec': { bits: [0,0,0,1,0,0,1,1,0,1,1,0,1,0,1,1,0,1,1,0,0,1,0,0,0], unicode: "U+24E9", name: "Zcash", symbol: 'ⓩ', code: "\\zec" },
'eos': { bits: [0,0,0,0,1,1,1,1,0,0,1,1], unicode: "U+03B5", name: "EOS", symbol: 'ε', code: "\\eos" },
'dai': { bits: [0,0,0,0,1,0,1,0,1,0,1,0], unicode: "U+25C8", name: "Dai", symbol: '◈', code: "\\dai" },
'mkr': { bits: [0,1,1,1,1,1,1,0,1,1,0,1], unicode: "U+039C", name: "Maker", symbol: 'Μ', code: "\\mkr" },
},
// "Index Letters": {
// 'a': { bits: [0,1,1,1,0,1,1,1,1], unicode: "N/A", name: "Modifier Letter Small A", symbol: 'ᵃ' },
// 'b': { bits: [1,0,0,1,1,1,1,1,1], unicode: "N/A", name: "Modifier Letter Small B", symbol: 'ᵇ' },
// 'c': { bits: [1,1,1,1,0,0,1,1,1], unicode: "N/A", name: "Modifier Letter Small C", symbol: 'ᶜ' },
// 'd': { bits: [0,0,1,1,1,1,1,1,1], unicode: "N/A", name: "Modifier Letter Small D", symbol: 'ᵈ' },
// 'e': { bits: [1,1,1,1,1,1,1,1,0], unicode: "N/A", name: "Modifier Letter Small E", symbol: 'ᵉ' },
// 'f': { bits: [0,1,1,1,1,1,0,1,0], unicode: "N/A", name: "Modifier Letter Small F", symbol: 'ᶠ' },
// 'g': { bits: [1,1,0,1,1,1,1,1,1], unicode: "N/A", name: "Modifier Letter Small G", symbol: 'ᵍ' },
// 'h': { bits: [1,0,0,1,1,1,1,0,1], unicode: "N/A", name: "Modifier Letter Small H", symbol: 'ʰ' },
// 'i': { bits: [0,1,0,0,1,0,0,1,0], unicode: "N/A", name: "Modifier Letter Small I", symbol: 'ⁱ' },
// 'j': { bits: [0,0,1,0,0,1,0,1,0], unicode: "N/A", name: "Modifier Letter Small J", symbol: 'ʲ' },
// 'k': { bits: [1,0,1,1,1,0,1,0,1], unicode: "N/A", name: "Modifier Letter Small K", symbol: 'ᵏ' },
// 'l': { bits: [1,0,0,1,0,0,0,1,0], unicode: "N/A", name: "Modifier Letter Small L", symbol: 'ˡ' },
// 'm': { bits: [1,1,1,1,1,1,1,0,1], unicode: "N/A", name: "Modifier Letter Small M", symbol: 'ᵐ' },
// 'n': { bits: [1,1,0,1,0,1,1,0,1], unicode: "N/A", name: "Modifier Letter Small N", symbol: 'ⁿ' },
// 'o': { bits: [1,1,0,1,0,1,1,1,1], unicode: "N/A", name: "Modifier Letter Small O", symbol: 'ᵒ' },
// 'p': { bits: [1,1,1,1,1,1,1,0,0], unicode: "N/A", name: "Modifier Letter Small P", symbol: 'ᵖ' },
// 'q': { bits: [1,1,1,1,1,1,0,0,1], unicode: "N/A", name: "Modifier Letter Small Q", symbol: 'N/A' },
// 'r': { bits: [1,1,1,1,0,0,1,0,0], unicode: "N/A", name: "Modifier Letter Small R", symbol: 'ʳ' },
// 's': { bits: [0,1,1,0,1,0,1,1,0], unicode: "N/A", name: "Modifier Letter Small S", symbol: 'ˢ' },
// 't': { bits: [1,1,1,0,1,0,0,1,0], unicode: "N/A", name: "Modifier Letter Small T", symbol: 'ᵗ' },
// 'u': { bits: [1,0,1,1,0,1,1,1,1], unicode: "N/A", name: "Modifier Letter Small U", symbol: 'ᵘ' },
// 'v': { bits: [1,0,1,1,0,1,0,1,0], unicode: "N/A", name: "Modifier Letter Small V", symbol: 'ᵛ' },
// 'w': { bits: [1,0,1,1,1,1,1,1,1], unicode: "N/A", name: "Modifier Letter Small W", symbol: 'ʷ' },
// 'x': { bits: [1,0,1,0,1,0,1,0,1], unicode: "N/A", name: "Modifier Letter Small X", symbol: 'ˣ' },
// 'y': { bits: [1,0,1,1,1,1,0,1,0], unicode: "N/A", name: "Modifier Letter Small Y", symbol: 'ʸ' },
// 'z': { bits: [1,1,0,0,1,0,0,1,1], unicode: "N/A", name: "Modifier Letter Small Z", symbol: 'ᶻ' },
// },
"Index Numbers": {
'0': { bits: [1,1,1,1,1,1], unicode: "U+2080", name: "Subscript Zero", symbol: '₀' },
'1': { bits: [0,1,0,1,0,1], unicode: "U+2081", name: "Subscript One", symbol: '₁' },
'2': { bits: [1,0,0,1,1,1], unicode: "U+2082", name: "Subscript Two", symbol: '₂' },
'3': { bits: [1,1,0,1,1,1], unicode: "U+2083", name: "Subscript Three", symbol: '₃' },
'4': { bits: [1,0,1,1,0,1], unicode: "U+2084", name: "Subscript Four", symbol: '₄' },
'5': { bits: [1,1,1,0,0,1], unicode: "U+2085", name: "Subscript Five", symbol: '₅' },
'6': { bits: [1,0,1,1,1,1], unicode: "U+2086", name: "Subscript Six", symbol: '₆' },
'7': { bits: [1,1,0,1,0,1], unicode: "U+2087", name: "Subscript Seven", symbol: '₇' },
'8': { bits: [1,1,0,0,1,1], unicode: "U+2088", name: "Subscript Eight", symbol: '₈' },
'9': { bits: [1,1,1,1,0,1], unicode: "U+2089", name: "Subscript Nine", symbol: '₉' },
},
"Smileys": {
'smirk': { bits: [1,0,1,0,0,0,0,0,1,1,1,0], unicode: "U+1F60F", name: "Smirking Face", symbol: '😏', code: ":smirk:" },
'slightly_smiling_face': { bits: [1,0,1,0,0,0,1,0,1,0,1,0], unicode: "U+1F642", name: "Slightly Smiling Face", symbol: '🙂', code: ":slightly_smiling_face:" },
'wink': { bits: [1,0,0,0,0,0,1,0,1,0,1,0], unicode: "U+1F609", name: "Winking Face", symbol: '😉', code: ":wink:" },
'grinning': { bits: [1,0,1,0,0,0,1,0,1,1,1,1], unicode: "U+1F600", name: "Grinning Face", symbol: '😀', code: ":grinning:" },
'grin': { bits: [1,0,1,0,0,0,1,1,1,1,1,1], unicode: "U+1F601", name: "Grinning Face with Smiling Eyes", symbol: '😁', code: ":grin:" },
'laughing': { bits: [1,1,1,0,0,0,1,1,1,1,1,1], unicode: "U+1F606", name: "Grinning Squinting Face", symbol: '😆', code: ":laughing:" },
'neutral_face': { bits: [1,0,1,0,0,0,0,0,0,1,1,1], unicode: "U+1F610", name: "Neutral Face", symbol: '😐', code: ":neutral_face:" },
'expressionless': { bits: [1,0,1,0,0,0,1,1,1,0,0,0], unicode: "U+1F611", name: "Expressionless Face", symbol: '😑', code: ":expressionless:" },
'confused': { bits: [1,0,1,0,0,0,0,1,1,1,0,0], unicode: "U+1F615", name: "Confused Face", symbol: '😕', code: ":confused:" },
'slightly_frowning_face': { bits: [1,0,1,0,0,0,0,1,0,1,0,1], unicode: "U+1F641", name: "Slightly Frowning Face", symbol: '🙁', code: ":slightly_frowning_face:" },
'frowning_face': { bits: [1,0,1,0,0,0,1,1,1,1,0,1], unicode: "U+2639", name: "Frowning Face", symbol: '☹️', code: ":frowning_face:" },
'open_mouth': { bits: [1,0,1,0,0,0,0,0,0,0,1,0], unicode: "U+1F62E", name: "Face with Open Mouth", symbol: '😮', code: ":open_mouth:" },
'astonished': { bits: [1,0,1,1,0,1,0,0,0,0,1,0], unicode: "U+1F632", name: "Astonished Face", symbol: '😲', code: ":astonished:" },
'kissing': { bits: [1,0,1,0,0,0,0,0,0,0,0,1], unicode: "U+1F617", name: "Kissing Face", symbol: '😗', code: ":kissing:" },
'kissing_smiling_eyes': { bits: [1,0,1,0,0,0,0,0,1,0,0,0], unicode: "U+1F619", name: "Kissing Face with Smiling Eyes", symbol: '😙', code: ":kissing_smiling_eyes:" },
'raised_eyebrow': { bits: [0,0,1,1,0,0,0,0,0,1,1,1], unicode: "U+1F928", name: "Face with Raised Eyebrows", symbol: '🤨', code: ":raised_eyebrow:" },
'stuck_out_tongue': { bits: [1,0,1,0,0,0,1,1,1,0,1,0], unicode: "U+1F61B", name: "Face with Stuck Tongue", symbol: '😛', code: ":stuck_out_tongue:" },
'stuck_out_tongue_winking_eye': { bits: [0,0,1,0,0,0,1,1,1,0,1,0], unicode: "U+1F61C", name: "Face with Stuck Tongue", symbol: '😜', code: ":stuck_out_tongue_winking_eye:" },
'stuck_out_tongue_closed_eyes': { bits: [1,1,1,0,0,0,1,1,1,0,1,0], unicode: "U+1F61D", name: "Squinting Face with Tongue", symbol: '😝', code: ":stuck_out_tongue_closed_eyes:" },
// 'yum': { bits: [1,0,1,0,0,0,1,1,1,0,0,1], unicode: "U+1F60B", name: "Face Savoring Food", symbol: '😋', code: ":yum:" },
'drooling_face': { bits: [1,0,1,0,0,0,1,1,1,0,0,1], unicode: "U+1F924", name: "Drooling Face", symbol: '🤤', code: ":drooling_face:" },
'zany_face': { bits: [0,0,1,1,0,0,1,1,1,0,1,0], unicode: "U+1F632", name: "Zany Face", symbol: '🤪', code: ":zany_face:" },
},
"Various Emojis": {
'standing_person': { bits: [0,1,0,1,1,1,0,1,0,1,0,1], unicode: "U+1F9CD", name: "Person Standing", symbol: '🧍', code: ":standing_person:" },
'walking': { bits: [0,1,0,0,1,0,0,1,0,1,0,1], unicode: "U+1F6B6", name: "Person Walking", symbol: '🚶', code: ":walking:" },
'heart': { bits: [1,0,1,1,1,1,1,1,1,0,1,0], unicode: "U+2764", name: "Red Heart", symbol: '❤️', code: ":heart:" },
'heavy_check_mark': { bits: [0,0,1,0,0,1,1,0,1,0,1,0], unicode: "U+2714", name: "Check Mark", symbol: '✔️', code: ":heavy_check_mark:" },
'thumbsup': { bits: [0,1,0,0,1,1,1,1,1,1,1,1], unicode: "U+1F44D", name: "Thumbs Up", symbol: '👍', code: ":thumbsup:" },
'thumbsdown': { bits: [1,1,1,1,1,1,1,1,0,0,1,0], unicode: "U+1F44E", name: "Thumbs Down", symbol: '👎', code: ":thumbsdown:" },
'ok_hand': { bits: [0,0,1,0,1,1,1,0,1,1,1,1], unicode: "U+1F44C", name: "OK Hand", symbol: '👌', code: ":ok_hand:" },
// 'v': { bits: [1,0,1,1,0,1,0,1,1,1,1,1], unicode: "U+270C", name: "Victory Hand", symbol: '✌️', code: ":v:" },
'pray': { bits: [0,1,0,0,1,0,0,1,0,1,1,1], unicode: "U+1F64F", name: "Folded Hands", symbol: '🙏', code: ":pray:" },
},
};
export const TinyGent = {
"Latin Alphabet": {
'A': { bits: [0,1,0,1,1,1,1,0,1], unicode: "U+0041", name: "Latin Capital Letter A", symbol: 'A' },
'B': { bits: [1,1,0,1,1,1,1,1,1], unicode: "U+0042", name: "Latin Capital Letter B", symbol: 'B' },
'C': { bits: [1,1,1,1,0,0,1,1,1], unicode: "U+0043", name: "Latin Capital Letter C", symbol: 'C' },
'D': { bits: [1,1,0,1,0,1,1,1,0], unicode: "U+0044", name: "Latin Capital Letter D", symbol: 'D' },
'E': { bits: [1,1,1,1,1,0,1,1,1], unicode: "U+0045", name: "Latin Capital Letter E", symbol: 'E' },
'F': { bits: [1,1,1,1,1,0,1,0,0], unicode: "U+0046", name: "Latin Capital Letter F", symbol: 'F' },
'G': { bits: [1,1,0,1,0,1,1,1,1], unicode: "U+0047", name: "Latin Capital Letter G", symbol: 'G' },
'H': { bits: [1,0,1,1,1,1,1,0,1], unicode: "U+0048", name: "Latin Capital Letter H", symbol: 'H' },
'I': { bits: [1,1,1,0,1,0,1,1,1], unicode: "U+0049", name: "Latin Capital Letter I", symbol: 'I' },
'J': { bits: [1,1,1,0,0,1,1,1,0], unicode: "U+004A", name: "Latin Capital Letter J", symbol: 'J' },
'K': { bits: [1,0,1,1,1,0,1,0,1], unicode: "U+004B", name: "Latin Capital Letter K", symbol: 'K' },
'L': { bits: [1,0,0,1,0,0,1,1,1], unicode: "U+004C", name: "Latin Capital Letter L", symbol: 'L' },
'M': { bits: [1,1,1,1,1,1,1,0,1], unicode: "U+004D", name: "Latin Capital Letter M", symbol: 'M' },
'N': { bits: [1,1,1,1,0,1,1,0,1], unicode: "U+004E", name: "Latin Capital Letter N", symbol: 'N' },
'O': { bits: [1,1,1,1,0,1,1,1,1], unicode: "U+004F", name: "Latin Capital Letter O", symbol: 'O' },
'P': { bits: [1,1,1,1,1,1,1,0,0], unicode: "U+0050", name: "Latin Capital Letter P", symbol: 'P' },
'Q': { bits: [1,1,1,1,0,1,1,1,0], unicode: "U+0051", name: "Latin Capital Letter Q", symbol: 'Q' },
'R': { bits: [1,1,0,1,1,1,1,0,1], unicode: "U+0052", name: "Latin Capital Letter R", symbol: 'R' },
'S': { bits: [0,1,1,0,1,0,1,1,0], unicode: "U+0053", name: "Latin Capital Letter S", symbol: 'S' },
'T': { bits: [1,1,1,0,1,0,0,1,0], unicode: "U+0054", name: "Latin Capital Letter T", symbol: 'T' },
'U': { bits: [1,0,1,1,0,1,1,1,1], unicode: "U+0055", name: "Latin Capital Letter U", symbol: 'U' },
'V': { bits: [1,0,1,1,0,1,0,1,0], unicode: "U+0056", name: "Latin Capital Letter V", symbol: 'V' },
'W': { bits: [1,0,1,1,1,1,1,1,1], unicode: "U+0057", name: "Latin Capital Letter W", symbol: 'W' },
'X': { bits: [1,0,1,0,1,0,1,0,1], unicode: "U+0058", name: "Latin Capital Letter X", symbol: 'X' },
'Y': { bits: [1,0,1,1,1,1,0,1,1], unicode: "U+0059", name: "Latin Capital Letter Y", symbol: 'Y' },
'Z': { bits: [1,1,0,0,1,0,0,1,1], unicode: "U+005A", name: "Latin Capital Letter Z", symbol: 'Z' },
},
"Numerals": {
'0': { bits: [1,1,1,1,0,1,1,1,1], unicode: "U+0030", name: "Digit Zero", symbol: '0' },
'1': { bits: [1,1,0,0,1,0,1,1,1], unicode: "U+0031", name: "Digit One", symbol: '1' },
'2': { bits: [1,1,1,0,0,1,1,1,0], unicode: "U+0032", name: "Digit Two", symbol: '2' },
'3': { bits: [1,1,1,0,1,1,1,1,1], unicode: "U+0033", name: "Digit Three", symbol: '3' },
'4': { bits: [1,0,1,1,1,1,0,0,1], unicode: "U+0034", name: "Digit Four", symbol: '4' },
'5': { bits: [1,1,1,1,0,0,0,1,1], unicode: "U+0035", name: "Digit Five", symbol: '5' },
'6': { bits: [1,0,0,1,1,1,1,1,1], unicode: "U+0036", name: "Digit Six", symbol: '6' },
'7': { bits: [1,1,1,0,0,1,0,0,1], unicode: "U+0037", name: "Digit Seven", symbol: '7' },
'8': { bits: [1,1,1,0,0,0,1,1,1], unicode: "U+0038", name: "Digit Eight", symbol: '8' },
'9': { bits: [1,1,1,1,1,1,0,0,1], unicode: "U+0039", name: "Digit Nine", symbol: '9' },
},
}