]> shimmer.witbreuk.eu Git - UltimateKEYS.git/blob - autohotkey-v1.1/UltimateKEYS.ahk
Add files via upload
[UltimateKEYS.git] / autohotkey-v1.1 / UltimateKEYS.ahk
1 ; UltimateKEYS.ahk - 2022-02-04
2
3 ; Website : www.ultimatekeys.info (pieter-degroote.github.io/UltimateKEYS/)
4
5 ; License : GNU General Public License Version 3
6
7 ; GitHub : github.com/pieter-degroote/UltimateKEYS
8
9
10 ; Requirements :
11
12 ; Keyboard layout (on Windows) : US QWERTY
13
14 ; AutoHotkey v1.1 (www.autohotkey.com)
15
16
17
18 ListLines Off ; omits recently executed lines from history (for privacy and security)
19 #KeyHistory 0 ; disables the key history (for privacy and security)
20
21 SendMode Input ; optimizes for faster and more reliable input
22
23
24 ; Dead Key : Circumflex Accent
25
26 dkCircumflex := ComObjCreate("Scripting.Dictionary")
27 dkCircumflex.item["a"] := "{u+0203}" ; (ȃ) a with inverted breve
28 dkCircumflex.item["A"] := "{u+0202}" ; (Ȃ) A with inverted breve
29 dkCircumflex.item["c"] := "{u+0109}" ; (ĉ) c with circumflex
30 dkCircumflex.item["C"] := "{u+0108}" ; (Ĉ) C with circumflex
31 dkCircumflex.item["e"] := "{u+0207}" ; (ȇ) e with inverted breve
32 dkCircumflex.item["E"] := "{u+0206}" ; (Ȇ) E with inverted breve
33 dkCircumflex.item["g"] := "{u+011d}" ; (ĝ) g with circumflex
34 dkCircumflex.item["G"] := "{u+011c}" ; (Ĝ) G with circumflex
35 dkCircumflex.item["h"] := "{u+0125}" ; (ĥ) h with circumflex
36 dkCircumflex.item["H"] := "{u+0124}" ; (Ĥ) H with circumflex
37 dkCircumflex.item["i"] := "{u+020b}" ; (ȋ) i with inverted breve
38 dkCircumflex.item["I"] := "{u+020a}" ; (Ȋ) I with inverted breve
39 dkCircumflex.item["j"] := "{u+0135}" ; (ĵ) j with circumflex
40 dkCircumflex.item["J"] := "{u+0134}" ; (Ĵ) J with circumflex
41 dkCircumflex.item["o"] := "{u+020f}" ; (ȏ) o with inverted breve
42 dkCircumflex.item["O"] := "{u+020e}" ; (Ȏ) O with inverted breve
43 dkCircumflex.item["r"] := "{u+0213}" ; (ȓ) r with inverted breve
44 dkCircumflex.item["R"] := "{u+0212}" ; (Ȓ) R with inverted breve
45 dkCircumflex.item["s"] := "{u+015d}" ; (ŝ) s with circumflex
46 dkCircumflex.item["S"] := "{u+015c}" ; (Ŝ) S with circumflex
47 dkCircumflex.item["u"] := "{u+0217}" ; (ȗ) u with inverted breve
48 dkCircumflex.item["U"] := "{u+0216}" ; (Ȗ) U with inverted breve
49 dkCircumflex.item["w"] := "{u+0175}" ; (ŵ) w with circumflex
50 dkCircumflex.item["W"] := "{u+0174}" ; (Ŵ) W with circumflex
51 dkCircumflex.item["y"] := "{u+0177}" ; (ŷ) y with circumflex
52 dkCircumflex.item["Y"] := "{u+0176}" ; (Ŷ) Y with circumflex
53 dkCircumflex.item["z"] := "{u+1e91}" ; (ẑ) z with circumflex
54 dkCircumflex.item["Z"] := "{u+1e90}" ; (Ẑ) Z with circumflex
55 dkCircumflex.item["1"] := "{u+21d9}" ; (⇙) south west double arrow
56 dkCircumflex.item["2"] := "{u+21d3}" ; (⇓) downwards double arrow
57 dkCircumflex.item["3"] := "{u+21d8}" ; (⇘) south east double arrow
58 dkCircumflex.item["4"] := "{u+21d0}" ; (⇐) leftwards double arrow
59 dkCircumflex.item["5"] := "{u+21d5}" ; (⇕) up down double arrow
60 dkCircumflex.item["6"] := "{u+21d2}" ; (⇒) rightwards double arrow
61 dkCircumflex.item["7"] := "{u+21d6}" ; (⇖) north west double arrow
62 dkCircumflex.item["8"] := "{u+21d1}" ; (⇑) upwards double arrow
63 dkCircumflex.item["9"] := "{u+21d7}" ; (⇗) north east double arrow
64 dkCircumflex.item["0"] := "{u+21d4}" ; (⇔) left right double arrow
65 dkCircumflex.item["!"] := "{u+21d9}" ; (⇙) south west double arrow
66 dkCircumflex.item["@"] := "{u+21d3}" ; (⇓) downwards double arrow
67 dkCircumflex.item["#"] := "{u+21d8}" ; (⇘) south east double arrow
68 dkCircumflex.item["$"] := "{u+21d0}" ; (⇐) leftwards double arrow
69 dkCircumflex.item["%"] := "{u+21d5}" ; (⇕) up down double arrow
70 dkCircumflex.item["^"] := "{u+21d2}" ; (⇒) rightwards double arrow
71 dkCircumflex.item["&"] := "{u+21d6}" ; (⇖) north west double arrow
72 dkCircumflex.item["*"] := "{u+21d1}" ; (⇑) upwards double arrow
73 dkCircumflex.item["("] := "{u+21d7}" ; (⇗) north east double arrow
74 dkCircumflex.item[")"] := "{u+21d4}" ; (⇔) left right double arrow
75 dkCircumflex.item[" "] := "{^}" ; circumflex accent
76
77
78 ; Dead Key : Caron
79
80 dkCaron := ComObjCreate("Scripting.Dictionary")
81 dkCaron.item["a"] := "{u+01ce}" ; (ǎ) a with caron
82 dkCaron.item["A"] := "{u+01cd}" ; (Ǎ) A with caron
83 dkCaron.item["c"] := "{u+010d}" ; (č) c with caron
84 dkCaron.item["C"] := "{u+010c}" ; (Č) C with caron
85 dkCaron.item["d"] := "{u+010f}" ; (ď) d with caron
86 dkCaron.item["D"] := "{u+010e}" ; (Ď) D with caron
87 dkCaron.item["e"] := "{u+011b}" ; (ě) e with caron
88 dkCaron.item["E"] := "{u+011a}" ; (Ě) E with caron
89 dkCaron.item["g"] := "{u+01e7}" ; (ǧ) g with caron
90 dkCaron.item["G"] := "{u+01e6}" ; (Ǧ) G with caron
91 dkCaron.item["h"] := "{u+021f}" ; (ȟ) h with caron
92 dkCaron.item["H"] := "{u+021e}" ; (Ȟ) H with caron
93 dkCaron.item["i"] := "{u+01d0}" ; (ǐ) i with caron
94 dkCaron.item["I"] := "{u+01cf}" ; (Ǐ) I with caron
95 dkCaron.item["j"] := "{u+01f0}" ; (ǰ) j with caron
96 dkCaron.item["k"] := "{u+01e9}" ; (ǩ) k with caron
97 dkCaron.item["K"] := "{u+01e8}" ; (Ǩ) K with caron
98 dkCaron.item["l"] := "{u+013e}" ; (ľ) l with caron
99 dkCaron.item["L"] := "{u+013d}" ; (Ľ) L with caron
100 dkCaron.item["n"] := "{u+0148}" ; (ň) n with caron
101 dkCaron.item["N"] := "{u+0147}" ; (Ň) N with caron
102 dkCaron.item["o"] := "{u+01d2}" ; (ǒ) o with caron
103 dkCaron.item["O"] := "{u+01d1}" ; (Ǒ) O with caron
104 dkCaron.item["r"] := "{u+0159}" ; (ř) r with caron
105 dkCaron.item["R"] := "{u+0158}" ; (Ř) R with caron
106 dkCaron.item["s"] := "{u+0161}" ; (š) s with caron
107 dkCaron.item["S"] := "{u+0160}" ; (Š) S with caron
108 dkCaron.item["t"] := "{u+0165}" ; (ť) t with caron
109 dkCaron.item["T"] := "{u+0164}" ; (Ť) T with caron
110 dkCaron.item["u"] := "{u+01d4}" ; (ǔ) u with caron
111 dkCaron.item["U"] := "{u+01d3}" ; (Ǔ) U with caron
112 dkCaron.item["v"] := "{u+01da}" ; (ǚ) u with diaeresis and caron
113 dkCaron.item["V"] := "{u+01d9}" ; (Ǚ) U with diaeresis and caron
114 dkCaron.item["z"] := "{u+017e}" ; (ž) z with caron
115 dkCaron.item["Z"] := "{u+017d}" ; (Ž) Z with caron
116 dkCaron.item["3"] := "{u+01ef}" ; (ǯ) small letter ezh with caron
117 dkCaron.item["#"] := "{u+01ee}" ; (Ǯ) capital letter ezh with caron
118 dkCaron.item["2"] := "{u+25bc}" ; (▼) black down-pointing triangle
119 dkCaron.item["@"] := "{u+25bd}" ; (▽) white down-pointing triangle
120 dkCaron.item["4"] := "{u+25c0}" ; (◀) black left-pointing triangle
121 dkCaron.item["$"] := "{u+25c1}" ; (◁) white left-pointing triangle
122 dkCaron.item["6"] := "{u+25b6}" ; (▶) black right-pointing triangle
123 dkCaron.item["^"] := "{u+25b7}" ; (▷) white right-pointing triangle
124 dkCaron.item["8"] := "{u+25b2}" ; (▲) black up-pointing triangle
125 dkCaron.item["*"] := "{u+25b3}" ; (△) white up-pointing triangle
126 dkCaron.item[" "] := "{u+02c7}" ; (ˇ) caron
127
128
129 ; Dead Key : Dot Above
130
131 dkDotAbove := ComObjCreate("Scripting.Dictionary")
132 dkDotAbove.item["a"] := "{u+0227}" ; (ȧ) a with dot above
133 dkDotAbove.item["A"] := "{u+0226}" ; (Ȧ) A with dot above
134 dkDotAbove.item["b"] := "{u+1e03}" ; (ḃ) b with dot above
135 dkDotAbove.item["B"] := "{u+1e02}" ; (Ḃ) B with dot above
136 dkDotAbove.item["c"] := "{u+010b}" ; (ċ) c with dot above
137 dkDotAbove.item["C"] := "{u+010a}" ; (Ċ) C with dot above
138 dkDotAbove.item["d"] := "{u+1e0b}" ; (ḋ) d with dot above
139 dkDotAbove.item["D"] := "{u+1e0a}" ; (Ḋ) D with dot above
140 dkDotAbove.item["e"] := "{u+0117}" ; (ė) e with dot above
141 dkDotAbove.item["E"] := "{u+0116}" ; (Ė) E with dot above
142 dkDotAbove.item["f"] := "{u+1e1f}" ; (ḟ) f with dot above
143 dkDotAbove.item["F"] := "{u+1e1e}" ; (Ḟ) F with dot above
144 dkDotAbove.item["g"] := "{u+0121}" ; (ġ) g with dot above
145 dkDotAbove.item["G"] := "{u+0120}" ; (Ġ) G with dot above
146 dkDotAbove.item["h"] := "{u+1e23}" ; (ḣ) h with dot above
147 dkDotAbove.item["H"] := "{u+1e22}" ; (Ḣ) H with dot above
148 dkDotAbove.item["i"] := "{u+0131}" ; (ı) dotless i (Turkish, Azerbaijani)
149 dkDotAbove.item["I"] := "{u+0130}" ; (İ) I with dot above (Turkish, Azerbaijani)
150 dkDotAbove.item["j"] := "{u+0237}" ; (ȷ) dotless j
151 dkDotAbove.item["l"] := "{u+0140}" ; (ŀ) l with middle dot
152 dkDotAbove.item["L"] := "{u+013f}" ; (Ŀ) L with middle dot
153 dkDotAbove.item["m"] := "{u+1e41}" ; (ṁ) m with dot above
154 dkDotAbove.item["M"] := "{u+1e40}" ; (Ṁ) M with dot above
155 dkDotAbove.item["n"] := "{u+1e45}" ; (ṅ) n with dot above
156 dkDotAbove.item["N"] := "{u+1e44}" ; (Ṅ) N with dot above
157 dkDotAbove.item["o"] := "{u+022f}" ; (ȯ) o with dot above
158 dkDotAbove.item["O"] := "{u+022e}" ; (Ȯ) O with dot above
159 dkDotAbove.item["p"] := "{u+1e57}" ; (ṗ) p with dot above
160 dkDotAbove.item["P"] := "{u+1e56}" ; (Ṗ) P with dot above
161 dkDotAbove.item["q"] := "{u+1e9b}" ; (ẛ) long s with dot above
162 dkDotAbove.item["r"] := "{u+1e59}" ; (ṙ) r with dot above
163 dkDotAbove.item["R"] := "{u+1e58}" ; (Ṙ) R with dot above
164 dkDotAbove.item["s"] := "{u+1e61}" ; (ṡ) s with dot above
165 dkDotAbove.item["S"] := "{u+1e60}" ; (Ṡ) S with dot above
166 dkDotAbove.item["t"] := "{u+1e6b}" ; (ṫ) t with dot above
167 dkDotAbove.item["T"] := "{u+1e6a}" ; (Ṫ) T with dot above
168 dkDotAbove.item["u"] := "{u+016f}" ; (ů) u with ring above
169 dkDotAbove.item["U"] := "{u+016e}" ; (Ů) U with ring above
170 dkDotAbove.item["w"] := "{u+1e87}" ; (ẇ) w with dot above
171 dkDotAbove.item["W"] := "{u+1e86}" ; (Ẇ) W with dot above
172 dkDotAbove.item["x"] := "{u+1e8b}" ; (ẋ) x with dot above
173 dkDotAbove.item["X"] := "{u+1e8a}" ; (Ẋ) X with dot above
174 dkDotAbove.item["y"] := "{u+1e8f}" ; (ẏ) y with dot above
175 dkDotAbove.item["Y"] := "{u+1e8e}" ; (Ẏ) Y with dot above
176 dkDotAbove.item["z"] := "{u+017c}" ; (ż) z with dot above
177 dkDotAbove.item["Z"] := "{u+017b}" ; (Ż) Z with dot above
178 dkDotAbove.item["1"] := "{u+2199}" ; (↙) south west arrow
179 dkDotAbove.item["2"] := "{u+2193}" ; (↓) downwards arrow
180 dkDotAbove.item["3"] := "{u+2198}" ; (↘) south east arrow
181 dkDotAbove.item["4"] := "{u+2190}" ; (←) leftwards arrow
182 dkDotAbove.item["5"] := "{u+2195}" ; (↕) up down arrow
183 dkDotAbove.item["6"] := "{u+2192}" ; (→) rightwards arrow
184 dkDotAbove.item["7"] := "{u+2196}" ; (↖) north west arrow
185 dkDotAbove.item["8"] := "{u+2191}" ; (↑) upwards arrow
186 dkDotAbove.item["9"] := "{u+2197}" ; (↗) north east arrow
187 dkDotAbove.item["0"] := "{u+2194}" ; (↔) left right arrow
188 dkDotAbove.item["!"] := "{u+2199}" ; (↙) south west arrow
189 dkDotAbove.item["@"] := "{u+2193}" ; (↓) downwards arrow
190 dkDotAbove.item["#"] := "{u+2198}" ; (↘) south east arrow
191 dkDotAbove.item["$"] := "{u+2190}" ; (←) leftwards arrow
192 dkDotAbove.item["%"] := "{u+2195}" ; (↕) up down arrow
193 dkDotAbove.item["^"] := "{u+2192}" ; (→) rightwards arrow
194 dkDotAbove.item["&"] := "{u+2196}" ; (↖) north west arrow
195 dkDotAbove.item["*"] := "{u+2191}" ; (↑) upwards arrow
196 dkDotAbove.item["("] := "{u+2197}" ; (↗) north east arrow
197 dkDotAbove.item[")"] := "{u+2194}" ; (↔) left right arrow
198 dkDotAbove.item[" "] := "{u+02d9}" ; (˙) dot above
199
200
201 ; Dead Key : Macron/Stroke
202
203 dkMacronStroke := ComObjCreate("Scripting.Dictionary")
204 dkMacronStroke.item["a"] := "{u+0101}" ; (ā) a with macron
205 dkMacronStroke.item["A"] := "{u+0100}" ; (Ā) A with macron
206 dkMacronStroke.item["b"] := "{u+0180}" ; (ƀ) b with stroke
207 dkMacronStroke.item["B"] := "{u+0243}" ; (Ƀ) B with stroke
208 dkMacronStroke.item["d"] := "{u+0111}" ; (đ) d with stroke
209 dkMacronStroke.item["D"] := "{u+0110}" ; (Đ) D with stroke
210 dkMacronStroke.item["e"] := "{u+0113}" ; (ē) e with macron
211 dkMacronStroke.item["E"] := "{u+0112}" ; (Ē) E with macron
212 dkMacronStroke.item["g"] := "{u+01e5}" ; (ǥ) g with stroke (Skolt Sami)
213 dkMacronStroke.item["G"] := "{u+01e4}" ; (Ǥ) G with stroke (Skolt Sami)
214 dkMacronStroke.item["h"] := "{u+0127}" ; (ħ) h with stroke (Maltese)
215 dkMacronStroke.item["H"] := "{u+0126}" ; (Ħ) H with stroke (Maltese)
216 dkMacronStroke.item["i"] := "{u+012b}" ; (ī) i with macron
217 dkMacronStroke.item["I"] := "{u+012a}" ; (Ī) I with macron
218 dkMacronStroke.item["j"] := "{u+0249}" ; (ɉ) j with stroke
219 dkMacronStroke.item["J"] := "{u+0248}" ; (Ɉ) J with stroke
220 dkMacronStroke.item["l"] := "{u+0142}" ; (ł) l with stroke
221 dkMacronStroke.item["L"] := "{u+0141}" ; (Ł) L with stroke
222 dkMacronStroke.item["o"] := "{u+014d}" ; (ō) o with macron
223 dkMacronStroke.item["O"] := "{u+014c}" ; (Ō) O with macron
224 dkMacronStroke.item["p"] := "{u+1d7d}" ; (ᵽ) p with stroke
225 dkMacronStroke.item["P"] := "{u+2c63}" ; (Ᵽ) P with stroke
226 dkMacronStroke.item["q"] := "{u+01ed}" ; (ǭ) o with ogonek and macron
227 dkMacronStroke.item["Q"] := "{u+01ec}" ; (Ǭ) O with ogonek and macron
228 dkMacronStroke.item["r"] := "{u+024d}" ; (ɍ) r with stroke
229 dkMacronStroke.item["R"] := "{u+024c}" ; (Ɍ) R with stroke
230 dkMacronStroke.item["t"] := "{u+0167}" ; (ŧ) t with stroke
231 dkMacronStroke.item["T"] := "{u+0166}" ; (Ŧ) T with stroke
232 dkMacronStroke.item["u"] := "{u+016b}" ; (ū) u with macron
233 dkMacronStroke.item["U"] := "{u+016a}" ; (Ū) U with macron
234 dkMacronStroke.item["v"] := "{u+01d6}" ; (ǖ) u with diaeresis and macron
235 dkMacronStroke.item["V"] := "{u+01d5}" ; (Ǖ) U with diaeresis and macron
236 dkMacronStroke.item["w"] := "{u+01e3}" ; (ǣ) ae with macron
237 dkMacronStroke.item["W"] := "{u+01e2}" ; (Ǣ) AE with macron
238 dkMacronStroke.item["y"] := "{u+0233}" ; (ȳ) y with macron
239 dkMacronStroke.item["Y"] := "{u+0232}" ; (Ȳ) Y with macron
240 dkMacronStroke.item["z"] := "{u+01b6}" ; (ƶ) z with stroke
241 dkMacronStroke.item["Z"] := "{u+01b5}" ; (Ƶ) Z with stroke
242 dkMacronStroke.item["1"] := "{u+21b2}" ; (↲) downwards arrow with tip leftwards
243 dkMacronStroke.item["2"] := "{u+21f5}" ; (⇵) downwards arrow leftwards of upwards arrow
244 dkMacronStroke.item["3"] := "{u+21b3}" ; (↳) downwards arrow with tip rightwards
245 dkMacronStroke.item["4"] := "{u+21c6}" ; (⇆) leftwards arrow over rightwards arrow
246 dkMacronStroke.item["5"] := "{u+21a8}" ; (↨) up down arrow with base
247 dkMacronStroke.item["6"] := "{u+21c4}" ; (⇄) rightwards arrow over leftwards arrow
248 dkMacronStroke.item["7"] := "{u+21b0}" ; (↰) upwards arrow with tip leftwards
249 dkMacronStroke.item["8"] := "{u+21c5}" ; (⇅) upwards arrow leftwards of downwards arrow
250 dkMacronStroke.item["9"] := "{u+21b1}" ; (↱) upwards arrow with tip rightwards
251 dkMacronStroke.item["0"] := "{u+21b9}" ; (↹) leftwards arrow to bar over rightwards arrow to bar
252 dkMacronStroke.item["!"] := "{u+21b2}" ; (↲) downwards arrow with tip leftwards
253 dkMacronStroke.item["@"] := "{u+21f5}" ; (⇵) downwards arrow leftwards of upwards arrow
254 dkMacronStroke.item["#"] := "{u+21b3}" ; (↳) downwards arrow with tip rightwards
255 dkMacronStroke.item["$"] := "{u+21c6}" ; (⇆) leftwards arrow over rightwards arrow
256 dkMacronStroke.item["%"] := "{u+21a8}" ; (↨) up down arrow with base
257 dkMacronStroke.item["^"] := "{u+21c4}" ; (⇄) rightwards arrow over leftwards arrow
258 dkMacronStroke.item["&"] := "{u+21b0}" ; (↰) upwards arrow with tip leftwards
259 dkMacronStroke.item["*"] := "{u+21c5}" ; (⇅) upwards arrow leftwards of downwards arrow
260 dkMacronStroke.item["("] := "{u+21b1}" ; (↱) upwards arrow with tip rightwards
261 dkMacronStroke.item[")"] := "{u+21b9}" ; (↹) leftwards arrow to bar over rightwards arrow to bar
262 dkMacronStroke.item[" "] := "{u+00af}" ; (¯) macron
263
264
265 ; Dead Key : Cedilla/Ogonek
266
267 dkCedillaOgonek := ComObjCreate("Scripting.Dictionary")
268 dkCedillaOgonek.item["a"] := "{u+0105}" ; (ą) a with ogonek
269 dkCedillaOgonek.item["A"] := "{u+0104}" ; (Ą) A with ogonek
270 dkCedillaOgonek.item["c"] := "{u+00e7}" ; (ç) c with cedilla
271 dkCedillaOgonek.item["C"] := "{u+00c7}" ; (Ç) C with cedilla
272 dkCedillaOgonek.item["d"] := "{u+1e11}" ; (ḑ) d with cedilla
273 dkCedillaOgonek.item["D"] := "{u+1e10}" ; (Ḑ) D with cedilla
274 dkCedillaOgonek.item["e"] := "{u+0119}" ; (ę) e with ogonek
275 dkCedillaOgonek.item["E"] := "{u+0118}" ; (Ę) E with ogonek
276 dkCedillaOgonek.item["f"] := "{u+0229}" ; (ȩ) e with cedilla
277 dkCedillaOgonek.item["F"] := "{u+0228}" ; (Ȩ) E with cedilla
278 dkCedillaOgonek.item["g"] := "{u+0123}" ; (ģ) g with cedilla
279 dkCedillaOgonek.item["G"] := "{u+0122}" ; (Ģ) G with cedilla
280 dkCedillaOgonek.item["h"] := "{u+1e29}" ; (ḩ) h with cedilla
281 dkCedillaOgonek.item["H"] := "{u+1e28}" ; (Ḩ) H with cedilla
282 dkCedillaOgonek.item["i"] := "{u+012f}" ; (į) i with ogonek
283 dkCedillaOgonek.item["I"] := "{u+012e}" ; (Į) I with ogonek
284 dkCedillaOgonek.item["k"] := "{u+0137}" ; (ķ) k with cedilla
285 dkCedillaOgonek.item["K"] := "{u+0136}" ; (Ķ) K with cedilla
286 dkCedillaOgonek.item["l"] := "{u+013c}" ; (ļ) l with cedilla
287 dkCedillaOgonek.item["L"] := "{u+013b}" ; (Ļ) L with cedilla
288 dkCedillaOgonek.item["n"] := "{u+0146}" ; (ņ) n with cedilla
289 dkCedillaOgonek.item["N"] := "{u+0145}" ; (Ņ) N with cedilla
290 dkCedillaOgonek.item["o"] := "{u+01eb}" ; (ǫ) o with ogonek
291 dkCedillaOgonek.item["O"] := "{u+01ea}" ; (Ǫ) O with ogonek
292 dkCedillaOgonek.item["r"] := "{u+0157}" ; (ŗ) r with cedilla
293 dkCedillaOgonek.item["R"] := "{u+0156}" ; (Ŗ) R with cedilla
294 dkCedillaOgonek.item["s"] := "{u+015f}" ; (ş) s with cedilla
295 dkCedillaOgonek.item["S"] := "{u+015e}" ; (Ş) S with cedilla
296 dkCedillaOgonek.item["t"] := "{u+0163}" ; (ţ) t with cedilla
297 dkCedillaOgonek.item["T"] := "{u+0162}" ; (Ţ) T with cedilla
298 dkCedillaOgonek.item["u"] := "{u+0173}" ; (ų) u with ogonek
299 dkCedillaOgonek.item["U"] := "{u+0172}" ; (Ų) U with ogonek
300 dkCedillaOgonek.item["w"] := "{u+01bf}" ; (ƿ) small letter wynn
301 dkCedillaOgonek.item["W"] := "{u+01f7}" ; (Ƿ) capital letter wynn
302 dkCedillaOgonek.item["y"] := "{u+021d}" ; (ȝ) small letter yogh
303 dkCedillaOgonek.item["Y"] := "{u+021c}" ; (Ȝ) capital letter yogh
304 dkCedillaOgonek.item["1"] := "{u+2013}" ; (–) en dash
305 dkCedillaOgonek.item["2"] := "{u+2014}" ; (—) em dash
306 dkCedillaOgonek.item["3"] := "{u+2015}" ; (―) horizontal bar
307 dkCedillaOgonek.item["4"] := "{u+2010}" ; (‐) hyphen
308 dkCedillaOgonek.item["9"] := "{u+2012}" ; (‒) figure dash
309 dkCedillaOgonek.item["0"] := "{u+00ad}" ; (­) soft hyphen
310 dkCedillaOgonek.item["!"] := "{u+2013}" ; (–) en dash
311 dkCedillaOgonek.item["@"] := "{u+2014}" ; (—) em dash
312 dkCedillaOgonek.item["#"] := "{u+2015}" ; (―) horizontal bar
313 dkCedillaOgonek.item["$"] := "{u+2010}" ; (‐) hyphen
314 dkCedillaOgonek.item["("] := "{u+2012}" ; (‒) figure dash
315 dkCedillaOgonek.item[")"] := "{u+00ad}" ; (­) soft hyphen
316 dkCedillaOgonek.item["-"] := "{u+2011}" ; (‑) non-breaking hyphen
317 dkCedillaOgonek.item[" "] := "{u+00b8}" ; (¸) cedilla
318
319
320 ; Dead Key : Breve/Special
321
322 dkBreveSpecial := ComObjCreate("Scripting.Dictionary")
323 dkBreveSpecial.item["a"] := "{u+0103}" ; (ă) a with breve
324 dkBreveSpecial.item["A"] := "{u+0102}" ; (Ă) A with breve
325 dkBreveSpecial.item["c"] := "{u+0188}" ; (ƈ) c with hook
326 dkBreveSpecial.item["C"] := "{u+0187}" ; (Ƈ) C with hook
327 dkBreveSpecial.item["d"] := "{u+0256}" ; (ɖ) small letter d with tail
328 dkBreveSpecial.item["D"] := "{u+0189}" ; (Ɖ) capital letter African D
329 dkBreveSpecial.item["e"] := "{u+0115}" ; (ĕ) e with breve
330 dkBreveSpecial.item["E"] := "{u+0114}" ; (Ĕ) E with breve
331 dkBreveSpecial.item["f"] := "{u+0259}" ; (ə) small letter schwa (Azerbaijani)
332 dkBreveSpecial.item["F"] := "{u+018f}" ; (Ə) capital letter schwa (Azerbaijani)
333 dkBreveSpecial.item["g"] := "{u+011f}" ; (ğ) g with breve
334 dkBreveSpecial.item["G"] := "{u+011e}" ; (Ğ) G with breve
335 dkBreveSpecial.item["h"] := "{u+0260}" ; (ɠ) g with hook
336 dkBreveSpecial.item["H"] := "{u+0193}" ; (Ɠ) G with hook
337 dkBreveSpecial.item["i"] := "{u+012d}" ; (ĭ) i with breve
338 dkBreveSpecial.item["I"] := "{u+012c}" ; (Ĭ) I with breve
339 dkBreveSpecial.item["j"] := "{u+0133}" ; (ij) ligature ij
340 dkBreveSpecial.item["J"] := "{u+0132}" ; (IJ) ligature IJ
341 dkBreveSpecial.item["k"] := "{u+0199}" ; (ƙ) k with hook
342 dkBreveSpecial.item["K"] := "{u+0198}" ; (Ƙ) K with hook
343 dkBreveSpecial.item["m"] := "{u+0271}" ; (ɱ) m with hook
344 dkBreveSpecial.item["M"] := "{u+2c6e}" ; (Ɱ) M with hook
345 dkBreveSpecial.item["n"] := "{u+014b}" ; (ŋ) small letter eng(ma)
346 dkBreveSpecial.item["N"] := "{u+014a}" ; (Ŋ) capital letter eng(ma)
347 dkBreveSpecial.item["o"] := "{u+014f}" ; (ŏ) o with breve
348 dkBreveSpecial.item["O"] := "{u+014e}" ; (Ŏ) O with breve
349 dkBreveSpecial.item["p"] := "{u+01a5}" ; (ƥ) p with hook
350 dkBreveSpecial.item["P"] := "{u+01a4}" ; (Ƥ) P with hook
351 dkBreveSpecial.item["q"] := "{u+024b}" ; (ɋ) q with hook tail
352 dkBreveSpecial.item["Q"] := "{u+024a}" ; (Ɋ) Q with hook tail
353 dkBreveSpecial.item["r"] := "{u+027d}" ; (ɽ) r with tail
354 dkBreveSpecial.item["R"] := "{u+2c64}" ; (Ɽ) R with tail
355 dkBreveSpecial.item["s"] := "{u+0219}" ; (ș) s with comma below (Romanian)
356 dkBreveSpecial.item["S"] := "{u+0218}" ; (Ș) S with comma below (Romanian)
357 dkBreveSpecial.item["t"] := "{u+021b}" ; (ț) t with comma below (Romanian)
358 dkBreveSpecial.item["T"] := "{u+021a}" ; (Ț) T with comma below (Romanian)
359 dkBreveSpecial.item["u"] := "{u+016d}" ; (ŭ) u with breve
360 dkBreveSpecial.item["U"] := "{u+016c}" ; (Ŭ) U with breve
361 dkBreveSpecial.item["v"] := "{u+028b}" ; (ʋ) v with hook
362 dkBreveSpecial.item["V"] := "{u+01b2}" ; (Ʋ) V with hook
363 dkBreveSpecial.item["w"] := "{u+2c73}" ; (ⱳ) w with hook
364 dkBreveSpecial.item["W"] := "{u+2c72}" ; (Ⱳ) W with hook
365 dkBreveSpecial.item["y"] := "{u+01b4}" ; (ƴ) y with hook
366 dkBreveSpecial.item["Y"] := "{u+01b3}" ; (Ƴ) Y with hook
367 dkBreveSpecial.item["z"] := "{u+0225}" ; (ȥ) z with hook
368 dkBreveSpecial.item["Z"] := "{u+0224}" ; (Ȥ) Z with hook
369 dkBreveSpecial.item["3"] := "{u+0292}" ; (ʒ) small letter ezh
370 dkBreveSpecial.item["#"] := "{u+01b7}" ; (Ʒ) capital letter ezh
371 dkBreveSpecial.item[" "] := "{u+02d8}" ; (˘) breve
372
373
374 ; Dead Key : Acute Accent
375
376 dkAcuteAccent := ComObjCreate("Scripting.Dictionary")
377 dkAcuteAccent.item["a"] := "{u+01fb}" ; (ǻ) a with ring above and acute
378 dkAcuteAccent.item["A"] := "{u+01fa}" ; (Ǻ) A with ring above and acute
379 dkAcuteAccent.item["b"] := "{u+0253}" ; (ɓ) b with hook
380 dkAcuteAccent.item["B"] := "{u+0181}" ; (Ɓ) B with hook
381 dkAcuteAccent.item["c"] := "{u+0107}" ; (ć) c with acute
382 dkAcuteAccent.item["C"] := "{u+0106}" ; (Ć) C with acute
383 dkAcuteAccent.item["d"] := "{u+0257}" ; (ɗ) d with hook
384 dkAcuteAccent.item["D"] := "{u+018a}" ; (Ɗ) D with hook
385 dkAcuteAccent.item["e"] := "{u+01fd}" ; (ǽ) ae with acute
386 dkAcuteAccent.item["E"] := "{u+01fc}" ; (Ǽ) AE with acute
387 dkAcuteAccent.item["f"] := "{u+0192}" ; (ƒ) f with hook
388 dkAcuteAccent.item["F"] := "{u+0191}" ; (Ƒ) F with hook
389 dkAcuteAccent.item["g"] := "{u+01f5}" ; (ǵ) g with acute
390 dkAcuteAccent.item["G"] := "{u+01f4}" ; (Ǵ) G with acute
391 dkAcuteAccent.item["h"] := "{u+0266}" ; (ɦ) h with hook
392 dkAcuteAccent.item["H"] := "{u+a7aa}" ; (Ɦ) H with hook
393 dkAcuteAccent.item["i"] := "{u+01ff}" ; (ǿ) o with stroke and acute
394 dkAcuteAccent.item["I"] := "{u+01fe}" ; (Ǿ) O with stroke and acute
395 dkAcuteAccent.item["j"] := "{u+0133}" ; (ij) ligature ij
396 dkAcuteAccent.item["J"] := "{u+0132}" ; (IJ) ligature IJ
397 dkAcuteAccent.item["k"] := "{u+1e31}" ; (ḱ) k with acute
398 dkAcuteAccent.item["K"] := "{u+1e30}" ; (Ḱ) K with acute
399 dkAcuteAccent.item["l"] := "{u+013a}" ; (ĺ) l with acute
400 dkAcuteAccent.item["L"] := "{u+0139}" ; (Ĺ) L with acute
401 dkAcuteAccent.item["m"] := "{u+1e3f}" ; (ḿ) m with acute
402 dkAcuteAccent.item["M"] := "{u+1e3e}" ; (Ḿ) M with acute
403 dkAcuteAccent.item["n"] := "{u+0144}" ; (ń) n with acute
404 dkAcuteAccent.item["N"] := "{u+0143}" ; (Ń) N with acute
405 dkAcuteAccent.item["o"] := "{u+0151}" ; (ő) o with double acute
406 dkAcuteAccent.item["O"] := "{u+0150}" ; (Ő) O with double acute
407 dkAcuteAccent.item["p"] := "{u+1e55}" ; (ṕ) p with acute
408 dkAcuteAccent.item["P"] := "{u+1e54}" ; (Ṕ) P with acute
409 dkAcuteAccent.item["q"] := "{u+1e09}" ; (ḉ) c with cedilla and acute
410 dkAcuteAccent.item["Q"] := "{u+1e08}" ; (Ḉ) C with cedilla and acute
411 dkAcuteAccent.item["r"] := "{u+0155}" ; (ŕ) r with acute
412 dkAcuteAccent.item["R"] := "{u+0154}" ; (Ŕ) R with acute
413 dkAcuteAccent.item["s"] := "{u+015b}" ; (ś) s with acute
414 dkAcuteAccent.item["S"] := "{u+015a}" ; (Ś) S with acute
415 dkAcuteAccent.item["t"] := "{u+01ad}" ; (ƭ) t with hook
416 dkAcuteAccent.item["T"] := "{u+01ac}" ; (Ƭ) T with hook
417 dkAcuteAccent.item["u"] := "{u+0171}" ; (ű) u with double acute
418 dkAcuteAccent.item["U"] := "{u+0170}" ; (Ű) U with double acute
419 dkAcuteAccent.item["v"] := "{u+01d8}" ; (ǘ) u with diaeresis and acute
420 dkAcuteAccent.item["V"] := "{u+01d7}" ; (Ǘ) U with diaeresis and acute
421 dkAcuteAccent.item["w"] := "{u+1e83}" ; (ẃ) w with acute
422 dkAcuteAccent.item["W"] := "{u+1e82}" ; (Ẃ) W with acute
423 dkAcuteAccent.item["y"] := "{u+00fd}" ; (ý) y with acute
424 dkAcuteAccent.item["Y"] := "{u+00dd}" ; (Ý) Y with acute
425 dkAcuteAccent.item["z"] := "{u+017a}" ; (ź) z with acute
426 dkAcuteAccent.item["Z"] := "{u+0179}" ; (Ź) Z with acute
427 dkAcuteAccent.item["2"] := "{u+266b}" ; (♫) beamed eighth notes
428 dkAcuteAccent.item["3"] := "{u+2042}" ; (⁂) asterism
429 dkAcuteAccent.item["4"] := "{u+2605}" ; (★) black star
430 dkAcuteAccent.item["5"] := "{u+2606}" ; (☆) white star
431 dkAcuteAccent.item["6"] := "{u+273d}" ; (✽) heavy teardrop-spoked asterisk
432 dkAcuteAccent.item["7"] := "{u+273b}" ; (✻) teardrop-spoked asterisk
433 dkAcuteAccent.item["8"] := "{u+266a}" ; (♪) eighth note
434 dkAcuteAccent.item["@"] := "{u+266b}" ; (♫) beamed eighth notes
435 dkAcuteAccent.item["#"] := "{u+2042}" ; (⁂) asterism
436 dkAcuteAccent.item["$"] := "{u+2605}" ; (★) black star
437 dkAcuteAccent.item["%"] := "{u+2606}" ; (☆) white star
438 dkAcuteAccent.item["^"] := "{u+273d}" ; (✽) heavy teardrop-spoked asterisk
439 dkAcuteAccent.item["&"] := "{u+273b}" ; (✻) teardrop-spoked asterisk
440 dkAcuteAccent.item["*"] := "{u+266a}" ; (♪) eighth note
441 dkAcuteAccent.item[" "] := "{u+00b4}" ; (´) acute accent
442
443
444 ; Dead Key : Diaeresis
445
446 dkDiaeresis := ComObjCreate("Scripting.Dictionary")
447 dkDiaeresis.item["a"] := "{u+00e4}" ; (ä) a with diaeresis
448 dkDiaeresis.item["A"] := "{u+00c4}" ; (Ä) A with diaeresis
449 dkDiaeresis.item["e"] := "{u+00eb}" ; (ë) e with diaeresis
450 dkDiaeresis.item["E"] := "{u+00cb}" ; (Ë) E with diaeresis
451 dkDiaeresis.item["h"] := "{u+1e27}" ; (ḧ) h with diaeresis
452 dkDiaeresis.item["H"] := "{u+1e26}" ; (Ḧ) H with diaeresis
453 dkDiaeresis.item["i"] := "{u+00ef}" ; (ï) i with diaeresis
454 dkDiaeresis.item["I"] := "{u+00cf}" ; (Ï) I with diaeresis
455 dkDiaeresis.item["o"] := "{u+00f6}" ; (ö) o with diaeresis
456 dkDiaeresis.item["O"] := "{u+00d6}" ; (Ö) O with diaeresis
457 dkDiaeresis.item["s"] := "{u+0283}" ; (ʃ) small letter esh
458 dkDiaeresis.item["S"] := "{u+01a9}" ; (Ʃ) capital letter esh
459 dkDiaeresis.item["t"] := "{u+1e97}" ; (ẗ) t with diaeresis
460 dkDiaeresis.item["u"] := "{u+00fc}" ; (ü) u with diaeresis
461 dkDiaeresis.item["U"] := "{u+00dc}" ; (Ü) U with diaeresis
462 dkDiaeresis.item["w"] := "{u+1e85}" ; (ẅ) w with diaeresis
463 dkDiaeresis.item["W"] := "{u+1e84}" ; (Ẅ) W with diaeresis
464 dkDiaeresis.item["x"] := "{u+1e8d}" ; (ẍ) x with diaeresis
465 dkDiaeresis.item["X"] := "{u+1e8c}" ; (Ẍ) X with diaeresis
466 dkDiaeresis.item["y"] := "{u+00ff}" ; (ÿ) y with diaeresis
467 dkDiaeresis.item["Y"] := "{u+0178}" ; (Ÿ) Y with diaeresis
468 dkDiaeresis.item[" "] := "{u+00a8}" ; (¨) diaeresis
469
470
471 ; Dead Key : Grave Accent
472
473 dkGraveAccent := ComObjCreate("Scripting.Dictionary")
474 dkGraveAccent.item["a"] := "{u+0201}" ; (ȁ) a with double grave
475 dkGraveAccent.item["A"] := "{u+0200}" ; (Ȁ) A with double grave
476 dkGraveAccent.item["d"] := "{u+00f0}" ; (ð) small letter eth
477 dkGraveAccent.item["D"] := "{u+00d0}" ; (Ð) capital letter eth
478 dkGraveAccent.item["e"] := "{u+0205}" ; (ȅ) e with double grave
479 dkGraveAccent.item["E"] := "{u+0204}" ; (Ȅ) E with double grave
480 dkGraveAccent.item["i"] := "{u+0209}" ; (ȉ) i with double grave
481 dkGraveAccent.item["I"] := "{u+0208}" ; (Ȉ) I with double grave
482 dkGraveAccent.item["n"] := "{u+01f9}" ; (ǹ) n with grave
483 dkGraveAccent.item["N"] := "{u+01f8}" ; (Ǹ) N with grave
484 dkGraveAccent.item["o"] := "{u+020d}" ; (ȍ) o with double grave
485 dkGraveAccent.item["O"] := "{u+020c}" ; (Ȍ) O with double grave
486 dkGraveAccent.item["r"] := "{u+0211}" ; (ȑ) r with double grave
487 dkGraveAccent.item["R"] := "{u+0210}" ; (Ȑ) R with double grave
488 dkGraveAccent.item["t"] := "{u+00fe}" ; (þ) small letter thorn
489 dkGraveAccent.item["T"] := "{u+00de}" ; (Þ) capital letter thorn
490 dkGraveAccent.item["u"] := "{u+0215}" ; (ȕ) u with double grave
491 dkGraveAccent.item["U"] := "{u+0214}" ; (Ȕ) U with double grave
492 dkGraveAccent.item["v"] := "{u+01dc}" ; (ǜ) u with diaeresis and grave
493 dkGraveAccent.item["V"] := "{u+01db}" ; (Ǜ) U with diaeresis and grave
494 dkGraveAccent.item["w"] := "{u+1e81}" ; (ẁ) w with grave
495 dkGraveAccent.item["W"] := "{u+1e80}" ; (Ẁ) W with grave
496 dkGraveAccent.item["y"] := "{u+1ef3}" ; (ỳ) y with grave
497 dkGraveAccent.item["Y"] := "{u+1ef2}" ; (Ỳ) Y with grave
498 dkGraveAccent.item["c"] := "{u+2663}" ; (♣) black club suit
499 dkGraveAccent.item["C"] := "{u+2667}" ; (♧) white club suit
500 dkGraveAccent.item["h"] := "{u+2665}" ; (♥) black heart suit
501 dkGraveAccent.item["H"] := "{u+2661}" ; (♡) white heart suit
502 dkGraveAccent.item["m"] := "{u+2666}" ; (♦) black diamond suit
503 dkGraveAccent.item["M"] := "{u+2662}" ; (♢) white diamond suit
504 dkGraveAccent.item["s"] := "{u+2660}" ; (♠) black spade suit
505 dkGraveAccent.item["S"] := "{u+2664}" ; (♤) white spade suit
506 dkGraveAccent.item["1"] := "{u+2002}" ; en space
507 dkGraveAccent.item["2"] := "{u+2003}" ; em space
508 dkGraveAccent.item["3"] := "{u+2004}" ; three-per-em space
509 dkGraveAccent.item["4"] := "{u+2005}" ; four-per-em space
510 dkGraveAccent.item["5"] := "{u+2008}" ; punctuation space
511 dkGraveAccent.item["6"] := "{u+2006}" ; six-per-em space
512 dkGraveAccent.item["7"] := "{u+2009}" ; thin space
513 dkGraveAccent.item["8"] := "{u+200a}" ; hair space
514 dkGraveAccent.item["9"] := "{u+2007}" ; figure space
515 dkGraveAccent.item["0"] := "{u+200b}" ; zero-width space
516 dkGraveAccent.item["!"] := "{u+2002}" ; en space
517 dkGraveAccent.item["@"] := "{u+2003}" ; em space
518 dkGraveAccent.item["#"] := "{u+2004}" ; three-per-em space
519 dkGraveAccent.item["$"] := "{u+2005}" ; four-per-em space
520 dkGraveAccent.item["%"] := "{u+2008}" ; punctuation space
521 dkGraveAccent.item["^"] := "{u+2006}" ; six-per-em space
522 dkGraveAccent.item["&"] := "{u+2009}" ; thin space
523 dkGraveAccent.item["*"] := "{u+200a}" ; hair space
524 dkGraveAccent.item["("] := "{u+2007}" ; figure space
525 dkGraveAccent.item[")"] := "{u+200b}" ; zero-width space
526 dkGraveAccent.item["-"] := "{u+00a0}" ; non-breaking space
527 dkGraveAccent.item["="] := "{u+202f}" ; narrow no-break space
528 dkGraveAccent.item[" "] := "``" ; grave accent
529
530
531 ; Dead Key : Tilde
532
533 dkTilde := ComObjCreate("Scripting.Dictionary")
534 dkTilde.item["a"] := "{u+00e3}" ; (ã) a with tilde
535 dkTilde.item["A"] := "{u+00c3}" ; (Ã) A with tilde
536 dkTilde.item["e"] := "{u+1ebd}" ; (ẽ) e with tilde
537 dkTilde.item["E"] := "{u+1ebc}" ; (Ẽ) E with tilde
538 dkTilde.item["i"] := "{u+0129}" ; (ĩ) i with tilde
539 dkTilde.item["I"] := "{u+0128}" ; (Ĩ) I with tilde
540 dkTilde.item["l"] := "{u+026b}" ; (ɫ) l with middle tilde
541 dkTilde.item["L"] := "{u+2c62}" ; (Ɫ) L with middle tilde
542 dkTilde.item["n"] := "{u+00f1}" ; (ñ) n with tilde
543 dkTilde.item["N"] := "{u+00d1}" ; (Ñ) N with tilde
544 dkTilde.item["o"] := "{u+00f5}" ; (õ) o with tilde
545 dkTilde.item["O"] := "{u+00d5}" ; (Õ) O with tilde
546 dkTilde.item["u"] := "{u+0169}" ; (ũ) u with tilde
547 dkTilde.item["U"] := "{u+0168}" ; (Ũ) U with tilde
548 dkTilde.item["v"] := "{u+1e7d}" ; (ṽ) v with tilde
549 dkTilde.item["V"] := "{u+1e7c}" ; (Ṽ) V with tilde
550 dkTilde.item["y"] := "{u+1ef9}" ; (ỹ) y with tilde
551 dkTilde.item["Y"] := "{u+1ef8}" ; (Ỹ) Y with tilde
552 dkTilde.item["s"] := "{u+017f}" ; (ſ) small long s
553 dkTilde.item["1"] := "{u+2000}" ; en quad
554 dkTilde.item["2"] := "{u+2001}" ; em quad
555 dkTilde.item["!"] := "{u+2000}" ; en quad
556 dkTilde.item["@"] := "{u+2001}" ; em quad
557 dkTilde.item[" "] := "~" ; tilde
558
559
560 ; Dead Key : General Symbols
561
562 dkSymbols := ComObjCreate("Scripting.Dictionary")
563 dkSymbols.item["a"] := "{u+00aa}" ; (ª) feminine ordinal indicator (Spanish, Portuguese, Italian, Galician)
564 dkSymbols.item["A"] := "{u+00aa}" ; (ª) feminine ordinal indicator (Spanish, Portuguese, Italian, Galician)
565 dkSymbols.item["b"] := "{u+2022}" ; (•) bullet
566 dkSymbols.item["B"] := "{u+25e6}" ; (◦) white bullet
567 dkSymbols.item["c"] := "{u+2105}" ; (℅) care of
568 dkSymbols.item["C"] := "{u+2105}" ; (℅) care of
569 dkSymbols.item["d"] := "{u+2020}" ; (†) dagger
570 dkSymbols.item["D"] := "{u+2021}" ; (‡) double dagger
571 dkSymbols.item["e"] := "{u+212e}" ; (℮) estimated symbol
572 dkSymbols.item["E"] := "{u+2709}" ; (✉) envelope
573 dkSymbols.item["f"] := "{u+2640}" ; (♀) Venus symbol (female)
574 dkSymbols.item["F"] := "{u+2640}" ; (♀) Venus symbol (female)
575 dkSymbols.item["g"] := "{u+2740}" ; (❀) white florette
576 dkSymbols.item["G"] := "{u+273f}" ; (✿) black florette
577 dkSymbols.item["h"] := "{u+2766}" ; (❦) floral heart
578 dkSymbols.item["H"] := "{u+2767}" ; (❧) rotated floral heart bullet
579 dkSymbols.item["i"] := "{u+22c4}" ; (⋄) diamond operator
580 dkSymbols.item["I"] := "{u+22c4}" ; (⋄) diamond operator
581 dkSymbols.item["j"] := "{u+2126}" ; (Ω) ohm sign (backwards compatibility)
582 dkSymbols.item["J"] := "{u+2126}" ; (Ω) ohm sign (backwards compatibility)
583 dkSymbols.item["k"] := "{u+214d}" ; (⅍) aktieselskab
584 dkSymbols.item["K"] := "{u+214d}" ; (⅍) aktieselskab
585 dkSymbols.item["l"] := "{u+2113}" ; (ℓ) script small l
586 dkSymbols.item["L"] := "{u+2112}" ; (ℒ) Laplace transform
587 dkSymbols.item["m"] := "{u+2642}" ; (♂) Mars symbol (male)
588 dkSymbols.item["M"] := "{u+2642}" ; (♂) Mars symbol (male)
589 dkSymbols.item["n"] := "{u+00ac}" ; (¬) not sign
590 dkSymbols.item["N"] := "{u+00ac}" ; (¬) not sign
591 dkSymbols.item["o"] := "{u+00ba}" ; (º) masculine ordinal indicator (Spanish, Portuguese, Italian, Galician)
592 dkSymbols.item["O"] := "{u+00ba}" ; (º) masculine ordinal indicator (Spanish, Portuguese, Italian, Galician)
593 dkSymbols.item["p"] := "{u+00b6}" ; (¶) pilcrow sign
594 dkSymbols.item["P"] := "{u+2117}" ; (℗) sound recording copyright
595 dkSymbols.item["q"] := "{u+201e}" ; („) double low-9 quotation mark
596 dkSymbols.item["Q"] := "{u+201a}" ; (‚) single low-9 quotation mark
597 dkSymbols.item["r"] := "{u+00ae}" ; (®) registered sign
598 dkSymbols.item["R"] := "{u+211e}" ; (℞) prescription take (Recipere)
599 dkSymbols.item["s"] := "{u+2120}" ; (℠) service mark
600 dkSymbols.item["S"] := "{u+2120}" ; (℠) service mark
601 dkSymbols.item["t"] := "{u+2122}" ; (™) trademark symbol
602 dkSymbols.item["T"] := "{u+2706}" ; (✆) telephone location sign
603 dkSymbols.item["u"] := "{u+2610}" ; (☐) ballot box
604 dkSymbols.item["U"] := "{u+2619}" ; (☙) reversed rotated floral heart bullet
605 dkSymbols.item["v"] := "{u+2713}" ; (✓) check mark
606 dkSymbols.item["V"] := "{u+2714}" ; (✔) heavy check mark
607 dkSymbols.item["w"] := "{u+26a0}" ; (⚠) warning sign
608 dkSymbols.item["W"] := "{u+26a0}" ; (⚠) warning sign
609 dkSymbols.item["x"] := "{u+2717}" ; (✗) ballot x
610 dkSymbols.item["X"] := "{u+2718}" ; (✘) heavy ballot x
611 dkSymbols.item["y"] := "{u+2611}" ; (☑) ballot box with check
612 dkSymbols.item["Y"] := "{u+2612}" ; (☒) ballot box with x
613 dkSymbols.item["1"] := "{u+2116}" ; (№) numero sign
614 dkSymbols.item["2"] := "{u+00bd}" ; (½) vulgar fraction 1/2
615 dkSymbols.item["3"] := "{u+2153}" ; (⅓) vulgar fraction 1/3
616 dkSymbols.item["4"] := "{u+00bc}" ; (¼) vulgar fraction 1/4
617 dkSymbols.item["5"] := "{u+2154}" ; (⅔) vulgar fraction 2/3
618 dkSymbols.item["6"] := "{u+00be}" ; (¾) vulgar fraction 3/4
619 dkSymbols.item["7"] := "{u+215b}" ; (⅛) vulgar fraction 1/8
620 dkSymbols.item["8"] := "{u+215c}" ; (⅜) vulgar fraction 3/8
621 dkSymbols.item["9"] := "{u+215d}" ; (⅝) vulgar fraction 5/8
622 dkSymbols.item["0"] := "{u+215e}" ; (⅞) vulgar fraction 7/8
623 dkSymbols.item["!"] := "{u+2116}" ; (№) numero sign
624 dkSymbols.item["@"] := "{u+00bd}" ; (½) vulgar fraction 1/2
625 dkSymbols.item["#"] := "{u+2153}" ; (⅓) vulgar fraction 1/3
626 dkSymbols.item["$"] := "{u+00bc}" ; (¼) vulgar fraction 1/4
627 dkSymbols.item["%"] := "{u+2154}" ; (⅔) vulgar fraction 2/3
628 dkSymbols.item["^"] := "{u+00be}" ; (¾) vulgar fraction 3/4
629 dkSymbols.item["&"] := "{u+215b}" ; (⅛) vulgar fraction 1/8
630 dkSymbols.item["*"] := "{u+215c}" ; (⅜) vulgar fraction 3/8
631 dkSymbols.item["("] := "{u+215d}" ; (⅝) vulgar fraction 5/8
632 dkSymbols.item[")"] := "{u+215e}" ; (⅞) vulgar fraction 7/8
633 dkSymbols.item["-"] := "{u+2043}" ; (⁃) hyphen bullet
634 dkSymbols.item["_"] := "{u+2023}" ; (‣) triangular bullet
635 dkSymbols.item["="] := "{u+00d7}" ; (×) multiplication sign
636 dkSymbols.item["+"] := "{u+00f7}" ; (÷) division sign
637 dkSymbols.item[";"] := "{u+263a}" ; (☺) white smiling face
638 dkSymbols.item[":"] := "{u+263b}" ; (☻) black smiling face
639 dkSymbols.item["."] := "{u+203c}" ; (‼) double exclamation mark
640 dkSymbols.item[">"] := "{u+2e2e}" ; (⸮) reversed question mark
641 dkSymbols.item["/"] := "{u+203d}" ; (‽) interrobang
642 dkSymbols.item["?"] := "{u+2e18}" ; (⸘) inverted interrobang
643 dkSymbols.item["\"] := "{u+205e}" ; (⁞) vertical four dots
644 dkSymbols.item["|"] := "{u+00a6}" ; (¦) broken bar
645 dkSymbols.item[" "] := "{u+00d7}" ; (×) multiplication sign
646
647
648 ; Dead Key : Currency
649
650 dkCurrency := ComObjCreate("Scripting.Dictionary")
651 dkCurrency.item["a"] := "{u+058f}" ; (֏) Armenian dram
652 dkCurrency.item["A"] := "{u+20b3}" ; (₳) Argentine austral
653 dkCurrency.item["b"] := "{u+20bf}" ; (₿) bitcoin
654 dkCurrency.item["B"] := "{u+0e3f}" ; (฿) Thai baht
655 dkCurrency.item["c"] := "{u+20a1}" ; (₡) Costa Rican colón
656 dkCurrency.item["C"] := "{u+20b5}" ; (₵) Ghanaian cedi
657 dkCurrency.item["d"] := "{u+20ab}" ; (₫) Vietnamese dong
658 dkCurrency.item["D"] := "{u+20af}" ; (₯) Greek drachma
659 dkCurrency.item["e"] := "{u+20a2}" ; (₢) Brazilian cruzeiro
660 dkCurrency.item["E"] := "{u+20a0}" ; (₠) euro-currency sign
661 dkCurrency.item["f"] := "{u+20a3}" ; (₣) French franc
662 dkCurrency.item["F"] := "{u+20a3}" ; (₣) French franc
663 dkCurrency.item["g"] := "{u+20b2}" ; (₲) Paraguayan guaraní
664 dkCurrency.item["G"] := "{u+20b2}" ; (₲) Paraguayan guaraní
665 dkCurrency.item["h"] := "{u+20b4}" ; (₴) Ukrainian hryvnia
666 dkCurrency.item["H"] := "{u+20b4}" ; (₴) Ukrainian hryvnia
667 dkCurrency.item["i"] := "{u+20a4}" ; (₤) lira
668 dkCurrency.item["I"] := "{u+20b6}" ; (₶) livre tournois
669 dkCurrency.item["k"] := "{u+20ad}" ; (₭) Laotian kip
670 dkCurrency.item["K"] := "{u+20ad}" ; (₭) Laotian kip
671 dkCurrency.item["l"] := "{u+20ba}" ; (₺) Turkish lira
672 dkCurrency.item["L"] := "{u+20be}" ; (₾) Georgian lari
673 dkCurrency.item["m"] := "{u+20bc}" ; (₼) Azerbaijani manat
674 dkCurrency.item["M"] := "{u+20a5}" ; (₥) mill sign
675 dkCurrency.item["n"] := "{u+20a6}" ; (₦) Nigerian naira
676 dkCurrency.item["N"] := "{u+20bb}" ; (₻) nordic mark
677 dkCurrency.item["p"] := "{u+20b1}" ; (₱) Philippine peso
678 dkCurrency.item["P"] := "{u+20a7}" ; (₧) Spanish pesetas
679 dkCurrency.item["r"] := "{u+20b9}" ; (₹) Indian rupee
680 dkCurrency.item["R"] := "{u+20bd}" ; (₽) Russian ruble
681 dkCurrency.item["s"] := "{u+20aa}" ; (₪) Israeli new shekel
682 dkCurrency.item["S"] := "{u+20b7}" ; (₷) spesmilo
683 dkCurrency.item["t"] := "{u+20ae}" ; (₮) Mongolian tögrög (tugrik)
684 dkCurrency.item["T"] := "{u+20b8}" ; (₸) Kazakh tenge
685 dkCurrency.item["u"] := "{u+20a8}" ; (₨) rupee sign
686 dkCurrency.item["U"] := "{u+20a8}" ; (₨) rupee sign
687 dkCurrency.item["w"] := "{u+20a9}" ; (₩) South Korean won
688 dkCurrency.item["W"] := "{u+20a9}" ; (₩) South Korean won
689 dkCurrency.item["x"] := "{u+00a4}" ; (¤) currency sign
690 dkCurrency.item["X"] := "{u+00a4}" ; (¤) currency sign
691 dkCurrency.item[" "] := "{u+00a4}" ; (¤) currency sign
692
693
694 ; Dead Key : Greek Alphabet
695
696 dkGreekAlphabet := ComObjCreate("Scripting.Dictionary")
697 dkGreekAlphabet.item["a"] := "{u+03b1}" ; (α) small alpha
698 dkGreekAlphabet.item["A"] := "{u+0391}" ; (Α) capital alpha
699 dkGreekAlphabet.item["b"] := "{u+03b2}" ; (β) small beta
700 dkGreekAlphabet.item["B"] := "{u+0392}" ; (Β) capital beta
701 dkGreekAlphabet.item["v"] := "{u+03b2}" ; (β) small beta
702 dkGreekAlphabet.item["V"] := "{u+0392}" ; (Β) capital beta
703 dkGreekAlphabet.item["g"] := "{u+03b3}" ; (γ) small gamma
704 dkGreekAlphabet.item["G"] := "{u+0393}" ; (Γ) capital gamma
705 dkGreekAlphabet.item["d"] := "{u+03b4}" ; (δ) small delta
706 dkGreekAlphabet.item["D"] := "{u+0394}" ; (Δ) capital delta
707 dkGreekAlphabet.item["e"] := "{u+03b5}" ; (ε) small epsilon
708 dkGreekAlphabet.item["E"] := "{u+0395}" ; (Ε) capital epsilon
709 dkGreekAlphabet.item["z"] := "{u+03b6}" ; (ζ) small zeta
710 dkGreekAlphabet.item["Z"] := "{u+0396}" ; (Ζ) capital zeta
711 dkGreekAlphabet.item["h"] := "{u+03b7}" ; (η) small eta
712 dkGreekAlphabet.item["H"] := "{u+0397}" ; (Η) capital eta
713 dkGreekAlphabet.item["j"] := "{u+03b8}" ; (θ) small theta
714 dkGreekAlphabet.item["J"] := "{u+0398}" ; (Θ) capital theta
715 dkGreekAlphabet.item["i"] := "{u+03b9}" ; (ι) small iota
716 dkGreekAlphabet.item["I"] := "{u+0399}" ; (Ι) capital iota
717 dkGreekAlphabet.item["k"] := "{u+03ba}" ; (κ) small kappa
718 dkGreekAlphabet.item["K"] := "{u+039a}" ; (Κ) capital kappa
719 dkGreekAlphabet.item["l"] := "{u+03bb}" ; (λ) small lambda
720 dkGreekAlphabet.item["L"] := "{u+039b}" ; (Λ) capital lambda
721 dkGreekAlphabet.item["m"] := "{u+03bc}" ; (μ) small mu
722 dkGreekAlphabet.item["M"] := "{u+039c}" ; (Μ) capital mu
723 dkGreekAlphabet.item["n"] := "{u+03bd}" ; (ν) small nu
724 dkGreekAlphabet.item["N"] := "{u+039d}" ; (Ν) capital nu
725 dkGreekAlphabet.item["x"] := "{u+03be}" ; (ξ) small xi
726 dkGreekAlphabet.item["X"] := "{u+039e}" ; (Ξ) capital xi
727 dkGreekAlphabet.item["o"] := "{u+03bf}" ; (ο) small omicron
728 dkGreekAlphabet.item["O"] := "{u+039f}" ; (Ο) capital omicron
729 dkGreekAlphabet.item["p"] := "{u+03c0}" ; (π) small pi
730 dkGreekAlphabet.item["P"] := "{u+03a0}" ; (Π) capital pi
731 dkGreekAlphabet.item["r"] := "{u+03c1}" ; (ρ) small rho
732 dkGreekAlphabet.item["R"] := "{u+03a1}" ; (Ρ) capital rho
733 dkGreekAlphabet.item["s"] := "{u+03c3}" ; (σ) small sigma
734 dkGreekAlphabet.item["S"] := "{u+03a3}" ; (Σ) capital sigma
735 dkGreekAlphabet.item[","] := "{u+03c2}" ; (ς) small final sigma
736 dkGreekAlphabet.item["t"] := "{u+03c4}" ; (τ) small tau
737 dkGreekAlphabet.item["T"] := "{u+03a4}" ; (Τ) capital tau
738 dkGreekAlphabet.item["u"] := "{u+03c5}" ; (υ) small upsilon
739 dkGreekAlphabet.item["U"] := "{u+03a5}" ; (Υ) capital upsilon
740 dkGreekAlphabet.item["y"] := "{u+03c5}" ; (υ) small upsilon
741 dkGreekAlphabet.item["Y"] := "{u+03a5}" ; (Υ) capital upsilon
742 dkGreekAlphabet.item["f"] := "{u+03c6}" ; (φ) small phi
743 dkGreekAlphabet.item["F"] := "{u+03a6}" ; (Φ) capital phi
744 dkGreekAlphabet.item["c"] := "{u+03c7}" ; (χ) small chi
745 dkGreekAlphabet.item["C"] := "{u+03a7}" ; (Χ) capital chi
746 dkGreekAlphabet.item["w"] := "{u+03c8}" ; (ψ) small psi
747 dkGreekAlphabet.item["W"] := "{u+03a8}" ; (Ψ) capital psi
748 dkGreekAlphabet.item["q"] := "{u+03c9}" ; (ω) small omega
749 dkGreekAlphabet.item["Q"] := "{u+03a9}" ; (Ω) capital omega
750 dkGreekAlphabet.item["1"] := "{u+00b9}" ; (¹) superscript 1
751 dkGreekAlphabet.item["2"] := "{u+00b2}" ; (²) superscript 2
752 dkGreekAlphabet.item["3"] := "{u+00b3}" ; (³) superscript 3
753 dkGreekAlphabet.item["4"] := "{u+2074}" ; (⁴) superscript 4
754 dkGreekAlphabet.item["5"] := "{u+2075}" ; (⁵) superscript 5
755 dkGreekAlphabet.item["6"] := "{u+2076}" ; (⁶) superscript 6
756 dkGreekAlphabet.item["7"] := "{u+2077}" ; (⁷) superscript 7
757 dkGreekAlphabet.item["8"] := "{u+2078}" ; (⁸) superscript 8
758 dkGreekAlphabet.item["9"] := "{u+2079}" ; (⁹) superscript 9
759 dkGreekAlphabet.item["0"] := "{u+2070}" ; (⁰) superscript 0
760 dkGreekAlphabet.item["-"] := "{u+207b}" ; (⁻) superscript -
761 dkGreekAlphabet.item["="] := "{u+207c}" ; (⁼) superscript =
762 dkGreekAlphabet.item["+"] := "{u+207a}" ; (⁺) superscript +
763 dkGreekAlphabet.item["["] := "{u+207d}" ; (⁽) superscript (
764 dkGreekAlphabet.item["]"] := "{u+207e}" ; (⁾) superscript )
765 dkGreekAlphabet.item["!"] := "{u+2081}" ; (₁) subscript 1
766 dkGreekAlphabet.item["@"] := "{u+2082}" ; (₂) subscript 2
767 dkGreekAlphabet.item["#"] := "{u+2083}" ; (₃) subscript 3
768 dkGreekAlphabet.item["$"] := "{u+2084}" ; (₄) subscript 4
769 dkGreekAlphabet.item["%"] := "{u+2085}" ; (₅) subscript 5
770 dkGreekAlphabet.item["^"] := "{u+2086}" ; (₆) subscript 6
771 dkGreekAlphabet.item["&"] := "{u+2087}" ; (₇) subscript 7
772 dkGreekAlphabet.item["*"] := "{u+2088}" ; (₈) subscript 8
773 dkGreekAlphabet.item["("] := "{u+2089}" ; (₉) subscript 9
774 dkGreekAlphabet.item[")"] := "{u+2080}" ; (₀) subscript 0
775 dkGreekAlphabet.item[";"] := "{u+208b}" ; (₋) subscript -
776 dkGreekAlphabet.item["'"] := "{u+208c}" ; (₌) subscript =
777 dkGreekAlphabet.item[chr(34)] := "{u+208a}" ; (₊) subscript +
778 dkGreekAlphabet.item["{"] := "{u+208d}" ; (₍) subscript (
779 dkGreekAlphabet.item["}"] := "{u+208e}" ; (₎) subscript )
780 dkGreekAlphabet.item["."] := "{u+00b5}" ; (µ) micro sign
781 dkGreekAlphabet.item[" "] := "{u+03bc}" ; (μ) small mu
782
783
784 ; Dead Key : Math Symbols
785
786 dkMathSymbols := ComObjCreate("Scripting.Dictionary")
787 dkMathSymbols.item["a"] := "{u+2200}" ; (∀) for all
788 dkMathSymbols.item["A"] := "{u+2200}" ; (∀) for all
789 dkMathSymbols.item["b"] := "{u+2286}" ; (⊆) subset of or equal to
790 dkMathSymbols.item["B"] := "{u+2287}" ; (⊇) superset of or equal to
791 dkMathSymbols.item["c"] := "{u+221d}" ; (∝) proportional to
792 dkMathSymbols.item["C"] := "{u+2102}" ; (ℂ) complex numbers
793 dkMathSymbols.item["d"] := "{u+2206}" ; (∆) increment operator
794 dkMathSymbols.item["D"] := "{u+2207}" ; (∇) nabla/del operator
795 dkMathSymbols.item["e"] := "{u+2203}" ; (∃) there exists
796 dkMathSymbols.item["E"] := "{u+2204}" ; (∄) there does not exist
797 dkMathSymbols.item["f"] := "{u+0192}" ; (ƒ) f with hook
798 dkMathSymbols.item["F"] := "{u+220e}" ; (∎) end of proof
799 dkMathSymbols.item["g"] := "{u+2282}" ; (⊂) subset of
800 dkMathSymbols.item["G"] := "{u+2284}" ; (⊄) not a subset of
801 dkMathSymbols.item["h"] := "{u+2283}" ; (⊃) superset of
802 dkMathSymbols.item["H"] := "{u+2285}" ; (⊅) not a superset of
803 dkMathSymbols.item["i"] := "{u+221e}" ; (∞) infinity symbol
804 dkMathSymbols.item["I"] := "{u+2111}" ; (ℑ) imaginary numbers
805 dkMathSymbols.item["j"] := "{u+2245}" ; (≅) congruent to
806 dkMathSymbols.item["J"] := "{u+2247}" ; (≇) not congruent to
807 dkMathSymbols.item["k"] := "{u+220b}" ; (∋) contains as member
808 dkMathSymbols.item["K"] := "{u+220c}" ; (∌) does not contain as member
809 dkMathSymbols.item["l"] := "{u+2225}" ; (∥) parallel to
810 dkMathSymbols.item["L"] := "{u+2226}" ; (∦) not parallel to
811 dkMathSymbols.item["m"] := "{u+2208}" ; (∈) element of
812 dkMathSymbols.item["M"] := "{u+2209}" ; (∉) not an element of
813 dkMathSymbols.item["n"] := "{u+207f}" ; (ⁿ) superscript n
814 dkMathSymbols.item["N"] := "{u+2115}" ; (ℕ) natural numbers
815 dkMathSymbols.item["o"] := "{u+2218}" ; (∘) ring operator
816 dkMathSymbols.item["O"] := "{u+2205}" ; (∅) empty set
817 dkMathSymbols.item["p"] := "{u+2202}" ; (∂) partial differential
818 dkMathSymbols.item["P"] := "{u+2119}" ; (ℙ) prime numbers
819 dkMathSymbols.item["q"] := "{u+211a}" ; (ℚ) rational numbers
820 dkMathSymbols.item["Q"] := "{u+211a}" ; (ℚ) rational numbers
821 dkMathSymbols.item["r"] := "{u+221a}" ; (√) square root
822 dkMathSymbols.item["R"] := "{u+211d}" ; (ℝ) real numbers
823 dkMathSymbols.item["s"] := "{u+2229}" ; (∩) set intersection
824 dkMathSymbols.item["S"] := "{u+222b}" ; (∫) integral symbol
825 dkMathSymbols.item["t"] := "{u+2300}" ; (⌀) diameter sign
826 dkMathSymbols.item["T"] := "{u+2300}" ; (⌀) diameter sign
827 dkMathSymbols.item["u"] := "{u+222a}" ; (∪) set union
828 dkMathSymbols.item["U"] := "{u+2216}" ; (∖) set minus
829 dkMathSymbols.item["v"] := "{u+2261}" ; (≡) identical to
830 dkMathSymbols.item["V"] := "{u+2262}" ; (≢) not identical to
831 dkMathSymbols.item["w"] := "{u+2118}" ; (℘) Weierstrass elliptic function
832 dkMathSymbols.item["W"] := "{u+2118}" ; (℘) Weierstrass elliptic function
833 dkMathSymbols.item["z"] := "{u+21af}" ; (↯) downwards zigzag arrow
834 dkMathSymbols.item["Z"] := "{u+2124}" ; (ℤ) whole numbers
835 dkMathSymbols.item["1"] := "{u+2260}" ; (≠) not equal to
836 dkMathSymbols.item["!"] := "{u+2260}" ; (≠) not equal to
837 dkMathSymbols.item["2"] := "{u+221a}" ; (√) square root
838 dkMathSymbols.item["@"] := "{u+221a}" ; (√) square root
839 dkMathSymbols.item["3"] := "{u+221b}" ; (∛) cube root
840 dkMathSymbols.item["#"] := "{u+221b}" ; (∛) cube root
841 dkMathSymbols.item["4"] := "{u+221c}" ; (∜) fourth root
842 dkMathSymbols.item["$"] := "{u+221c}" ; (∜) fourth root
843 dkMathSymbols.item["5"] := "{u+2030}" ; (‰) per mille sign
844 dkMathSymbols.item["%"] := "{u+2031}" ; (‱) per ten thousand sign
845 dkMathSymbols.item["6"] := "{u+2220}" ; (∠) angle symbol
846 dkMathSymbols.item["^"] := "{u+2220}" ; (∠) angle symbol
847 dkMathSymbols.item["7"] := "{u+2227}" ; (∧) logical and
848 dkMathSymbols.item["&"] := "{u+2227}" ; (∧) logical and
849 dkMathSymbols.item["8"] := "{u+2297}" ; (⊗) circled times
850 dkMathSymbols.item["*"] := "{u+2299}" ; (⊙) circled dot operator
851 dkMathSymbols.item["9"] := "{u+221f}" ; (∟) right angle
852 dkMathSymbols.item["("] := "{u+221f}" ; (∟) right angle
853 dkMathSymbols.item["0"] := "{u+2221}" ; (∡) measured angle
854 dkMathSymbols.item[")"] := "{u+2221}" ; (∡) measured angle
855 dkMathSymbols.item["``"] := "{u+2248}" ; (≈) almost equal to
856 dkMathSymbols.item["~"] := "{u+2248}" ; (≈) almost equal to
857 dkMathSymbols.item[","] := "{u+2264}" ; (≤) less-than or equal to
858 dkMathSymbols.item["<"] := "{u+2a7d}" ; (⩽) less-than or slanted equal to
859 dkMathSymbols.item["."] := "{u+2265}" ; (≥) greater-than or equal to
860 dkMathSymbols.item[">"] := "{u+2a7e}" ; (⩾) greater-than or slanted equal to
861 dkMathSymbols.item["-"] := "{u+00b1}" ; (±) plus-minus sign
862 dkMathSymbols.item["_"] := "{u+2296}" ; (⊖) circled minus
863 dkMathSymbols.item["/"] := "{u+2298}" ; (⊘) circled division slash
864 dkMathSymbols.item["="] := "{u+225d}" ; (≝) equal to by definition
865 dkMathSymbols.item["+"] := "{u+2295}" ; (⊕) circled plus
866 dkMathSymbols.item[";"] := "{u+2235}" ; (∵) because sign
867 dkMathSymbols.item[":"] := "{u+2234}" ; (∴) therefore sign
868 dkMathSymbols.item["'"] := "{u+2032}" ; (′) prime
869 dkMathSymbols.item[chr(34)] := "{u+2033}" ; (″) double prime
870 dkMathSymbols.item["["] := "{u+2034}" ; (‴) triple prime
871 dkMathSymbols.item["]"] := "{u+2057}" ; (⁗) quadruple prime
872 dkMathSymbols.item["\"] := "{u+2228}" ; (∨) logical or
873 dkMathSymbols.item["|"] := "{u+2228}" ; (∨) logical or
874 dkMathSymbols.item[" "] := "{u+221a}" ; (√) square root
875
876
877 ; Configuration : 'Right Alt' and 'Right Alt + Shift' on US QWERTY
878
879 >!a::
880 if GetKeyState("CapsLock", "T")
881 Send {u+00c4} ; (Ä) A with diaeresis
882 else
883 Send {u+00e4} ; (ä) a with diaeresis
884 return
885 >!+a::
886 if GetKeyState("CapsLock", "T")
887 Send {u+00e4} ; (ä) a with diaeresis
888 else
889 Send {u+00c4} ; (Ä) A with diaeresis
890 return
891
892 >!q::
893 if GetKeyState("CapsLock", "T")
894 Send {u+00c6} ; (Æ) letter AE
895 else
896 Send {u+00e6} ; (æ) letter ae
897 return
898 >!+q::
899 if GetKeyState("CapsLock", "T")
900 Send {u+00e6} ; (æ) letter ae
901 else
902 Send {u+00c6} ; (Æ) letter AE
903 return
904
905 >!w::
906 if GetKeyState("CapsLock", "T")
907 Send {u+00c5} ; (Å) A with ring above
908 else
909 Send {u+00e5} ; (å) a with ring above
910 return
911 >!+w::
912 if GetKeyState("CapsLock", "T")
913 Send {u+00e5} ; (å) a with ring above
914 else
915 Send {u+00c5} ; (Å) A with ring above
916 return
917
918 >!z::
919 if GetKeyState("CapsLock", "T")
920 Send {u+00c0} ; (À) A with grave
921 else
922 Send {u+00e0} ; (à) a with grave
923 return
924 >!+z::
925 if GetKeyState("CapsLock", "T")
926 Send {u+00e0} ; (à) a with grave
927 else
928 Send {u+00c0} ; (À) A with grave
929 return
930
931 >!x::
932 if GetKeyState("CapsLock", "T")
933 Send {u+00c1} ; (Á) A with acute
934 else
935 Send {u+00e1} ; (á) a with acute
936 return
937 >!+x::
938 if GetKeyState("CapsLock", "T")
939 Send {u+00e1} ; (á) a with acute
940 else
941 Send {u+00c1} ; (Á) A with acute
942 return
943
944 >!d::
945 if GetKeyState("CapsLock", "T")
946 Send {u+00c2} ; (Â) A with circumflex
947 else
948 Send {u+00e2} ; (â) a with circumflex
949 return
950 >!+d::
951 if GetKeyState("CapsLock", "T")
952 Send {u+00e2} ; (â) a with circumflex
953 else
954 Send {u+00c2} ; (Â) A with circumflex
955 return
956
957 >!c::
958 if GetKeyState("CapsLock", "T")
959 Send {u+00c7} ; (Ç) C with cedilla
960 else
961 Send {u+00e7} ; (ç) c with cedilla
962 return
963 >!+c::
964 if GetKeyState("CapsLock", "T")
965 Send {u+00e7} ; (ç) c with cedilla
966 else
967 Send {u+00c7} ; (Ç) C with cedilla
968 return
969
970 >!e::
971 if GetKeyState("CapsLock", "T")
972 Send {u+00cb} ; (Ë) E with diaeresis
973 else
974 Send {u+00eb} ; (ë) e with diaeresis
975 return
976 >!+e::
977 if GetKeyState("CapsLock", "T")
978 Send {u+00eb} ; (ë) e with diaeresis
979 else
980 Send {u+00cb} ; (Ë) E with diaeresis
981 return
982
983 >!f::
984 if GetKeyState("CapsLock", "T")
985 Send {u+00c8} ; (È) E with grave
986 else
987 Send {u+00e8} ; (è) e with grave
988 return
989 >!+f::
990 if GetKeyState("CapsLock", "T")
991 Send {u+00e8} ; (è) e with grave
992 else
993 Send {u+00c8} ; (È) E with grave
994 return
995
996 >!g::
997 if GetKeyState("CapsLock", "T")
998 Send {u+00c9} ; (É) E with acute
999 else
1000 Send {u+00e9} ; (é) e with acute
1001 return
1002 >!+g::
1003 if GetKeyState("CapsLock", "T")
1004 Send {u+00e9} ; (é) e with acute
1005 else
1006 Send {u+00c9} ; (É) E with acute
1007 return
1008
1009 >!r::
1010 if GetKeyState("CapsLock", "T")
1011 Send {u+00ca} ; (Ê) E with circumflex
1012 else
1013 Send {u+00ea} ; (ê) e with circumflex
1014 return
1015 >!+r::
1016 if GetKeyState("CapsLock", "T")
1017 Send {u+00ea} ; (ê) e with circumflex
1018 else
1019 Send {u+00ca} ; (Ê) E with circumflex
1020 return
1021
1022 >!i::
1023 if GetKeyState("CapsLock", "T")
1024 Send {u+00cf} ; (Ï) I with diaeresis
1025 else
1026 Send {u+00ef} ; (ï) i with diaeresis
1027 return
1028 >!+i::
1029 if GetKeyState("CapsLock", "T")
1030 Send {u+00ef} ; (ï) i with diaeresis
1031 else
1032 Send {u+00cf} ; (Ï) I with diaeresis
1033 return
1034
1035 >!v::
1036 if GetKeyState("CapsLock", "T")
1037 Send {u+00cc} ; (Ì) I with grave
1038 else
1039 Send {u+00ec} ; (ì) i with grave
1040 return
1041 >!+v::
1042 if GetKeyState("CapsLock", "T")
1043 Send {u+00ec} ; (ì) i with grave
1044 else
1045 Send {u+00cc} ; (Ì) I with grave
1046 return
1047
1048 >!b::
1049 if GetKeyState("CapsLock", "T")
1050 Send {u+00cd} ; (Í) I with acute
1051 else
1052 Send {u+00ed} ; (í) i with acute
1053 return
1054 >!+b::
1055 if GetKeyState("CapsLock", "T")
1056 Send {u+00ed} ; (í) i with acute
1057 else
1058 Send {u+00cd} ; (Í) I with acute
1059 return
1060
1061 >!t::
1062 if GetKeyState("CapsLock", "T")
1063 Send {u+00ce} ; (Î) I with circumflex
1064 else
1065 Send {u+00ee} ; (î) i with circumflex
1066 return
1067 >!+t::
1068 if GetKeyState("CapsLock", "T")
1069 Send {u+00ee} ; (î) i with circumflex
1070 else
1071 Send {u+00ce} ; (Î) I with circumflex
1072 return
1073
1074 >!n::
1075 if GetKeyState("CapsLock", "T")
1076 Send {u+00d1} ; (Ñ) N with tilde
1077 else
1078 Send {u+00f1} ; (ñ) n with tilde
1079 return
1080 >!+n::
1081 if GetKeyState("CapsLock", "T")
1082 Send {u+00f1} ; (ñ) n with tilde
1083 else
1084 Send {u+00d1} ; (Ñ) N with tilde
1085 return
1086
1087 >!o::
1088 if GetKeyState("CapsLock", "T")
1089 Send {u+00d6} ; (Ö) O with diaeresis
1090 else
1091 Send {u+00f6} ; (ö) o with diaeresis
1092 return
1093 >!+o::
1094 if GetKeyState("CapsLock", "T")
1095 Send {u+00f6} ; (ö) o with diaeresis
1096 else
1097 Send {u+00d6} ; (Ö) O with diaeresis
1098 return
1099
1100 >!k::
1101 if GetKeyState("CapsLock", "T")
1102 Send {u+0152} ; (Œ) ligature OE
1103 else
1104 Send {u+0153} ; (œ) ligature oe
1105 return
1106 >!+k::
1107 if GetKeyState("CapsLock", "T")
1108 Send {u+0153} ; (œ) ligature oe
1109 else
1110 Send {u+0152} ; (Œ) ligature OE
1111 return
1112
1113 >!l::
1114 if GetKeyState("CapsLock", "T")
1115 Send {u+00d8} ; (Ø) O with stroke
1116 else
1117 Send {u+00f8} ; (ø) o with stroke
1118 return
1119 >!+l::
1120 if GetKeyState("CapsLock", "T")
1121 Send {u+00f8} ; (ø) o with stroke
1122 else
1123 Send {u+00d8} ; (Ø) O with stroke
1124 return
1125
1126 >!,::
1127 if GetKeyState("CapsLock", "T")
1128 Send {u+00d2} ; (Ò) O with grave
1129 else
1130 Send {u+00f2} ; (ò) o with grave
1131 return
1132 >!<::
1133 if GetKeyState("CapsLock", "T")
1134 Send {u+00f2} ; (ò) o with grave
1135 else
1136 Send {u+00d2} ; (Ò) O with grave
1137 return
1138
1139 >!.::
1140 if GetKeyState("CapsLock", "T")
1141 Send {u+00d3} ; (Ó) O with acute
1142 else
1143 Send {u+00f3} ; (ó) o with acute
1144 return
1145 >!>::
1146 if GetKeyState("CapsLock", "T")
1147 Send {u+00f3} ; (ó) o with acute
1148 else
1149 Send {u+00d3} ; (Ó) O with acute
1150 return
1151
1152 >!p::
1153 if GetKeyState("CapsLock", "T")
1154 Send {u+00d4} ; (Ô) O with circumflex
1155 else
1156 Send {u+00f4} ; (ô) o with circumflex
1157 return
1158 >!+p::
1159 if GetKeyState("CapsLock", "T")
1160 Send {u+00f4} ; (ô) o with circumflex
1161 else
1162 Send {u+00d4} ; (Ô) O with circumflex
1163 return
1164
1165 >!s::
1166 if GetKeyState("CapsLock", "T")
1167 Send {u+1e9e} ; (ẞ) capital sharp S (capital Eszett)
1168 else
1169 Send {u+00df} ; (ß) small sharp s (Eszett)
1170 return
1171 >!+s::
1172 if GetKeyState("CapsLock", "T")
1173 Send {u+00df} ; (ß) small sharp s (Eszett)
1174 else
1175 Send {u+1e9e} ; (ẞ) capital sharp S (capital Eszett)
1176 return
1177
1178 >!u::
1179 if GetKeyState("CapsLock", "T")
1180 Send {u+00dc} ; (Ü) U with diaeresis
1181 else
1182 Send {u+00fc} ; (ü) u with diaeresis
1183 return
1184 >!+u::
1185 if GetKeyState("CapsLock", "T")
1186 Send {u+00fc} ; (ü) u with diaeresis
1187 else
1188 Send {u+00dc} ; (Ü) U with diaeresis
1189 return
1190
1191 >!h::
1192 if GetKeyState("CapsLock", "T")
1193 Send {u+00d9} ; (Ù) U with grave
1194 else
1195 Send {u+00f9} ; (ù) u with grave
1196 return
1197 >!+h::
1198 if GetKeyState("CapsLock", "T")
1199 Send {u+00f9} ; (ù) u with grave
1200 else
1201 Send {u+00d9} ; (Ù) U with grave
1202 return
1203
1204 >!j::
1205 if GetKeyState("CapsLock", "T")
1206 Send {u+00da} ; (Ú) U with acute
1207 else
1208 Send {u+00fa} ; (ú) u with acute
1209 return
1210 >!+j::
1211 if GetKeyState("CapsLock", "T")
1212 Send {u+00fa} ; (ú) u with acute
1213 else
1214 Send {u+00da} ; (Ú) U with acute
1215 return
1216
1217 >!y::
1218 if GetKeyState("CapsLock", "T")
1219 Send {u+00db} ; (Û) U with circumflex
1220 else
1221 Send {u+00fb} ; (û) u with circumflex
1222 return
1223 >!+y::
1224 if GetKeyState("CapsLock", "T")
1225 Send {u+00fb} ; (û) u with circumflex
1226 else
1227 Send {u+00db} ; (Û) U with circumflex
1228 return
1229
1230 >!-::
1231 if GetKeyState("CapsLock", "T")
1232 Send {u+00c3} ; (Ã) A with tilde
1233 else
1234 Send {u+00e3} ; (ã) a with tilde
1235 return
1236 >!_::
1237 if GetKeyState("CapsLock", "T")
1238 Send {u+00e3} ; (ã) a with tilde
1239 else
1240 Send {u+00c3} ; (Ã) A with tilde
1241 return
1242
1243 >!=::
1244 if GetKeyState("CapsLock", "T")
1245 Send {u+00d5} ; (Õ) O with tilde
1246 else
1247 Send {u+00f5} ; (õ) o with tilde
1248 return
1249 >!+=::
1250 if GetKeyState("CapsLock", "T")
1251 Send {u+00f5} ; (õ) o with tilde
1252 else
1253 Send {u+00d5} ; (Õ) O with tilde
1254 return
1255
1256 >!1::Send {u+00a1} ; (¡) inverted exclamation mark
1257 >!+1::Send {u+00b9} ; (¹) superscript 1
1258
1259 >!2::Send {u+00a9} ; (©) copyright sign
1260 >!+2::Send {u+00b2} ; (²) superscript 2
1261
1262 >!3::Send {u+00a7} ; (§) section sign
1263 >!+3::Send {u+00b3} ; (³) superscript 3
1264
1265 >!4::Send {u+00a3} ; (£) pound sign
1266 >!+4::Send {u+00a5} ; (¥) yen sign
1267
1268 >!5::Send {u+20ac} ; (€) euro sign
1269 >!+5::Send {u+00a2} ; (¢) cent sign (dollar)
1270
1271 >!9::Send {u+201c} ; (“) left double quotation mark
1272 >!+9::Send {u+2018} ; (‘) left single quotation mark
1273
1274 >!0::Send {u+201d} ; (”) right double quotation mark
1275 >!+0::Send {u+2019} ; (’) right single quotation mark
1276
1277 >![::Send {u+00ab} ; («) left-pointing double angle quotation mark
1278 >!{::Send {u+2039} ; (‹) left-pointing single angle quotation mark
1279
1280 >!]::Send {u+00bb} ; (») right-pointing double angle quotation mark
1281 >!}::Send {u+203a} ; (›) right-pointing single angle quotation mark
1282
1283 >!;::Send {u+00b0} ; (°) degree sign
1284 >!+;::Send {u+00b7} ; (·) middle dot
1285
1286 >!/::Send {u+00bf} ; (¿) inverted question mark
1287 >!?::Send {u+2026} ; (…) horizontal ellipsis
1288
1289 >!space::Send {u+00a0} ; non-breaking space
1290 >!+space::Send {u+00a0} ; non-breaking space
1291
1292
1293 ; Configuration : Dead Keys on 'Right Alt' and 'Right Alt + Shift'
1294
1295 >!6::
1296 Input, key, L1, {bs}{del}{esc}{home}{end}
1297 Send % dkCircumflex.item[key]
1298 key := "" ; avoids leaking content via debug properties
1299 return
1300 >!+6::
1301 Input, key, L1, {bs}{del}{esc}{home}{end}
1302 Send % dkCaron.item[key]
1303 key := "" ; avoids leaking content via debug properties
1304 return
1305
1306 >!7::
1307 Input, key, L1, {bs}{del}{esc}{home}{end}
1308 Send % dkDotAbove.item[key]
1309 key := ""
1310 return
1311 >!+7::
1312 Input, key, L1, {bs}{del}{esc}{home}{end}
1313 Send % dkMacronStroke.item[key]
1314 key := ""
1315 return
1316
1317 >!8::
1318 Input, key, L1, {bs}{del}{esc}{home}{end}
1319 Send % dkCedillaOgonek.item[key]
1320 key := ""
1321 return
1322 >!+8::
1323 Input, key, L1, {bs}{del}{esc}{home}{end}
1324 Send % dkBreveSpecial.item[key]
1325 key := ""
1326 return
1327
1328 >!'::
1329 Input, key, L1, {bs}{del}{esc}{home}{end}
1330 Send % dkAcuteAccent.item[key]
1331 key := ""
1332 return
1333 >!"::
1334 Input, key, L1, {bs}{del}{esc}{home}{end}
1335 Send % dkDiaeresis.item[key]
1336 key := ""
1337 return
1338
1339 >!`::
1340 Input, key, L1, {bs}{del}{esc}{home}{end}
1341 Send % dkGraveAccent.item[key]
1342 key := ""
1343 return
1344 >!~::
1345 Input, key, L1, {bs}{del}{esc}{home}{end}
1346 Send % dkTilde.item[key]
1347 key := ""
1348 return
1349
1350 >!\::
1351 Input, key, L1, {bs}{del}{esc}{home}{end}
1352 Send % dkSymbols.item[key]
1353 key := ""
1354 return
1355 >!|::
1356 Input, key, L1, {bs}{del}{esc}{home}{end}
1357 Send % dkCurrency.item[key]
1358 key := ""
1359 return
1360
1361 >!m::
1362 Input, key, L1, {bs}{del}{esc}{home}{end}
1363 Send % dkGreekAlphabet.item[key]
1364 key := ""
1365 return
1366 >!+m::
1367 Input, key, L1, {bs}{del}{esc}{home}{end}
1368 Send % dkMathSymbols.item[key]
1369 key := ""
1370 return