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