-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcharmap.c
139 lines (133 loc) · 4.17 KB
/
charmap.c
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
#include "charmap.h"
CharDefinition charmap[128] = {
{ "centered dot", "\xc2\xb7" }, // 000 ·
{ "down arrow", "\342\206\223" }, // 001 ↓
{ "alpha", "\316\261" }, // 002 α
{ "beta", "\316\262" }, // 003 β
{ "boolean AND", "\342\210\247" }, // 004 ∧
{ "boolean NOT", "\302\254" }, // 005 ¬
{ "epsilon", "\316\265" }, // 006 ε
{ "pi", "\317\200" }, // 007 π
{ "lambda", "\316\273" }, // 010 λ
{ "gamma", "\xce\xb3" }, // 011 γ
{ "delta", "\xce\xb4" }, // 012 δ
{ "up arrow", "\xe2\x86\x91" }, // 013 ↑
{ "plus minus", "\xc2\xb1" }, // 014 ±
{ "circled plus", "\xe2\x8a\x95" }, // 015 ⊕
{ "infinity (lazy eight)", "\342\210\236" }, // 016 ∞
{ "partial differential", "\342\210\202" }, // 017 ∂
{ "subset ⊂ contains (left horse shoe)", "\342\212\202" }, // 020 ⊂
{ "superset ⊃ implies (right horse shoe)", "\342\212\203" }, // 021 ⊃
{ "intersection", "\342\210\251" }, // 022 ∩
{ "union", "\342\210\252" }, // 023 ∪
{ "for all", "\342\210\200" }, // 024 ∀
{ "there exists", "\342\210\203" }, // 025 ∃
{ "Circled Times ⊗ Boolean XOR", "\342\223\247" }, // 026 ⊗
{ "horizontal double arrow", "\342\206\224" }, // 027 ↔
{ "left arrow", "\xe2\x86\x90" }, // 030 ←
{ "right arrow", "\342\206\222" }, // 031 →
{ "not equal", "\342\211\240" }, // 032 ≠
{ "Alt Mode character", "\xe2\x97\x8a" }, // 033 ◊
{ "less than or equal", "\342\211\244" }, // 034 ≤
{ "greater than or equal", "\342\211\245" }, // 035 ≥
{ "equivalence", "\342\211\241" }, // 036 ≡
{ "Boolean OR", "\342\210\250" }, // 037 ∨
{ " ", " " }, // 040
{ "!", "!" }, // 041
{ "\"", "\"" }, // 042
{ "#", "#" }, // 043
{ "$", "$" }, // 044
{ "%", "%" }, // 045
{ "&", "&" }, // 046
{ "'", "'" }, // 047
{ "(", "(" }, // 050
{ ")", ")" }, // 051
{ "*", "*" }, // 052
{ "+", "+" }, // 053
{ ",", "," }, // 054
{ "-", "-" }, // 055
{ ".", "." }, // 056
{ "/", "/" }, // 057
{ "0", "0" }, // 060
{ "1", "1" }, // 061
{ "2", "2" }, // 062
{ "3", "3" }, // 063
{ "4", "4" }, // 064
{ "5", "5" }, // 065
{ "6", "6" }, // 066
{ "7", "7" }, // 067
{ "8", "8" }, // 070
{ "9", "9" }, // 071
{ ":", ":" }, // 072
{ ";", ";" }, // 073
{ "<", "<" }, // 074
{ "=", "=" }, // 075
{ ">", ">" }, // 076
{ "?", "?" }, // 077
{ "@", "@" }, // 100
{ "A", "A" }, // 101
{ "B", "B" }, // 102
{ "C", "C" }, // 103
{ "D", "D" }, // 104
{ "E", "E" }, // 105
{ "F", "F" }, // 106
{ "G", "G" }, // 107
{ "H", "H" }, // 110
{ "I", "I" }, // 111
{ "J", "J" }, // 112
{ "K", "K" }, // 113
{ "L", "L" }, // 114
{ "M", "M" }, // 115
{ "N", "N" }, // 116
{ "O", "O" }, // 117
{ "P", "P" }, // 120
{ "Q", "Q" }, // 121
{ "R", "R" }, // 122
{ "S", "S" }, // 123
{ "T", "T" }, // 124
{ "U", "U" }, // 125
{ "V", "V" }, // 126
{ "W", "W" }, // 127
{ "X", "X" }, // 130
{ "Y", "Y" }, // 131
{ "Z", "Z" }, // 132
{ "[", "[" }, // 133
{ "\\", "\\" }, // 134
{ "]", "]" }, // 135
// { "up arrow", "\342\206\221" }, // 136 ↑
// { "left arrow", "\342\206\220" }, // 137 ←
{ "^", "^" }, // 136 ^
{ "_", "_" }, // 137 _
{ "`", "`" }, // 140
{ "a", "a" }, // 141
{ "b", "b" }, // 142
{ "c", "c" }, // 143
{ "d", "d" }, // 144
{ "e", "e" }, // 145
{ "f", "f" }, // 146
{ "g", "g" }, // 147
{ "h", "h" }, // 150
{ "i", "i" }, // 151
{ "j", "j" }, // 152
{ "k", "k" }, // 153
{ "l", "l" }, // 154
{ "m", "m" }, // 155
{ "n", "n" }, // 156
{ "o", "o" }, // 157
{ "p", "p" }, // 160
{ "q", "q" }, // 161
{ "r", "r" }, // 162
{ "s", "s" }, // 163
{ "t", "t" }, // 164
{ "u", "u" }, // 165
{ "v", "v" }, // 166
{ "w", "w" }, // 167
{ "x", "x" }, // 170
{ "y", "y" }, // 171
{ "z", "z" }, // 172
{ "left curly bracket", "{" }, // 173 {
{ "vertical bar", "|" }, // 174 |
{ "right curly bracket", "}" }, // 175 }
{ "tilde", "~" }, // 176 ~
{ "integral", "\xe2\x88\xab" }, // 177 ∫
};