Mercurial > vim
annotate runtime/doc/digraph.txt @ 21853:aab3fe874b05 v8.2.1476
patch 8.2.1476: filetype test fails on MS-Windows
Commit: https://github.com/vim/vim/commit/aa9675a61d510c4a56c3845d05b32b1ef780d119
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Aug 17 21:57:09 2020 +0200
patch 8.2.1476: filetype test fails on MS-Windows
Problem: Filetype test fails on MS-Windows.
Solution: Remove "^" from pattern.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 17 Aug 2020 22:00:04 +0200 |
parents | 3a1ed539ae2a |
children | 1b23391fac7e |
rev | line source |
---|---|
21499 | 1 *digraph.txt* For Vim version 8.2. Last change: 2020 Jul 16 |
7 | 2 |
3 | |
4 VIM REFERENCE MANUAL by Bram Moolenaar | |
5 | |
6 | |
1702 | 7 Digraphs *digraph* *digraphs* *Digraphs* |
7 | 8 |
9 Digraphs are used to enter characters that normally cannot be entered by | |
1702 | 10 an ordinary keyboard. These are mostly printable non-ASCII characters. The |
11 digraphs are easier to remember than the decimal number that can be entered | |
12 with CTRL-V (see |i_CTRL-V|). | |
7 | 13 |
14 There is a brief introduction on digraphs in the user manual: |24.9| | |
15 An alternative is using the 'keymap' option. | |
16 | |
17 1. Defining digraphs |digraphs-define| | |
18 2. Using digraphs |digraphs-use| | |
19 3. Default digraphs |digraphs-default| | |
20 | |
21 | |
22 ============================================================================== | |
23 1. Defining digraphs *digraphs-define* | |
24 | |
25 *:dig* *:digraphs* | |
15152
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
15131
diff
changeset
|
26 :dig[raphs][!] Show currently defined digraphs. |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
15131
diff
changeset
|
27 With [!] headers are used to make it a bit easier to |
1ef429366fd4
patch 8.1.0586: :digraph output is not easy to read
Bram Moolenaar <Bram@vim.org>
parents:
15131
diff
changeset
|
28 find a specific character. |
7 | 29 *E104* *E39* |
30 :dig[raphs] {char1}{char2} {number} ... | |
31 Add digraph {char1}{char2} to the list. {number} is | |
26 | 32 the decimal representation of the character. Normally |
33 it is the Unicode character, see |digraph-encoding|. | |
7 | 34 Example: > |
35 :digr e: 235 a: 228 | |
21499 | 36 < You can use `:exe` to enter a hex number: > |
37 :exe 'digr += ' .. 0x2A72 | |
7 | 38 < Avoid defining a digraph with '_' (underscore) as the |
39 first character, it has a special meaning in the | |
40 future. | |
41 | |
42 Vim is normally compiled with the |+digraphs| feature. If the feature is | |
43 disabled, the ":digraph" command will display an error message. | |
44 | |
45 Example of the output of ":digraphs": > | |
2698
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
46 TH Þ 222 ss ß 223 a! à 224 a' á 225 a> â 226 a? ã 227 a: ä 228 |
7 | 47 |
48 The first two characters in each column are the characters you have to type to | |
49 enter the digraph. | |
50 | |
51 In the middle of each column is the resulting character. This may be mangled | |
52 if you look at it on a system that does not support digraphs or if you print | |
53 this file. | |
54 | |
26 | 55 *digraph-encoding* |
56 The decimal number normally is the Unicode number of the character. Note that | |
57 the meaning doesn't change when 'encoding' changes. The character will be | |
58 converted from Unicode to 'encoding' when needed. This does require the | |
1698 | 59 conversion to be available, it might fail. For the NUL character you will see |
60 "10". That's because NUL characters are internally represented with a NL | |
61 character. When you write the file it will become a NUL character. | |
26 | 62 |
15878 | 63 Example: > |
64 digraph oe 339 | |
65 This defines the "oe" digraph for a character that is number 339 in Unicode. | |
7 | 66 |
67 ============================================================================== | |
68 2. Using digraphs *digraphs-use* | |
69 | |
70 There are two methods to enter digraphs: *i_digraph* | |
71 CTRL-K {char1} {char2} or | |
72 {char1} <BS> {char2} | |
73 The first is always available; the second only when the 'digraph' option is | |
74 set. | |
75 | |
76 If a digraph with {char1}{char2} does not exist, Vim searches for a digraph | |
77 {char2}{char1}. This helps when you don't remember which character comes | |
78 first. | |
79 | |
80 Note that when you enter CTRL-K {char1}, where {char1} is a special key, Vim | |
81 enters the code for that special key. This is not a digraph. | |
82 | |
83 Once you have entered the digraph, Vim treats the character like a normal | |
84 character that occupies only one character in the file and on the screen. | |
85 Example: > | |
86 'B' <BS> 'B' will enter the broken '|' character (166) | |
87 'a' <BS> '>' will enter an 'a' with a circumflex (226) | |
88 CTRL-K '-' '-' will enter a soft hyphen (173) | |
89 | |
90 The current digraphs are listed with the ":digraphs" command. Some of the | |
91 default ones are listed below |digraph-table|. | |
92 | |
93 For CTRL-K, there is one general digraph: CTRL-K <Space> {char} will enter | |
94 {char} with the highest bit set. You can use this to enter meta-characters. | |
95 | |
96 The <Esc> character cannot be part of a digraph. When hitting <Esc>, Vim | |
97 stops digraph entry and ends Insert mode or Command-line mode, just like | |
98 hitting an <Esc> out of digraph context. Use CTRL-V 155 to enter meta-ESC | |
99 (CSI). | |
100 | |
101 If you accidentally typed an 'a' that should be an 'e', you will type 'a' <BS> | |
102 'e'. But that is a digraph, so you will not get what you want. To correct | |
103 this, you will have to type <BS> e again. To avoid this don't set the | |
104 'digraph' option and use CTRL-K to enter digraphs. | |
105 | |
1121 | 106 You may have problems using Vim with characters which have a value above 128. |
107 For example: You insert ue (u-umlaut) and the editor echoes \334 in Insert | |
15131 | 108 mode. After leaving the Insert mode everything is fine. On some Unix systems |
109 this means you have to define the environment-variable LC_CTYPE. If you are | |
110 using csh, then put the following line in your .cshrc: > | |
111 setenv LC_CTYPE en_US.utf8 | |
112 (or similar for a different language or country). The value must be a valid | |
113 locale on your system, i.e. on Unix-like systems it must be present in the | |
114 output of > | |
115 locale -a | |
7 | 116 |
117 ============================================================================== | |
118 3. Default digraphs *digraphs-default* | |
119 | |
120 Vim comes with a set of default digraphs. Check the output of ":digraphs" to | |
121 see them. | |
122 | |
123 On most systems Vim uses the same digraphs. They work for the Unicode and | |
124 ISO-8859-1 character sets. These default digraphs are taken from the RFC1345 | |
125 mnemonics. To make it easy to remember the mnemonic, the second character has | |
126 a standard meaning: | |
127 | |
128 char name char meaning ~ | |
129 Exclamation mark ! Grave | |
130 Apostrophe ' Acute accent | |
131 Greater-Than sign > Circumflex accent | |
1620 | 132 Question mark ? Tilde |
7 | 133 Hyphen-Minus - Macron |
134 Left parenthesis ( Breve | |
1620 | 135 Full stop . Dot above |
7 | 136 Colon : Diaeresis |
137 Comma , Cedilla | |
138 Underline _ Underline | |
139 Solidus / Stroke | |
140 Quotation mark " Double acute accent | |
141 Semicolon ; Ogonek | |
142 Less-Than sign < Caron | |
143 Zero 0 Ring above | |
144 Two 2 Hook | |
145 Nine 9 Horn | |
146 | |
10334
086117f5fb71
commit https://github.com/vim/vim/commit/81615517249bb78cba9c37c9834b787c1b265521
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
147 Equals = Cyrillic (= used as second char) |
7 | 148 Asterisk * Greek |
149 Percent sign % Greek/Cyrillic special | |
150 Plus + smalls: Arabic, capitals: Hebrew | |
151 Three 3 some Latin/Greek/Cyrillic letters | |
152 Four 4 Bopomofo | |
153 Five 5 Hiragana | |
154 Six 6 Katakana | |
155 | |
2698
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
156 Example: a: is ä and o: is ö |
7 | 157 |
158 These are the RFC1345 digraphs for the one-byte characters. See the output of | |
15878 | 159 ":digraphs" for the others. |
26 | 160 |
180 | 161 EURO |
162 | |
26 | 163 Exception: RFC1345 doesn't specify the euro sign. In Vim the digraph =e was |
180 | 164 added for this. Note the difference between latin1, where the digraph Cu is |
165 used for the currency sign, and latin9 (iso-8859-15), where the digraph =e is | |
523 | 166 used for the euro sign, while both of them are the character 164, 0xa4. For |
167 compatibility with zsh Eu can also be used for the euro sign. | |
180 | 168 |
6009 | 169 ROUBLE |
170 | |
171 The rouble sign was added in 2014 as 0x20bd. Vim supports the digraphs =R and | |
172 =P for this. Note that R= and P= are other characters. | |
173 | |
7 | 174 *digraph-table* |
175 char digraph hex dec official name ~ | |
176 ^@ NU 0x00 0 NULL (NUL) | |
177 ^A SH 0x01 1 START OF HEADING (SOH) | |
178 ^B SX 0x02 2 START OF TEXT (STX) | |
179 ^C EX 0x03 3 END OF TEXT (ETX) | |
180 ^D ET 0x04 4 END OF TRANSMISSION (EOT) | |
181 ^E EQ 0x05 5 ENQUIRY (ENQ) | |
182 ^F AK 0x06 6 ACKNOWLEDGE (ACK) | |
183 ^G BL 0x07 7 BELL (BEL) | |
184 ^H BS 0x08 8 BACKSPACE (BS) | |
185 ^I HT 0x09 9 CHARACTER TABULATION (HT) | |
186 ^@ LF 0x0a 10 LINE FEED (LF) | |
187 ^K VT 0x0b 11 LINE TABULATION (VT) | |
188 ^L FF 0x0c 12 FORM FEED (FF) | |
189 ^M CR 0x0d 13 CARRIAGE RETURN (CR) | |
190 ^N SO 0x0e 14 SHIFT OUT (SO) | |
191 ^O SI 0x0f 15 SHIFT IN (SI) | |
192 ^P DL 0x10 16 DATALINK ESCAPE (DLE) | |
193 ^Q D1 0x11 17 DEVICE CONTROL ONE (DC1) | |
194 ^R D2 0x12 18 DEVICE CONTROL TWO (DC2) | |
195 ^S D3 0x13 19 DEVICE CONTROL THREE (DC3) | |
196 ^T D4 0x14 20 DEVICE CONTROL FOUR (DC4) | |
197 ^U NK 0x15 21 NEGATIVE ACKNOWLEDGE (NAK) | |
843 | 198 ^V SY 0x16 22 SYNCHRONOUS IDLE (SYN) |
7 | 199 ^W EB 0x17 23 END OF TRANSMISSION BLOCK (ETB) |
200 ^X CN 0x18 24 CANCEL (CAN) | |
201 ^Y EM 0x19 25 END OF MEDIUM (EM) | |
202 ^Z SB 0x1a 26 SUBSTITUTE (SUB) | |
203 ^[ EC 0x1b 27 ESCAPE (ESC) | |
204 ^\ FS 0x1c 28 FILE SEPARATOR (IS4) | |
205 ^] GS 0x1d 29 GROUP SEPARATOR (IS3) | |
206 ^^ RS 0x1e 30 RECORD SEPARATOR (IS2) | |
207 ^_ US 0x1f 31 UNIT SEPARATOR (IS1) | |
208 SP 0x20 32 SPACE | |
209 # Nb 0x23 35 NUMBER SIGN | |
210 $ DO 0x24 36 DOLLAR SIGN | |
211 @ At 0x40 64 COMMERCIAL AT | |
212 [ <( 0x5b 91 LEFT SQUARE BRACKET | |
213 \ // 0x5c 92 REVERSE SOLIDUS | |
214 ] )> 0x5d 93 RIGHT SQUARE BRACKET | |
215 ^ '> 0x5e 94 CIRCUMFLEX ACCENT | |
216 ` '! 0x60 96 GRAVE ACCENT | |
217 { (! 0x7b 123 LEFT CURLY BRACKET | |
218 | !! 0x7c 124 VERTICAL LINE | |
219 } !) 0x7d 125 RIGHT CURLY BRACKET | |
220 ~ '? 0x7e 126 TILDE | |
221 ^? DT 0x7f 127 DELETE (DEL) | |
222 ~@ PA 0x80 128 PADDING CHARACTER (PAD) | |
223 ~A HO 0x81 129 HIGH OCTET PRESET (HOP) | |
224 ~B BH 0x82 130 BREAK PERMITTED HERE (BPH) | |
225 ~C NH 0x83 131 NO BREAK HERE (NBH) | |
226 ~D IN 0x84 132 INDEX (IND) | |
227 ~E NL 0x85 133 NEXT LINE (NEL) | |
228 ~F SA 0x86 134 START OF SELECTED AREA (SSA) | |
229 ~G ES 0x87 135 END OF SELECTED AREA (ESA) | |
230 ~H HS 0x88 136 CHARACTER TABULATION SET (HTS) | |
231 ~I HJ 0x89 137 CHARACTER TABULATION WITH JUSTIFICATION (HTJ) | |
232 ~J VS 0x8a 138 LINE TABULATION SET (VTS) | |
233 ~K PD 0x8b 139 PARTIAL LINE FORWARD (PLD) | |
234 ~L PU 0x8c 140 PARTIAL LINE BACKWARD (PLU) | |
235 ~M RI 0x8d 141 REVERSE LINE FEED (RI) | |
236 ~N S2 0x8e 142 SINGLE-SHIFT TWO (SS2) | |
237 ~O S3 0x8f 143 SINGLE-SHIFT THREE (SS3) | |
238 ~P DC 0x90 144 DEVICE CONTROL STRING (DCS) | |
239 ~Q P1 0x91 145 PRIVATE USE ONE (PU1) | |
240 ~R P2 0x92 146 PRIVATE USE TWO (PU2) | |
241 ~S TS 0x93 147 SET TRANSMIT STATE (STS) | |
242 ~T CC 0x94 148 CANCEL CHARACTER (CCH) | |
243 ~U MW 0x95 149 MESSAGE WAITING (MW) | |
244 ~V SG 0x96 150 START OF GUARDED AREA (SPA) | |
245 ~W EG 0x97 151 END OF GUARDED AREA (EPA) | |
246 ~X SS 0x98 152 START OF STRING (SOS) | |
247 ~Y GC 0x99 153 SINGLE GRAPHIC CHARACTER INTRODUCER (SGCI) | |
248 ~Z SC 0x9a 154 SINGLE CHARACTER INTRODUCER (SCI) | |
249 ~[ CI 0x9b 155 CONTROL SEQUENCE INTRODUCER (CSI) | |
250 ~\ ST 0x9c 156 STRING TERMINATOR (ST) | |
251 ~] OC 0x9d 157 OPERATING SYSTEM COMMAND (OSC) | |
252 ~^ PM 0x9e 158 PRIVACY MESSAGE (PM) | |
253 ~_ AC 0x9f 159 APPLICATION PROGRAM COMMAND (APC) | |
254 | NS 0xa0 160 NO-BREAK SPACE | |
2698
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
255 ¡ !I 0xa1 161 INVERTED EXCLAMATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
256 ¢ Ct 0xa2 162 CENT SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
257 £ Pd 0xa3 163 POUND SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
258 ¤ Cu 0xa4 164 CURRENCY SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
259 ¥ Ye 0xa5 165 YEN SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
260 ¦ BB 0xa6 166 BROKEN BAR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
261 § SE 0xa7 167 SECTION SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
262 ¨ ': 0xa8 168 DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
263 © Co 0xa9 169 COPYRIGHT SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
264 ª -a 0xaa 170 FEMININE ORDINAL INDICATOR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
265 « << 0xab 171 LEFT-POINTING DOUBLE ANGLE QUOTATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
266 ¬ NO 0xac 172 NOT SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
267 -- 0xad 173 SOFT HYPHEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
268 ® Rg 0xae 174 REGISTERED SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
269 ¯ 'm 0xaf 175 MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
270 ° DG 0xb0 176 DEGREE SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
271 ± +- 0xb1 177 PLUS-MINUS SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
272 ² 2S 0xb2 178 SUPERSCRIPT TWO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
273 ³ 3S 0xb3 179 SUPERSCRIPT THREE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
274 ´ '' 0xb4 180 ACUTE ACCENT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
275 µ My 0xb5 181 MICRO SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
276 ¶ PI 0xb6 182 PILCROW SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
277 · .M 0xb7 183 MIDDLE DOT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
278 ¸ ', 0xb8 184 CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
279 ¹ 1S 0xb9 185 SUPERSCRIPT ONE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
280 º -o 0xba 186 MASCULINE ORDINAL INDICATOR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
281 » >> 0xbb 187 RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
282 ¼ 14 0xbc 188 VULGAR FRACTION ONE QUARTER |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
283 ½ 12 0xbd 189 VULGAR FRACTION ONE HALF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
284 ¾ 34 0xbe 190 VULGAR FRACTION THREE QUARTERS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
285 ¿ ?I 0xbf 191 INVERTED QUESTION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
286 À A! 0xc0 192 LATIN CAPITAL LETTER A WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
287 Á A' 0xc1 193 LATIN CAPITAL LETTER A WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
288 Â A> 0xc2 194 LATIN CAPITAL LETTER A WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
289 Ã A? 0xc3 195 LATIN CAPITAL LETTER A WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
290 Ä A: 0xc4 196 LATIN CAPITAL LETTER A WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
291 Å AA 0xc5 197 LATIN CAPITAL LETTER A WITH RING ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
292 Æ AE 0xc6 198 LATIN CAPITAL LETTER AE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
293 Ç C, 0xc7 199 LATIN CAPITAL LETTER C WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
294 È E! 0xc8 200 LATIN CAPITAL LETTER E WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
295 É E' 0xc9 201 LATIN CAPITAL LETTER E WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
296 Ê E> 0xca 202 LATIN CAPITAL LETTER E WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
297 Ë E: 0xcb 203 LATIN CAPITAL LETTER E WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
298 Ì I! 0xcc 204 LATIN CAPITAL LETTER I WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
299 Í I' 0xcd 205 LATIN CAPITAL LETTER I WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
300 Î I> 0xce 206 LATIN CAPITAL LETTER I WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
301 Ï I: 0xcf 207 LATIN CAPITAL LETTER I WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
302 Ð D- 0xd0 208 LATIN CAPITAL LETTER ETH (Icelandic) |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
303 Ñ N? 0xd1 209 LATIN CAPITAL LETTER N WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
304 Ò O! 0xd2 210 LATIN CAPITAL LETTER O WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
305 Ó O' 0xd3 211 LATIN CAPITAL LETTER O WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
306 Ô O> 0xd4 212 LATIN CAPITAL LETTER O WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
307 Õ O? 0xd5 213 LATIN CAPITAL LETTER O WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
308 Ö O: 0xd6 214 LATIN CAPITAL LETTER O WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
309 × *X 0xd7 215 MULTIPLICATION SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
310 Ø O/ 0xd8 216 LATIN CAPITAL LETTER O WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
311 Ù U! 0xd9 217 LATIN CAPITAL LETTER U WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
312 Ú U' 0xda 218 LATIN CAPITAL LETTER U WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
313 Û U> 0xdb 219 LATIN CAPITAL LETTER U WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
314 Ü U: 0xdc 220 LATIN CAPITAL LETTER U WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
315 Ý Y' 0xdd 221 LATIN CAPITAL LETTER Y WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
316 Þ TH 0xde 222 LATIN CAPITAL LETTER THORN (Icelandic) |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
317 ß ss 0xdf 223 LATIN SMALL LETTER SHARP S (German) |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
318 à a! 0xe0 224 LATIN SMALL LETTER A WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
319 á a' 0xe1 225 LATIN SMALL LETTER A WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
320 â a> 0xe2 226 LATIN SMALL LETTER A WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
321 ã a? 0xe3 227 LATIN SMALL LETTER A WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
322 ä a: 0xe4 228 LATIN SMALL LETTER A WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
323 å aa 0xe5 229 LATIN SMALL LETTER A WITH RING ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
324 æ ae 0xe6 230 LATIN SMALL LETTER AE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
325 ç c, 0xe7 231 LATIN SMALL LETTER C WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
326 è e! 0xe8 232 LATIN SMALL LETTER E WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
327 é e' 0xe9 233 LATIN SMALL LETTER E WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
328 ê e> 0xea 234 LATIN SMALL LETTER E WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
329 ë e: 0xeb 235 LATIN SMALL LETTER E WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
330 ì i! 0xec 236 LATIN SMALL LETTER I WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
331 í i' 0xed 237 LATIN SMALL LETTER I WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
332 î i> 0xee 238 LATIN SMALL LETTER I WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
333 ï i: 0xef 239 LATIN SMALL LETTER I WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
334 ð d- 0xf0 240 LATIN SMALL LETTER ETH (Icelandic) |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
335 ñ n? 0xf1 241 LATIN SMALL LETTER N WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
336 ò o! 0xf2 242 LATIN SMALL LETTER O WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
337 ó o' 0xf3 243 LATIN SMALL LETTER O WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
338 ô o> 0xf4 244 LATIN SMALL LETTER O WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
339 õ o? 0xf5 245 LATIN SMALL LETTER O WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
340 ö o: 0xf6 246 LATIN SMALL LETTER O WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
341 ÷ -: 0xf7 247 DIVISION SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
342 ø o/ 0xf8 248 LATIN SMALL LETTER O WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
343 ù u! 0xf9 249 LATIN SMALL LETTER U WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
344 ú u' 0xfa 250 LATIN SMALL LETTER U WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
345 û u> 0xfb 251 LATIN SMALL LETTER U WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
346 ü u: 0xfc 252 LATIN SMALL LETTER U WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
347 ý y' 0xfd 253 LATIN SMALL LETTER Y WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
348 þ th 0xfe 254 LATIN SMALL LETTER THORN (Icelandic) |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
349 ÿ y: 0xff 255 LATIN SMALL LETTER Y WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
350 |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
351 If your Vim is compiled with |multibyte| support and you are using a multibyte |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
352 'encoding', Vim provides this enhanced set of additional digraphs: |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
353 |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
354 *digraph-table-mbyte* |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
355 char digraph hex dec official name ~ |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
356 Ā A- 0100 0256 LATIN CAPITAL LETTER A WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
357 ā a- 0101 0257 LATIN SMALL LETTER A WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
358 Ă A( 0102 0258 LATIN CAPITAL LETTER A WITH BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
359 ă a( 0103 0259 LATIN SMALL LETTER A WITH BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
360 Ą A; 0104 0260 LATIN CAPITAL LETTER A WITH OGONEK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
361 ą a; 0105 0261 LATIN SMALL LETTER A WITH OGONEK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
362 Ć C' 0106 0262 LATIN CAPITAL LETTER C WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
363 ć c' 0107 0263 LATIN SMALL LETTER C WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
364 Ĉ C> 0108 0264 LATIN CAPITAL LETTER C WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
365 ĉ c> 0109 0265 LATIN SMALL LETTER C WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
366 Ċ C. 010A 0266 LATIN CAPITAL LETTER C WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
367 ċ c. 010B 0267 LATIN SMALL LETTER C WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
368 Č C< 010C 0268 LATIN CAPITAL LETTER C WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
369 č c< 010D 0269 LATIN SMALL LETTER C WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
370 Ď D< 010E 0270 LATIN CAPITAL LETTER D WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
371 ď d< 010F 0271 LATIN SMALL LETTER D WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
372 Đ D/ 0110 0272 LATIN CAPITAL LETTER D WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
373 đ d/ 0111 0273 LATIN SMALL LETTER D WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
374 Ē E- 0112 0274 LATIN CAPITAL LETTER E WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
375 ē e- 0113 0275 LATIN SMALL LETTER E WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
376 Ĕ E( 0114 0276 LATIN CAPITAL LETTER E WITH BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
377 ĕ e( 0115 0277 LATIN SMALL LETTER E WITH BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
378 Ė E. 0116 0278 LATIN CAPITAL LETTER E WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
379 ė e. 0117 0279 LATIN SMALL LETTER E WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
380 Ę E; 0118 0280 LATIN CAPITAL LETTER E WITH OGONEK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
381 ę e; 0119 0281 LATIN SMALL LETTER E WITH OGONEK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
382 Ě E< 011A 0282 LATIN CAPITAL LETTER E WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
383 ě e< 011B 0283 LATIN SMALL LETTER E WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
384 Ĝ G> 011C 0284 LATIN CAPITAL LETTER G WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
385 ĝ g> 011D 0285 LATIN SMALL LETTER G WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
386 Ğ G( 011E 0286 LATIN CAPITAL LETTER G WITH BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
387 ğ g( 011F 0287 LATIN SMALL LETTER G WITH BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
388 Ġ G. 0120 0288 LATIN CAPITAL LETTER G WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
389 ġ g. 0121 0289 LATIN SMALL LETTER G WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
390 Ģ G, 0122 0290 LATIN CAPITAL LETTER G WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
391 ģ g, 0123 0291 LATIN SMALL LETTER G WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
392 Ĥ H> 0124 0292 LATIN CAPITAL LETTER H WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
393 ĥ h> 0125 0293 LATIN SMALL LETTER H WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
394 Ħ H/ 0126 0294 LATIN CAPITAL LETTER H WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
395 ħ h/ 0127 0295 LATIN SMALL LETTER H WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
396 Ĩ I? 0128 0296 LATIN CAPITAL LETTER I WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
397 ĩ i? 0129 0297 LATIN SMALL LETTER I WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
398 Ī I- 012A 0298 LATIN CAPITAL LETTER I WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
399 ī i- 012B 0299 LATIN SMALL LETTER I WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
400 Ĭ I( 012C 0300 LATIN CAPITAL LETTER I WITH BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
401 ĭ i( 012D 0301 LATIN SMALL LETTER I WITH BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
402 Į I; 012E 0302 LATIN CAPITAL LETTER I WITH OGONEK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
403 į i; 012F 0303 LATIN SMALL LETTER I WITH OGONEK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
404 İ I. 0130 0304 LATIN CAPITAL LETTER I WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
405 ı i. 0131 0305 LATIN SMALL LETTER DOTLESS I |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
406 IJ IJ 0132 0306 LATIN CAPITAL LIGATURE IJ |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
407 ij ij 0133 0307 LATIN SMALL LIGATURE IJ |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
408 Ĵ J> 0134 0308 LATIN CAPITAL LETTER J WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
409 ĵ j> 0135 0309 LATIN SMALL LETTER J WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
410 Ķ K, 0136 0310 LATIN CAPITAL LETTER K WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
411 ķ k, 0137 0311 LATIN SMALL LETTER K WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
412 ĸ kk 0138 0312 LATIN SMALL LETTER KRA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
413 Ĺ L' 0139 0313 LATIN CAPITAL LETTER L WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
414 ĺ l' 013A 0314 LATIN SMALL LETTER L WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
415 Ļ L, 013B 0315 LATIN CAPITAL LETTER L WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
416 ļ l, 013C 0316 LATIN SMALL LETTER L WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
417 Ľ L< 013D 0317 LATIN CAPITAL LETTER L WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
418 ľ l< 013E 0318 LATIN SMALL LETTER L WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
419 Ŀ L. 013F 0319 LATIN CAPITAL LETTER L WITH MIDDLE DOT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
420 ŀ l. 0140 0320 LATIN SMALL LETTER L WITH MIDDLE DOT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
421 Ł L/ 0141 0321 LATIN CAPITAL LETTER L WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
422 ł l/ 0142 0322 LATIN SMALL LETTER L WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
423 Ń N' 0143 0323 LATIN CAPITAL LETTER N WITH ACUTE ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
424 ń n' 0144 0324 LATIN SMALL LETTER N WITH ACUTE ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
425 Ņ N, 0145 0325 LATIN CAPITAL LETTER N WITH CEDILLA ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
426 ņ n, 0146 0326 LATIN SMALL LETTER N WITH CEDILLA ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
427 Ň N< 0147 0327 LATIN CAPITAL LETTER N WITH CARON ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
428 ň n< 0148 0328 LATIN SMALL LETTER N WITH CARON ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
429 ʼn 'n 0149 0329 LATIN SMALL LETTER N PRECEDED BY APOSTROPHE ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
430 Ŋ NG 014A 0330 LATIN CAPITAL LETTER ENG |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
431 ŋ ng 014B 0331 LATIN SMALL LETTER ENG |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
432 Ō O- 014C 0332 LATIN CAPITAL LETTER O WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
433 ō o- 014D 0333 LATIN SMALL LETTER O WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
434 Ŏ O( 014E 0334 LATIN CAPITAL LETTER O WITH BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
435 ŏ o( 014F 0335 LATIN SMALL LETTER O WITH BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
436 Ő O" 0150 0336 LATIN CAPITAL LETTER O WITH DOUBLE ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
437 ő o" 0151 0337 LATIN SMALL LETTER O WITH DOUBLE ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
438 Œ OE 0152 0338 LATIN CAPITAL LIGATURE OE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
439 œ oe 0153 0339 LATIN SMALL LIGATURE OE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
440 Ŕ R' 0154 0340 LATIN CAPITAL LETTER R WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
441 ŕ r' 0155 0341 LATIN SMALL LETTER R WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
442 Ŗ R, 0156 0342 LATIN CAPITAL LETTER R WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
443 ŗ r, 0157 0343 LATIN SMALL LETTER R WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
444 Ř R< 0158 0344 LATIN CAPITAL LETTER R WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
445 ř r< 0159 0345 LATIN SMALL LETTER R WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
446 Ś S' 015A 0346 LATIN CAPITAL LETTER S WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
447 ś s' 015B 0347 LATIN SMALL LETTER S WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
448 Ŝ S> 015C 0348 LATIN CAPITAL LETTER S WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
449 ŝ s> 015D 0349 LATIN SMALL LETTER S WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
450 Ş S, 015E 0350 LATIN CAPITAL LETTER S WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
451 ş s, 015F 0351 LATIN SMALL LETTER S WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
452 Š S< 0160 0352 LATIN CAPITAL LETTER S WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
453 š s< 0161 0353 LATIN SMALL LETTER S WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
454 Ţ T, 0162 0354 LATIN CAPITAL LETTER T WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
455 ţ t, 0163 0355 LATIN SMALL LETTER T WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
456 Ť T< 0164 0356 LATIN CAPITAL LETTER T WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
457 ť t< 0165 0357 LATIN SMALL LETTER T WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
458 Ŧ T/ 0166 0358 LATIN CAPITAL LETTER T WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
459 ŧ t/ 0167 0359 LATIN SMALL LETTER T WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
460 Ũ U? 0168 0360 LATIN CAPITAL LETTER U WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
461 ũ u? 0169 0361 LATIN SMALL LETTER U WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
462 Ū U- 016A 0362 LATIN CAPITAL LETTER U WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
463 ū u- 016B 0363 LATIN SMALL LETTER U WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
464 Ŭ U( 016C 0364 LATIN CAPITAL LETTER U WITH BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
465 ŭ u( 016D 0365 LATIN SMALL LETTER U WITH BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
466 Ů U0 016E 0366 LATIN CAPITAL LETTER U WITH RING ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
467 ů u0 016F 0367 LATIN SMALL LETTER U WITH RING ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
468 Ű U" 0170 0368 LATIN CAPITAL LETTER U WITH DOUBLE ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
469 ű u" 0171 0369 LATIN SMALL LETTER U WITH DOUBLE ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
470 Ų U; 0172 0370 LATIN CAPITAL LETTER U WITH OGONEK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
471 ų u; 0173 0371 LATIN SMALL LETTER U WITH OGONEK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
472 Ŵ W> 0174 0372 LATIN CAPITAL LETTER W WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
473 ŵ w> 0175 0373 LATIN SMALL LETTER W WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
474 Ŷ Y> 0176 0374 LATIN CAPITAL LETTER Y WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
475 ŷ y> 0177 0375 LATIN SMALL LETTER Y WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
476 Ÿ Y: 0178 0376 LATIN CAPITAL LETTER Y WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
477 Ź Z' 0179 0377 LATIN CAPITAL LETTER Z WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
478 ź z' 017A 0378 LATIN SMALL LETTER Z WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
479 Ż Z. 017B 0379 LATIN CAPITAL LETTER Z WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
480 ż z. 017C 0380 LATIN SMALL LETTER Z WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
481 Ž Z< 017D 0381 LATIN CAPITAL LETTER Z WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
482 ž z< 017E 0382 LATIN SMALL LETTER Z WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
483 Ơ O9 01A0 0416 LATIN CAPITAL LETTER O WITH HORN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
484 ơ o9 01A1 0417 LATIN SMALL LETTER O WITH HORN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
485 Ƣ OI 01A2 0418 LATIN CAPITAL LETTER OI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
486 ƣ oi 01A3 0419 LATIN SMALL LETTER OI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
487 Ʀ yr 01A6 0422 LATIN LETTER YR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
488 Ư U9 01AF 0431 LATIN CAPITAL LETTER U WITH HORN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
489 ư u9 01B0 0432 LATIN SMALL LETTER U WITH HORN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
490 Ƶ Z/ 01B5 0437 LATIN CAPITAL LETTER Z WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
491 ƶ z/ 01B6 0438 LATIN SMALL LETTER Z WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
492 Ʒ ED 01B7 0439 LATIN CAPITAL LETTER EZH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
493 Ǎ A< 01CD 0461 LATIN CAPITAL LETTER A WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
494 ǎ a< 01CE 0462 LATIN SMALL LETTER A WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
495 Ǐ I< 01CF 0463 LATIN CAPITAL LETTER I WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
496 ǐ i< 01D0 0464 LATIN SMALL LETTER I WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
497 Ǒ O< 01D1 0465 LATIN CAPITAL LETTER O WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
498 ǒ o< 01D2 0466 LATIN SMALL LETTER O WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
499 Ǔ U< 01D3 0467 LATIN CAPITAL LETTER U WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
500 ǔ u< 01D4 0468 LATIN SMALL LETTER U WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
501 Ǟ A1 01DE 0478 LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
502 ǟ a1 01DF 0479 LATIN SMALL LETTER A WITH DIAERESIS AND MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
503 Ǡ A7 01E0 0480 LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
504 ǡ a7 01E1 0481 LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
505 Ǣ A3 01E2 0482 LATIN CAPITAL LETTER AE WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
506 ǣ a3 01E3 0483 LATIN SMALL LETTER AE WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
507 Ǥ G/ 01E4 0484 LATIN CAPITAL LETTER G WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
508 ǥ g/ 01E5 0485 LATIN SMALL LETTER G WITH STROKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
509 Ǧ G< 01E6 0486 LATIN CAPITAL LETTER G WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
510 ǧ g< 01E7 0487 LATIN SMALL LETTER G WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
511 Ǩ K< 01E8 0488 LATIN CAPITAL LETTER K WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
512 ǩ k< 01E9 0489 LATIN SMALL LETTER K WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
513 Ǫ O; 01EA 0490 LATIN CAPITAL LETTER O WITH OGONEK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
514 ǫ o; 01EB 0491 LATIN SMALL LETTER O WITH OGONEK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
515 Ǭ O1 01EC 0492 LATIN CAPITAL LETTER O WITH OGONEK AND MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
516 ǭ o1 01ED 0493 LATIN SMALL LETTER O WITH OGONEK AND MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
517 Ǯ EZ 01EE 0494 LATIN CAPITAL LETTER EZH WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
518 ǯ ez 01EF 0495 LATIN SMALL LETTER EZH WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
519 ǰ j< 01F0 0496 LATIN SMALL LETTER J WITH CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
520 Ǵ G' 01F4 0500 LATIN CAPITAL LETTER G WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
521 ǵ g' 01F5 0501 LATIN SMALL LETTER G WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
522 ʿ ;S 02BF 0703 MODIFIER LETTER LEFT HALF RING |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
523 ˇ '< 02C7 0711 CARON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
524 ˘ '( 02D8 0728 BREVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
525 ˙ '. 02D9 0729 DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
526 ˚ '0 02DA 0730 RING ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
527 ˛ '; 02DB 0731 OGONEK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
528 ˝ '" 02DD 0733 DOUBLE ACUTE ACCENT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
529 Ά A% 0386 0902 GREEK CAPITAL LETTER ALPHA WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
530 Έ E% 0388 0904 GREEK CAPITAL LETTER EPSILON WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
531 Ή Y% 0389 0905 GREEK CAPITAL LETTER ETA WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
532 Ί I% 038A 0906 GREEK CAPITAL LETTER IOTA WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
533 Ό O% 038C 0908 GREEK CAPITAL LETTER OMICRON WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
534 Ύ U% 038E 0910 GREEK CAPITAL LETTER UPSILON WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
535 Ώ W% 038F 0911 GREEK CAPITAL LETTER OMEGA WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
536 ΐ i3 0390 0912 GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
537 Α A* 0391 0913 GREEK CAPITAL LETTER ALPHA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
538 Β B* 0392 0914 GREEK CAPITAL LETTER BETA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
539 Γ G* 0393 0915 GREEK CAPITAL LETTER GAMMA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
540 Δ D* 0394 0916 GREEK CAPITAL LETTER DELTA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
541 Ε E* 0395 0917 GREEK CAPITAL LETTER EPSILON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
542 Ζ Z* 0396 0918 GREEK CAPITAL LETTER ZETA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
543 Η Y* 0397 0919 GREEK CAPITAL LETTER ETA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
544 Θ H* 0398 0920 GREEK CAPITAL LETTER THETA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
545 Ι I* 0399 0921 GREEK CAPITAL LETTER IOTA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
546 Κ K* 039A 0922 GREEK CAPITAL LETTER KAPPA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
547 Λ L* 039B 0923 GREEK CAPITAL LETTER LAMDA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
548 Μ M* 039C 0924 GREEK CAPITAL LETTER MU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
549 Ν N* 039D 0925 GREEK CAPITAL LETTER NU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
550 Ξ C* 039E 0926 GREEK CAPITAL LETTER XI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
551 Ο O* 039F 0927 GREEK CAPITAL LETTER OMICRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
552 Π P* 03A0 0928 GREEK CAPITAL LETTER PI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
553 Ρ R* 03A1 0929 GREEK CAPITAL LETTER RHO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
554 Σ S* 03A3 0931 GREEK CAPITAL LETTER SIGMA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
555 Τ T* 03A4 0932 GREEK CAPITAL LETTER TAU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
556 Υ U* 03A5 0933 GREEK CAPITAL LETTER UPSILON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
557 Φ F* 03A6 0934 GREEK CAPITAL LETTER PHI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
558 Χ X* 03A7 0935 GREEK CAPITAL LETTER CHI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
559 Ψ Q* 03A8 0936 GREEK CAPITAL LETTER PSI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
560 Ω W* 03A9 0937 GREEK CAPITAL LETTER OMEGA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
561 Ϊ J* 03AA 0938 GREEK CAPITAL LETTER IOTA WITH DIALYTIKA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
562 Ϋ V* 03AB 0939 GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
563 ά a% 03AC 0940 GREEK SMALL LETTER ALPHA WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
564 έ e% 03AD 0941 GREEK SMALL LETTER EPSILON WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
565 ή y% 03AE 0942 GREEK SMALL LETTER ETA WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
566 ί i% 03AF 0943 GREEK SMALL LETTER IOTA WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
567 ΰ u3 03B0 0944 GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
568 α a* 03B1 0945 GREEK SMALL LETTER ALPHA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
569 β b* 03B2 0946 GREEK SMALL LETTER BETA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
570 γ g* 03B3 0947 GREEK SMALL LETTER GAMMA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
571 δ d* 03B4 0948 GREEK SMALL LETTER DELTA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
572 ε e* 03B5 0949 GREEK SMALL LETTER EPSILON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
573 ζ z* 03B6 0950 GREEK SMALL LETTER ZETA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
574 η y* 03B7 0951 GREEK SMALL LETTER ETA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
575 θ h* 03B8 0952 GREEK SMALL LETTER THETA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
576 ι i* 03B9 0953 GREEK SMALL LETTER IOTA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
577 κ k* 03BA 0954 GREEK SMALL LETTER KAPPA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
578 λ l* 03BB 0955 GREEK SMALL LETTER LAMDA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
579 μ m* 03BC 0956 GREEK SMALL LETTER MU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
580 ν n* 03BD 0957 GREEK SMALL LETTER NU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
581 ξ c* 03BE 0958 GREEK SMALL LETTER XI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
582 ο o* 03BF 0959 GREEK SMALL LETTER OMICRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
583 π p* 03C0 0960 GREEK SMALL LETTER PI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
584 ρ r* 03C1 0961 GREEK SMALL LETTER RHO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
585 ς *s 03C2 0962 GREEK SMALL LETTER FINAL SIGMA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
586 σ s* 03C3 0963 GREEK SMALL LETTER SIGMA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
587 τ t* 03C4 0964 GREEK SMALL LETTER TAU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
588 υ u* 03C5 0965 GREEK SMALL LETTER UPSILON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
589 φ f* 03C6 0966 GREEK SMALL LETTER PHI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
590 χ x* 03C7 0967 GREEK SMALL LETTER CHI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
591 ψ q* 03C8 0968 GREEK SMALL LETTER PSI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
592 ω w* 03C9 0969 GREEK SMALL LETTER OMEGA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
593 ϊ j* 03CA 0970 GREEK SMALL LETTER IOTA WITH DIALYTIKA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
594 ϋ v* 03CB 0971 GREEK SMALL LETTER UPSILON WITH DIALYTIKA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
595 ό o% 03CC 0972 GREEK SMALL LETTER OMICRON WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
596 ύ u% 03CD 0973 GREEK SMALL LETTER UPSILON WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
597 ώ w% 03CE 0974 GREEK SMALL LETTER OMEGA WITH TONOS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
598 Ϙ 'G 03D8 0984 GREEK LETTER ARCHAIC KOPPA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
599 ϙ ,G 03D9 0985 GREEK SMALL LETTER ARCHAIC KOPPA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
600 Ϛ T3 03DA 0986 GREEK LETTER STIGMA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
601 ϛ t3 03DB 0987 GREEK SMALL LETTER STIGMA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
602 Ϝ M3 03DC 0988 GREEK LETTER DIGAMMA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
603 ϝ m3 03DD 0989 GREEK SMALL LETTER DIGAMMA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
604 Ϟ K3 03DE 0990 GREEK LETTER KOPPA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
605 ϟ k3 03DF 0991 GREEK SMALL LETTER KOPPA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
606 Ϡ P3 03E0 0992 GREEK LETTER SAMPI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
607 ϡ p3 03E1 0993 GREEK SMALL LETTER SAMPI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
608 ϴ '% 03F4 1012 GREEK CAPITAL THETA SYMBOL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
609 ϵ j3 03F5 1013 GREEK LUNATE EPSILON SYMBOL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
610 Ё IO 0401 1025 CYRILLIC CAPITAL LETTER IO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
611 Ђ D% 0402 1026 CYRILLIC CAPITAL LETTER DJE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
612 Ѓ G% 0403 1027 CYRILLIC CAPITAL LETTER GJE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
613 Є IE 0404 1028 CYRILLIC CAPITAL LETTER UKRAINIAN IE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
614 Ѕ DS 0405 1029 CYRILLIC CAPITAL LETTER DZE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
615 І II 0406 1030 CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
616 Ї YI 0407 1031 CYRILLIC CAPITAL LETTER YI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
617 Ј J% 0408 1032 CYRILLIC CAPITAL LETTER JE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
618 Љ LJ 0409 1033 CYRILLIC CAPITAL LETTER LJE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
619 Њ NJ 040A 1034 CYRILLIC CAPITAL LETTER NJE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
620 Ћ Ts 040B 1035 CYRILLIC CAPITAL LETTER TSHE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
621 Ќ KJ 040C 1036 CYRILLIC CAPITAL LETTER KJE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
622 Ў V% 040E 1038 CYRILLIC CAPITAL LETTER SHORT U |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
623 Џ DZ 040F 1039 CYRILLIC CAPITAL LETTER DZHE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
624 А A= 0410 1040 CYRILLIC CAPITAL LETTER A |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
625 Б B= 0411 1041 CYRILLIC CAPITAL LETTER BE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
626 В V= 0412 1042 CYRILLIC CAPITAL LETTER VE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
627 Г G= 0413 1043 CYRILLIC CAPITAL LETTER GHE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
628 Д D= 0414 1044 CYRILLIC CAPITAL LETTER DE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
629 Е E= 0415 1045 CYRILLIC CAPITAL LETTER IE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
630 Ж Z% 0416 1046 CYRILLIC CAPITAL LETTER ZHE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
631 З Z= 0417 1047 CYRILLIC CAPITAL LETTER ZE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
632 И I= 0418 1048 CYRILLIC CAPITAL LETTER I |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
633 Й J= 0419 1049 CYRILLIC CAPITAL LETTER SHORT I |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
634 К K= 041A 1050 CYRILLIC CAPITAL LETTER KA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
635 Л L= 041B 1051 CYRILLIC CAPITAL LETTER EL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
636 М M= 041C 1052 CYRILLIC CAPITAL LETTER EM |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
637 Н N= 041D 1053 CYRILLIC CAPITAL LETTER EN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
638 О O= 041E 1054 CYRILLIC CAPITAL LETTER O |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
639 П P= 041F 1055 CYRILLIC CAPITAL LETTER PE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
640 Р R= 0420 1056 CYRILLIC CAPITAL LETTER ER |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
641 С S= 0421 1057 CYRILLIC CAPITAL LETTER ES |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
642 Т T= 0422 1058 CYRILLIC CAPITAL LETTER TE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
643 У U= 0423 1059 CYRILLIC CAPITAL LETTER U |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
644 Ф F= 0424 1060 CYRILLIC CAPITAL LETTER EF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
645 Х H= 0425 1061 CYRILLIC CAPITAL LETTER HA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
646 Ц C= 0426 1062 CYRILLIC CAPITAL LETTER TSE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
647 Ч C% 0427 1063 CYRILLIC CAPITAL LETTER CHE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
648 Ш S% 0428 1064 CYRILLIC CAPITAL LETTER SHA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
649 Щ Sc 0429 1065 CYRILLIC CAPITAL LETTER SHCHA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
650 Ъ =" 042A 1066 CYRILLIC CAPITAL LETTER HARD SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
651 Ы Y= 042B 1067 CYRILLIC CAPITAL LETTER YERU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
652 Ь %" 042C 1068 CYRILLIC CAPITAL LETTER SOFT SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
653 Э JE 042D 1069 CYRILLIC CAPITAL LETTER E |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
654 Ю JU 042E 1070 CYRILLIC CAPITAL LETTER YU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
655 Я JA 042F 1071 CYRILLIC CAPITAL LETTER YA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
656 а a= 0430 1072 CYRILLIC SMALL LETTER A |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
657 б b= 0431 1073 CYRILLIC SMALL LETTER BE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
658 в v= 0432 1074 CYRILLIC SMALL LETTER VE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
659 г g= 0433 1075 CYRILLIC SMALL LETTER GHE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
660 д d= 0434 1076 CYRILLIC SMALL LETTER DE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
661 е e= 0435 1077 CYRILLIC SMALL LETTER IE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
662 ж z% 0436 1078 CYRILLIC SMALL LETTER ZHE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
663 з z= 0437 1079 CYRILLIC SMALL LETTER ZE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
664 и i= 0438 1080 CYRILLIC SMALL LETTER I |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
665 й j= 0439 1081 CYRILLIC SMALL LETTER SHORT I |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
666 к k= 043A 1082 CYRILLIC SMALL LETTER KA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
667 л l= 043B 1083 CYRILLIC SMALL LETTER EL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
668 м m= 043C 1084 CYRILLIC SMALL LETTER EM |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
669 н n= 043D 1085 CYRILLIC SMALL LETTER EN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
670 о o= 043E 1086 CYRILLIC SMALL LETTER O |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
671 п p= 043F 1087 CYRILLIC SMALL LETTER PE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
672 р r= 0440 1088 CYRILLIC SMALL LETTER ER |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
673 с s= 0441 1089 CYRILLIC SMALL LETTER ES |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
674 т t= 0442 1090 CYRILLIC SMALL LETTER TE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
675 у u= 0443 1091 CYRILLIC SMALL LETTER U |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
676 ф f= 0444 1092 CYRILLIC SMALL LETTER EF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
677 х h= 0445 1093 CYRILLIC SMALL LETTER HA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
678 ц c= 0446 1094 CYRILLIC SMALL LETTER TSE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
679 ч c% 0447 1095 CYRILLIC SMALL LETTER CHE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
680 ш s% 0448 1096 CYRILLIC SMALL LETTER SHA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
681 щ sc 0449 1097 CYRILLIC SMALL LETTER SHCHA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
682 ъ =' 044A 1098 CYRILLIC SMALL LETTER HARD SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
683 ы y= 044B 1099 CYRILLIC SMALL LETTER YERU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
684 ь %' 044C 1100 CYRILLIC SMALL LETTER SOFT SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
685 э je 044D 1101 CYRILLIC SMALL LETTER E |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
686 ю ju 044E 1102 CYRILLIC SMALL LETTER YU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
687 я ja 044F 1103 CYRILLIC SMALL LETTER YA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
688 ё io 0451 1105 CYRILLIC SMALL LETTER IO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
689 ђ d% 0452 1106 CYRILLIC SMALL LETTER DJE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
690 ѓ g% 0453 1107 CYRILLIC SMALL LETTER GJE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
691 є ie 0454 1108 CYRILLIC SMALL LETTER UKRAINIAN IE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
692 ѕ ds 0455 1109 CYRILLIC SMALL LETTER DZE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
693 і ii 0456 1110 CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
694 ї yi 0457 1111 CYRILLIC SMALL LETTER YI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
695 ј j% 0458 1112 CYRILLIC SMALL LETTER JE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
696 љ lj 0459 1113 CYRILLIC SMALL LETTER LJE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
697 њ nj 045A 1114 CYRILLIC SMALL LETTER NJE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
698 ћ ts 045B 1115 CYRILLIC SMALL LETTER TSHE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
699 ќ kj 045C 1116 CYRILLIC SMALL LETTER KJE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
700 ў v% 045E 1118 CYRILLIC SMALL LETTER SHORT U |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
701 џ dz 045F 1119 CYRILLIC SMALL LETTER DZHE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
702 Ѣ Y3 0462 1122 CYRILLIC CAPITAL LETTER YAT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
703 ѣ y3 0463 1123 CYRILLIC SMALL LETTER YAT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
704 Ѫ O3 046A 1130 CYRILLIC CAPITAL LETTER BIG YUS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
705 ѫ o3 046B 1131 CYRILLIC SMALL LETTER BIG YUS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
706 Ѳ F3 0472 1138 CYRILLIC CAPITAL LETTER FITA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
707 ѳ f3 0473 1139 CYRILLIC SMALL LETTER FITA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
708 Ѵ V3 0474 1140 CYRILLIC CAPITAL LETTER IZHITSA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
709 ѵ v3 0475 1141 CYRILLIC SMALL LETTER IZHITSA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
710 Ҁ C3 0480 1152 CYRILLIC CAPITAL LETTER KOPPA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
711 ҁ c3 0481 1153 CYRILLIC SMALL LETTER KOPPA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
712 Ґ G3 0490 1168 CYRILLIC CAPITAL LETTER GHE WITH UPTURN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
713 ґ g3 0491 1169 CYRILLIC SMALL LETTER GHE WITH UPTURN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
714 א A+ 05D0 1488 HEBREW LETTER ALEF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
715 ב B+ 05D1 1489 HEBREW LETTER BET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
716 ג G+ 05D2 1490 HEBREW LETTER GIMEL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
717 ד D+ 05D3 1491 HEBREW LETTER DALET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
718 ה H+ 05D4 1492 HEBREW LETTER HE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
719 ו W+ 05D5 1493 HEBREW LETTER VAV |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
720 ז Z+ 05D6 1494 HEBREW LETTER ZAYIN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
721 ח X+ 05D7 1495 HEBREW LETTER HET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
722 ט Tj 05D8 1496 HEBREW LETTER TET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
723 י J+ 05D9 1497 HEBREW LETTER YOD |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
724 ך K% 05DA 1498 HEBREW LETTER FINAL KAF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
725 כ K+ 05DB 1499 HEBREW LETTER KAF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
726 ל L+ 05DC 1500 HEBREW LETTER LAMED |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
727 ם M% 05DD 1501 HEBREW LETTER FINAL MEM |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
728 מ M+ 05DE 1502 HEBREW LETTER MEM |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
729 ן N% 05DF 1503 HEBREW LETTER FINAL NUN ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
730 נ N+ 05E0 1504 HEBREW LETTER NUN ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
731 ס S+ 05E1 1505 HEBREW LETTER SAMEKH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
732 ע E+ 05E2 1506 HEBREW LETTER AYIN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
733 ף P% 05E3 1507 HEBREW LETTER FINAL PE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
734 פ P+ 05E4 1508 HEBREW LETTER PE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
735 ץ Zj 05E5 1509 HEBREW LETTER FINAL TSADI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
736 צ ZJ 05E6 1510 HEBREW LETTER TSADI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
737 ק Q+ 05E7 1511 HEBREW LETTER QOF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
738 ר R+ 05E8 1512 HEBREW LETTER RESH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
739 ש Sh 05E9 1513 HEBREW LETTER SHIN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
740 ת T+ 05EA 1514 HEBREW LETTER TAV |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
741 ، ,+ 060C 1548 ARABIC COMMA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
742 ؛ ;+ 061B 1563 ARABIC SEMICOLON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
743 ؟ ?+ 061F 1567 ARABIC QUESTION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
744 ء H' 0621 1569 ARABIC LETTER HAMZA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
745 آ aM 0622 1570 ARABIC LETTER ALEF WITH MADDA ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
746 أ aH 0623 1571 ARABIC LETTER ALEF WITH HAMZA ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
747 ؤ wH 0624 1572 ARABIC LETTER WAW WITH HAMZA ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
748 إ ah 0625 1573 ARABIC LETTER ALEF WITH HAMZA BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
749 ئ yH 0626 1574 ARABIC LETTER YEH WITH HAMZA ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
750 ا a+ 0627 1575 ARABIC LETTER ALEF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
751 ب b+ 0628 1576 ARABIC LETTER BEH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
752 ة tm 0629 1577 ARABIC LETTER TEH MARBUTA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
753 ت t+ 062A 1578 ARABIC LETTER TEH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
754 ث tk 062B 1579 ARABIC LETTER THEH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
755 ج g+ 062C 1580 ARABIC LETTER JEEM |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
756 ح hk 062D 1581 ARABIC LETTER HAH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
757 خ x+ 062E 1582 ARABIC LETTER KHAH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
758 د d+ 062F 1583 ARABIC LETTER DAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
759 ذ dk 0630 1584 ARABIC LETTER THAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
760 ر r+ 0631 1585 ARABIC LETTER REH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
761 ز z+ 0632 1586 ARABIC LETTER ZAIN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
762 س s+ 0633 1587 ARABIC LETTER SEEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
763 ش sn 0634 1588 ARABIC LETTER SHEEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
764 ص c+ 0635 1589 ARABIC LETTER SAD |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
765 ض dd 0636 1590 ARABIC LETTER DAD |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
766 ط tj 0637 1591 ARABIC LETTER TAH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
767 ظ zH 0638 1592 ARABIC LETTER ZAH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
768 ع e+ 0639 1593 ARABIC LETTER AIN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
769 غ i+ 063A 1594 ARABIC LETTER GHAIN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
770 ـ ++ 0640 1600 ARABIC TATWEEL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
771 ف f+ 0641 1601 ARABIC LETTER FEH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
772 ق q+ 0642 1602 ARABIC LETTER QAF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
773 ك k+ 0643 1603 ARABIC LETTER KAF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
774 ل l+ 0644 1604 ARABIC LETTER LAM |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
775 م m+ 0645 1605 ARABIC LETTER MEEM |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
776 ن n+ 0646 1606 ARABIC LETTER NOON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
777 ه h+ 0647 1607 ARABIC LETTER HEH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
778 و w+ 0648 1608 ARABIC LETTER WAW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
779 ى j+ 0649 1609 ARABIC LETTER ALEF MAKSURA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
780 ي y+ 064A 1610 ARABIC LETTER YEH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
781 ً :+ 064B 1611 ARABIC FATHATAN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
782 ٌ "+ 064C 1612 ARABIC DAMMATAN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
783 ٍ =+ 064D 1613 ARABIC KASRATAN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
784 َ /+ 064E 1614 ARABIC FATHA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
785 ُ '+ 064F 1615 ARABIC DAMMA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
786 ِ 1+ 0650 1616 ARABIC KASRA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
787 ّ 3+ 0651 1617 ARABIC SHADDA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
788 ْ 0+ 0652 1618 ARABIC SUKUN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
789 ٰ aS 0670 1648 ARABIC LETTER SUPERSCRIPT ALEF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
790 پ p+ 067E 1662 ARABIC LETTER PEH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
791 ڤ v+ 06A4 1700 ARABIC LETTER VEH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
792 گ gf 06AF 1711 ARABIC LETTER GAF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
793 ۰ 0a 06F0 1776 EXTENDED ARABIC-INDIC DIGIT ZERO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
794 ۱ 1a 06F1 1777 EXTENDED ARABIC-INDIC DIGIT ONE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
795 ۲ 2a 06F2 1778 EXTENDED ARABIC-INDIC DIGIT TWO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
796 ۳ 3a 06F3 1779 EXTENDED ARABIC-INDIC DIGIT THREE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
797 ۴ 4a 06F4 1780 EXTENDED ARABIC-INDIC DIGIT FOUR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
798 ۵ 5a 06F5 1781 EXTENDED ARABIC-INDIC DIGIT FIVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
799 ۶ 6a 06F6 1782 EXTENDED ARABIC-INDIC DIGIT SIX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
800 ۷ 7a 06F7 1783 EXTENDED ARABIC-INDIC DIGIT SEVEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
801 ۸ 8a 06F8 1784 EXTENDED ARABIC-INDIC DIGIT EIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
802 ۹ 9a 06F9 1785 EXTENDED ARABIC-INDIC DIGIT NINE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
803 Ḃ B. 1E02 7682 LATIN CAPITAL LETTER B WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
804 ḃ b. 1E03 7683 LATIN SMALL LETTER B WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
805 Ḇ B_ 1E06 7686 LATIN CAPITAL LETTER B WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
806 ḇ b_ 1E07 7687 LATIN SMALL LETTER B WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
807 Ḋ D. 1E0A 7690 LATIN CAPITAL LETTER D WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
808 ḋ d. 1E0B 7691 LATIN SMALL LETTER D WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
809 Ḏ D_ 1E0E 7694 LATIN CAPITAL LETTER D WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
810 ḏ d_ 1E0F 7695 LATIN SMALL LETTER D WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
811 Ḑ D, 1E10 7696 LATIN CAPITAL LETTER D WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
812 ḑ d, 1E11 7697 LATIN SMALL LETTER D WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
813 Ḟ F. 1E1E 7710 LATIN CAPITAL LETTER F WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
814 ḟ f. 1E1F 7711 LATIN SMALL LETTER F WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
815 Ḡ G- 1E20 7712 LATIN CAPITAL LETTER G WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
816 ḡ g- 1E21 7713 LATIN SMALL LETTER G WITH MACRON |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
817 Ḣ H. 1E22 7714 LATIN CAPITAL LETTER H WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
818 ḣ h. 1E23 7715 LATIN SMALL LETTER H WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
819 Ḧ H: 1E26 7718 LATIN CAPITAL LETTER H WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
820 ḧ h: 1E27 7719 LATIN SMALL LETTER H WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
821 Ḩ H, 1E28 7720 LATIN CAPITAL LETTER H WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
822 ḩ h, 1E29 7721 LATIN SMALL LETTER H WITH CEDILLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
823 Ḱ K' 1E30 7728 LATIN CAPITAL LETTER K WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
824 ḱ k' 1E31 7729 LATIN SMALL LETTER K WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
825 Ḵ K_ 1E34 7732 LATIN CAPITAL LETTER K WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
826 ḵ k_ 1E35 7733 LATIN SMALL LETTER K WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
827 Ḻ L_ 1E3A 7738 LATIN CAPITAL LETTER L WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
828 ḻ l_ 1E3B 7739 LATIN SMALL LETTER L WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
829 Ḿ M' 1E3E 7742 LATIN CAPITAL LETTER M WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
830 ḿ m' 1E3F 7743 LATIN SMALL LETTER M WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
831 Ṁ M. 1E40 7744 LATIN CAPITAL LETTER M WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
832 ṁ m. 1E41 7745 LATIN SMALL LETTER M WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
833 Ṅ N. 1E44 7748 LATIN CAPITAL LETTER N WITH DOT ABOVE ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
834 ṅ n. 1E45 7749 LATIN SMALL LETTER N WITH DOT ABOVE ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
835 Ṉ N_ 1E48 7752 LATIN CAPITAL LETTER N WITH LINE BELOW ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
836 ṉ n_ 1E49 7753 LATIN SMALL LETTER N WITH LINE BELOW ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
837 Ṕ P' 1E54 7764 LATIN CAPITAL LETTER P WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
838 ṕ p' 1E55 7765 LATIN SMALL LETTER P WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
839 Ṗ P. 1E56 7766 LATIN CAPITAL LETTER P WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
840 ṗ p. 1E57 7767 LATIN SMALL LETTER P WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
841 Ṙ R. 1E58 7768 LATIN CAPITAL LETTER R WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
842 ṙ r. 1E59 7769 LATIN SMALL LETTER R WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
843 Ṟ R_ 1E5E 7774 LATIN CAPITAL LETTER R WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
844 ṟ r_ 1E5F 7775 LATIN SMALL LETTER R WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
845 Ṡ S. 1E60 7776 LATIN CAPITAL LETTER S WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
846 ṡ s. 1E61 7777 LATIN SMALL LETTER S WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
847 Ṫ T. 1E6A 7786 LATIN CAPITAL LETTER T WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
848 ṫ t. 1E6B 7787 LATIN SMALL LETTER T WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
849 Ṯ T_ 1E6E 7790 LATIN CAPITAL LETTER T WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
850 ṯ t_ 1E6F 7791 LATIN SMALL LETTER T WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
851 Ṽ V? 1E7C 7804 LATIN CAPITAL LETTER V WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
852 ṽ v? 1E7D 7805 LATIN SMALL LETTER V WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
853 Ẁ W! 1E80 7808 LATIN CAPITAL LETTER W WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
854 ẁ w! 1E81 7809 LATIN SMALL LETTER W WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
855 Ẃ W' 1E82 7810 LATIN CAPITAL LETTER W WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
856 ẃ w' 1E83 7811 LATIN SMALL LETTER W WITH ACUTE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
857 Ẅ W: 1E84 7812 LATIN CAPITAL LETTER W WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
858 ẅ w: 1E85 7813 LATIN SMALL LETTER W WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
859 Ẇ W. 1E86 7814 LATIN CAPITAL LETTER W WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
860 ẇ w. 1E87 7815 LATIN SMALL LETTER W WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
861 Ẋ X. 1E8A 7818 LATIN CAPITAL LETTER X WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
862 ẋ x. 1E8B 7819 LATIN SMALL LETTER X WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
863 Ẍ X: 1E8C 7820 LATIN CAPITAL LETTER X WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
864 ẍ x: 1E8D 7821 LATIN SMALL LETTER X WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
865 Ẏ Y. 1E8E 7822 LATIN CAPITAL LETTER Y WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
866 ẏ y. 1E8F 7823 LATIN SMALL LETTER Y WITH DOT ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
867 Ẑ Z> 1E90 7824 LATIN CAPITAL LETTER Z WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
868 ẑ z> 1E91 7825 LATIN SMALL LETTER Z WITH CIRCUMFLEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
869 Ẕ Z_ 1E94 7828 LATIN CAPITAL LETTER Z WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
870 ẕ z_ 1E95 7829 LATIN SMALL LETTER Z WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
871 ẖ h_ 1E96 7830 LATIN SMALL LETTER H WITH LINE BELOW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
872 ẗ t: 1E97 7831 LATIN SMALL LETTER T WITH DIAERESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
873 ẘ w0 1E98 7832 LATIN SMALL LETTER W WITH RING ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
874 ẙ y0 1E99 7833 LATIN SMALL LETTER Y WITH RING ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
875 Ả A2 1EA2 7842 LATIN CAPITAL LETTER A WITH HOOK ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
876 ả a2 1EA3 7843 LATIN SMALL LETTER A WITH HOOK ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
877 Ẻ E2 1EBA 7866 LATIN CAPITAL LETTER E WITH HOOK ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
878 ẻ e2 1EBB 7867 LATIN SMALL LETTER E WITH HOOK ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
879 Ẽ E? 1EBC 7868 LATIN CAPITAL LETTER E WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
880 ẽ e? 1EBD 7869 LATIN SMALL LETTER E WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
881 Ỉ I2 1EC8 7880 LATIN CAPITAL LETTER I WITH HOOK ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
882 ỉ i2 1EC9 7881 LATIN SMALL LETTER I WITH HOOK ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
883 Ỏ O2 1ECE 7886 LATIN CAPITAL LETTER O WITH HOOK ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
884 ỏ o2 1ECF 7887 LATIN SMALL LETTER O WITH HOOK ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
885 Ủ U2 1EE6 7910 LATIN CAPITAL LETTER U WITH HOOK ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
886 ủ u2 1EE7 7911 LATIN SMALL LETTER U WITH HOOK ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
887 Ỳ Y! 1EF2 7922 LATIN CAPITAL LETTER Y WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
888 ỳ y! 1EF3 7923 LATIN SMALL LETTER Y WITH GRAVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
889 Ỷ Y2 1EF6 7926 LATIN CAPITAL LETTER Y WITH HOOK ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
890 ỷ y2 1EF7 7927 LATIN SMALL LETTER Y WITH HOOK ABOVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
891 Ỹ Y? 1EF8 7928 LATIN CAPITAL LETTER Y WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
892 ỹ y? 1EF9 7929 LATIN SMALL LETTER Y WITH TILDE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
893 ἀ ;' 1F00 7936 GREEK SMALL LETTER ALPHA WITH PSILI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
894 ἁ ,' 1F01 7937 GREEK SMALL LETTER ALPHA WITH DASIA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
895 ἂ ;! 1F02 7938 GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
896 ἃ ,! 1F03 7939 GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
897 ἄ ?; 1F04 7940 GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
898 ἅ ?, 1F05 7941 GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
899 ἆ !: 1F06 7942 GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
900 ἇ ?: 1F07 7943 GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
901 1N 2002 8194 EN SPACE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
902 1M 2003 8195 EM SPACE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
903 3M 2004 8196 THREE-PER-EM SPACE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
904 4M 2005 8197 FOUR-PER-EM SPACE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
905 6M 2006 8198 SIX-PER-EM SPACE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
906 1T 2009 8201 THIN SPACE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
907 1H 200A 8202 HAIR SPACE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
908 ‐ -1 2010 8208 HYPHEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
909 – -N 2013 8211 EN DASH ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
910 — -M 2014 8212 EM DASH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
911 ― -3 2015 8213 HORIZONTAL BAR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
912 ‖ !2 2016 8214 DOUBLE VERTICAL LINE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
913 ‗ =2 2017 8215 DOUBLE LOW LINE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
914 ‘ '6 2018 8216 LEFT SINGLE QUOTATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
915 ’ '9 2019 8217 RIGHT SINGLE QUOTATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
916 ‚ .9 201A 8218 SINGLE LOW-9 QUOTATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
917 ‛ 9' 201B 8219 SINGLE HIGH-REVERSED-9 QUOTATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
918 “ "6 201C 8220 LEFT DOUBLE QUOTATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
919 ” "9 201D 8221 RIGHT DOUBLE QUOTATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
920 „ :9 201E 8222 DOUBLE LOW-9 QUOTATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
921 ‟ 9" 201F 8223 DOUBLE HIGH-REVERSED-9 QUOTATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
922 † /- 2020 8224 DAGGER |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
923 ‡ /= 2021 8225 DOUBLE DAGGER |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
924 ‥ .. 2025 8229 TWO DOT LEADER |
10334
086117f5fb71
commit https://github.com/vim/vim/commit/81615517249bb78cba9c37c9834b787c1b265521
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
925 … ,. 2026 8230 HORIZONTAL ELLIPSIS |
2698
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
926 ‰ %0 2030 8240 PER MILLE SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
927 ′ 1' 2032 8242 PRIME |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
928 ″ 2' 2033 8243 DOUBLE PRIME |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
929 ‴ 3' 2034 8244 TRIPLE PRIME |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
930 ‵ 1" 2035 8245 REVERSED PRIME |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
931 ‶ 2" 2036 8246 REVERSED DOUBLE PRIME |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
932 ‷ 3" 2037 8247 REVERSED TRIPLE PRIME |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
933 ‸ Ca 2038 8248 CARET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
934 ‹ <1 2039 8249 SINGLE LEFT-POINTING ANGLE QUOTATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
935 › >1 203A 8250 SINGLE RIGHT-POINTING ANGLE QUOTATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
936 ※ :X 203B 8251 REFERENCE MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
937 ‾ '- 203E 8254 OVERLINE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
938 ⁄ /f 2044 8260 FRACTION SLASH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
939 ⁰ 0S 2070 8304 SUPERSCRIPT ZERO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
940 ⁴ 4S 2074 8308 SUPERSCRIPT FOUR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
941 ⁵ 5S 2075 8309 SUPERSCRIPT FIVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
942 ⁶ 6S 2076 8310 SUPERSCRIPT SIX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
943 ⁷ 7S 2077 8311 SUPERSCRIPT SEVEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
944 ⁸ 8S 2078 8312 SUPERSCRIPT EIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
945 ⁹ 9S 2079 8313 SUPERSCRIPT NINE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
946 ⁺ +S 207A 8314 SUPERSCRIPT PLUS SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
947 ⁻ -S 207B 8315 SUPERSCRIPT MINUS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
948 ⁼ =S 207C 8316 SUPERSCRIPT EQUALS SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
949 ⁽ (S 207D 8317 SUPERSCRIPT LEFT PARENTHESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
950 ⁾ )S 207E 8318 SUPERSCRIPT RIGHT PARENTHESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
951 ⁿ nS 207F 8319 SUPERSCRIPT LATIN SMALL LETTER N ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
952 ₀ 0s 2080 8320 SUBSCRIPT ZERO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
953 ₁ 1s 2081 8321 SUBSCRIPT ONE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
954 ₂ 2s 2082 8322 SUBSCRIPT TWO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
955 ₃ 3s 2083 8323 SUBSCRIPT THREE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
956 ₄ 4s 2084 8324 SUBSCRIPT FOUR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
957 ₅ 5s 2085 8325 SUBSCRIPT FIVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
958 ₆ 6s 2086 8326 SUBSCRIPT SIX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
959 ₇ 7s 2087 8327 SUBSCRIPT SEVEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
960 ₈ 8s 2088 8328 SUBSCRIPT EIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
961 ₉ 9s 2089 8329 SUBSCRIPT NINE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
962 ₊ +s 208A 8330 SUBSCRIPT PLUS SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
963 ₋ -s 208B 8331 SUBSCRIPT MINUS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
964 ₌ =s 208C 8332 SUBSCRIPT EQUALS SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
965 ₍ (s 208D 8333 SUBSCRIPT LEFT PARENTHESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
966 ₎ )s 208E 8334 SUBSCRIPT RIGHT PARENTHESIS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
967 ₤ Li 20A4 8356 LIRA SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
968 ₧ Pt 20A7 8359 PESETA SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
969 ₩ W= 20A9 8361 WON SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
970 € Eu 20AC 8364 EURO SIGN |
6009 | 971 ₽ =R 20BD 8381 ROUBLE SIGN |
972 ₽ =P 20BD 8381 ROUBLE SIGN | |
2698
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
973 ℃ oC 2103 8451 DEGREE CELSIUS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
974 ℅ co 2105 8453 CARE OF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
975 ℉ oF 2109 8457 DEGREE FAHRENHEIT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
976 № N0 2116 8470 NUMERO SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
977 ℗ PO 2117 8471 SOUND RECORDING COPYRIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
978 ℞ Rx 211E 8478 PRESCRIPTION TAKE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
979 ℠ SM 2120 8480 SERVICE MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
980 ™ TM 2122 8482 TRADE MARK SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
981 Ω Om 2126 8486 OHM SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
982 Å AO 212B 8491 ANGSTROM SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
983 ⅓ 13 2153 8531 VULGAR FRACTION ONE THIRD |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
984 ⅔ 23 2154 8532 VULGAR FRACTION TWO THIRDS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
985 ⅕ 15 2155 8533 VULGAR FRACTION ONE FIFTH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
986 ⅖ 25 2156 8534 VULGAR FRACTION TWO FIFTHS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
987 ⅗ 35 2157 8535 VULGAR FRACTION THREE FIFTHS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
988 ⅘ 45 2158 8536 VULGAR FRACTION FOUR FIFTHS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
989 ⅙ 16 2159 8537 VULGAR FRACTION ONE SIXTH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
990 ⅚ 56 215A 8538 VULGAR FRACTION FIVE SIXTHS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
991 ⅛ 18 215B 8539 VULGAR FRACTION ONE EIGHTH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
992 ⅜ 38 215C 8540 VULGAR FRACTION THREE EIGHTHS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
993 ⅝ 58 215D 8541 VULGAR FRACTION FIVE EIGHTHS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
994 ⅞ 78 215E 8542 VULGAR FRACTION SEVEN EIGHTHS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
995 Ⅰ 1R 2160 8544 ROMAN NUMERAL ONE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
996 Ⅱ 2R 2161 8545 ROMAN NUMERAL TWO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
997 Ⅲ 3R 2162 8546 ROMAN NUMERAL THREE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
998 Ⅳ 4R 2163 8547 ROMAN NUMERAL FOUR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
999 Ⅴ 5R 2164 8548 ROMAN NUMERAL FIVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1000 Ⅵ 6R 2165 8549 ROMAN NUMERAL SIX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1001 Ⅶ 7R 2166 8550 ROMAN NUMERAL SEVEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1002 Ⅷ 8R 2167 8551 ROMAN NUMERAL EIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1003 Ⅸ 9R 2168 8552 ROMAN NUMERAL NINE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1004 Ⅹ aR 2169 8553 ROMAN NUMERAL TEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1005 Ⅺ bR 216A 8554 ROMAN NUMERAL ELEVEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1006 Ⅻ cR 216B 8555 ROMAN NUMERAL TWELVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1007 ⅰ 1r 2170 8560 SMALL ROMAN NUMERAL ONE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1008 ⅱ 2r 2171 8561 SMALL ROMAN NUMERAL TWO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1009 ⅲ 3r 2172 8562 SMALL ROMAN NUMERAL THREE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1010 ⅳ 4r 2173 8563 SMALL ROMAN NUMERAL FOUR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1011 ⅴ 5r 2174 8564 SMALL ROMAN NUMERAL FIVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1012 ⅵ 6r 2175 8565 SMALL ROMAN NUMERAL SIX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1013 ⅶ 7r 2176 8566 SMALL ROMAN NUMERAL SEVEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1014 ⅷ 8r 2177 8567 SMALL ROMAN NUMERAL EIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1015 ⅸ 9r 2178 8568 SMALL ROMAN NUMERAL NINE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1016 ⅹ ar 2179 8569 SMALL ROMAN NUMERAL TEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1017 ⅺ br 217A 8570 SMALL ROMAN NUMERAL ELEVEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1018 ⅻ cr 217B 8571 SMALL ROMAN NUMERAL TWELVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1019 ← <- 2190 8592 LEFTWARDS ARROW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1020 ↑ -! 2191 8593 UPWARDS ARROW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1021 → -> 2192 8594 RIGHTWARDS ARROW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1022 ↓ -v 2193 8595 DOWNWARDS ARROW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1023 ↔ <> 2194 8596 LEFT RIGHT ARROW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1024 ↕ UD 2195 8597 UP DOWN ARROW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1025 ⇐ <= 21D0 8656 LEFTWARDS DOUBLE ARROW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1026 ⇒ => 21D2 8658 RIGHTWARDS DOUBLE ARROW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1027 ⇔ == 21D4 8660 LEFT RIGHT DOUBLE ARROW |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1028 ∀ FA 2200 8704 FOR ALL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1029 ∂ dP 2202 8706 PARTIAL DIFFERENTIAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1030 ∃ TE 2203 8707 THERE EXISTS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1031 ∅ /0 2205 8709 EMPTY SET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1032 ∆ DE 2206 8710 INCREMENT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1033 ∇ NB 2207 8711 NABLA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1034 ∈ (- 2208 8712 ELEMENT OF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1035 ∋ -) 220B 8715 CONTAINS AS MEMBER |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1036 ∏ *P 220F 8719 N-ARY PRODUCT ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1037 ∑ +Z 2211 8721 N-ARY SUMMATION ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1038 − -2 2212 8722 MINUS SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1039 ∓ -+ 2213 8723 MINUS-OR-PLUS SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1040 ∗ *- 2217 8727 ASTERISK OPERATOR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1041 ∘ Ob 2218 8728 RING OPERATOR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1042 ∙ Sb 2219 8729 BULLET OPERATOR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1043 √ RT 221A 8730 SQUARE ROOT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1044 ∝ 0( 221D 8733 PROPORTIONAL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1045 ∞ 00 221E 8734 INFINITY |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1046 ∟ -L 221F 8735 RIGHT ANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1047 ∠ -V 2220 8736 ANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1048 ∥ PP 2225 8741 PARALLEL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1049 ∧ AN 2227 8743 LOGICAL AND |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1050 ∨ OR 2228 8744 LOGICAL OR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1051 ∩ (U 2229 8745 INTERSECTION |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1052 ∪ )U 222A 8746 UNION |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1053 ∫ In 222B 8747 INTEGRAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1054 ∬ DI 222C 8748 DOUBLE INTEGRAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1055 ∮ Io 222E 8750 CONTOUR INTEGRAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1056 ∴ .: 2234 8756 THEREFORE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1057 ∵ :. 2235 8757 BECAUSE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1058 ∶ :R 2236 8758 RATIO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1059 ∷ :: 2237 8759 PROPORTION |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1060 ∼ ?1 223C 8764 TILDE OPERATOR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1061 ∾ CG 223E 8766 INVERTED LAZY S |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1062 ≃ ?- 2243 8771 ASYMPTOTICALLY EQUAL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1063 ≅ ?= 2245 8773 APPROXIMATELY EQUAL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1064 ≈ ?2 2248 8776 ALMOST EQUAL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1065 ≌ =? 224C 8780 ALL EQUAL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1066 ≓ HI 2253 8787 IMAGE OF OR APPROXIMATELY EQUAL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1067 ≠ != 2260 8800 NOT EQUAL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1068 ≡ =3 2261 8801 IDENTICAL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1069 ≤ =< 2264 8804 LESS-THAN OR EQUAL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1070 ≥ >= 2265 8805 GREATER-THAN OR EQUAL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1071 ≪ <* 226A 8810 MUCH LESS-THAN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1072 ≫ *> 226B 8811 MUCH GREATER-THAN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1073 ≮ !< 226E 8814 NOT LESS-THAN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1074 ≯ !> 226F 8815 NOT GREATER-THAN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1075 ⊂ (C 2282 8834 SUBSET OF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1076 ⊃ )C 2283 8835 SUPERSET OF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1077 ⊆ (_ 2286 8838 SUBSET OF OR EQUAL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1078 ⊇ )_ 2287 8839 SUPERSET OF OR EQUAL TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1079 ⊙ 0. 2299 8857 CIRCLED DOT OPERATOR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1080 ⊚ 02 229A 8858 CIRCLED RING OPERATOR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1081 ⊥ -T 22A5 8869 UP TACK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1082 ⋅ .P 22C5 8901 DOT OPERATOR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1083 ⋮ :3 22EE 8942 VERTICAL ELLIPSIS |
5862 | 1084 ⋯ .3 22EF 8943 MIDLINE HORIZONTAL ELLIPSIS |
2698
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1085 ⌂ Eh 2302 8962 HOUSE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1086 ⌈ <7 2308 8968 LEFT CEILING |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1087 ⌉ >7 2309 8969 RIGHT CEILING |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1088 ⌊ 7< 230A 8970 LEFT FLOOR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1089 ⌋ 7> 230B 8971 RIGHT FLOOR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1090 ⌐ NI 2310 8976 REVERSED NOT SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1091 ⌒ (A 2312 8978 ARC |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1092 ⌕ TR 2315 8981 TELEPHONE RECORDER |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1093 ⌠ Iu 2320 8992 TOP HALF INTEGRAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1094 ⌡ Il 2321 8993 BOTTOM HALF INTEGRAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1095 〈 </ 2329 9001 LEFT-POINTING ANGLE BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1096 〉 /> 232A 9002 RIGHT-POINTING ANGLE BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1097 ␣ Vs 2423 9251 OPEN BOX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1098 ⑀ 1h 2440 9280 OCR HOOK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1099 ⑁ 3h 2441 9281 OCR CHAIR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1100 ⑂ 2h 2442 9282 OCR FORK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1101 ⑃ 4h 2443 9283 OCR INVERTED FORK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1102 ⑆ 1j 2446 9286 OCR BRANCH BANK IDENTIFICATION |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1103 ⑇ 2j 2447 9287 OCR AMOUNT OF CHECK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1104 ⑈ 3j 2448 9288 OCR DASH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1105 ⑉ 4j 2449 9289 OCR CUSTOMER ACCOUNT NUMBER |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1106 ⒈ 1. 2488 9352 DIGIT ONE FULL STOP |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1107 ⒉ 2. 2489 9353 DIGIT TWO FULL STOP |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1108 ⒊ 3. 248A 9354 DIGIT THREE FULL STOP |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1109 ⒋ 4. 248B 9355 DIGIT FOUR FULL STOP |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1110 ⒌ 5. 248C 9356 DIGIT FIVE FULL STOP |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1111 ⒍ 6. 248D 9357 DIGIT SIX FULL STOP |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1112 ⒎ 7. 248E 9358 DIGIT SEVEN FULL STOP |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1113 ⒏ 8. 248F 9359 DIGIT EIGHT FULL STOP |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1114 ⒐ 9. 2490 9360 DIGIT NINE FULL STOP |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1115 ─ hh 2500 9472 BOX DRAWINGS LIGHT HORIZONTAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1116 ━ HH 2501 9473 BOX DRAWINGS HEAVY HORIZONTAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1117 │ vv 2502 9474 BOX DRAWINGS LIGHT VERTICAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1118 ┃ VV 2503 9475 BOX DRAWINGS HEAVY VERTICAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1119 ┄ 3- 2504 9476 BOX DRAWINGS LIGHT TRIPLE DASH HORIZONTAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1120 ┅ 3_ 2505 9477 BOX DRAWINGS HEAVY TRIPLE DASH HORIZONTAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1121 ┆ 3! 2506 9478 BOX DRAWINGS LIGHT TRIPLE DASH VERTICAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1122 ┇ 3/ 2507 9479 BOX DRAWINGS HEAVY TRIPLE DASH VERTICAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1123 ┈ 4- 2508 9480 BOX DRAWINGS LIGHT QUADRUPLE DASH HORIZONTAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1124 ┉ 4_ 2509 9481 BOX DRAWINGS HEAVY QUADRUPLE DASH HORIZONTAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1125 ┊ 4! 250A 9482 BOX DRAWINGS LIGHT QUADRUPLE DASH VERTICAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1126 ┋ 4/ 250B 9483 BOX DRAWINGS HEAVY QUADRUPLE DASH VERTICAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1127 ┌ dr 250C 9484 BOX DRAWINGS LIGHT DOWN AND RIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1128 ┍ dR 250D 9485 BOX DRAWINGS DOWN LIGHT AND RIGHT HEAVY |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1129 ┎ Dr 250E 9486 BOX DRAWINGS DOWN HEAVY AND RIGHT LIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1130 ┏ DR 250F 9487 BOX DRAWINGS HEAVY DOWN AND RIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1131 ┐ dl 2510 9488 BOX DRAWINGS LIGHT DOWN AND LEFT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1132 ┑ dL 2511 9489 BOX DRAWINGS DOWN LIGHT AND LEFT HEAVY |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1133 ┒ Dl 2512 9490 BOX DRAWINGS DOWN HEAVY AND LEFT LIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1134 ┓ LD 2513 9491 BOX DRAWINGS HEAVY DOWN AND LEFT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1135 └ ur 2514 9492 BOX DRAWINGS LIGHT UP AND RIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1136 ┕ uR 2515 9493 BOX DRAWINGS UP LIGHT AND RIGHT HEAVY |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1137 ┖ Ur 2516 9494 BOX DRAWINGS UP HEAVY AND RIGHT LIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1138 ┗ UR 2517 9495 BOX DRAWINGS HEAVY UP AND RIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1139 ┘ ul 2518 9496 BOX DRAWINGS LIGHT UP AND LEFT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1140 ┙ uL 2519 9497 BOX DRAWINGS UP LIGHT AND LEFT HEAVY |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1141 ┚ Ul 251A 9498 BOX DRAWINGS UP HEAVY AND LEFT LIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1142 ┛ UL 251B 9499 BOX DRAWINGS HEAVY UP AND LEFT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1143 ├ vr 251C 9500 BOX DRAWINGS LIGHT VERTICAL AND RIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1144 ┝ vR 251D 9501 BOX DRAWINGS VERTICAL LIGHT AND RIGHT HEAVY |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1145 ┠ Vr 2520 9504 BOX DRAWINGS VERTICAL HEAVY AND RIGHT LIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1146 ┣ VR 2523 9507 BOX DRAWINGS HEAVY VERTICAL AND RIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1147 ┤ vl 2524 9508 BOX DRAWINGS LIGHT VERTICAL AND LEFT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1148 ┥ vL 2525 9509 BOX DRAWINGS VERTICAL LIGHT AND LEFT HEAVY |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1149 ┨ Vl 2528 9512 BOX DRAWINGS VERTICAL HEAVY AND LEFT LIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1150 ┫ VL 252B 9515 BOX DRAWINGS HEAVY VERTICAL AND LEFT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1151 ┬ dh 252C 9516 BOX DRAWINGS LIGHT DOWN AND HORIZONTAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1152 ┯ dH 252F 9519 BOX DRAWINGS DOWN LIGHT AND HORIZONTAL HEAVY |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1153 ┰ Dh 2530 9520 BOX DRAWINGS DOWN HEAVY AND HORIZONTAL LIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1154 ┳ DH 2533 9523 BOX DRAWINGS HEAVY DOWN AND HORIZONTAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1155 ┴ uh 2534 9524 BOX DRAWINGS LIGHT UP AND HORIZONTAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1156 ┷ uH 2537 9527 BOX DRAWINGS UP LIGHT AND HORIZONTAL HEAVY |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1157 ┸ Uh 2538 9528 BOX DRAWINGS UP HEAVY AND HORIZONTAL LIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1158 ┻ UH 253B 9531 BOX DRAWINGS HEAVY UP AND HORIZONTAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1159 ┼ vh 253C 9532 BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1160 ┿ vH 253F 9535 BOX DRAWINGS VERTICAL LIGHT AND HORIZONTAL HEAVY |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1161 ╂ Vh 2542 9538 BOX DRAWINGS VERTICAL HEAVY AND HORIZONTAL LIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1162 ╋ VH 254B 9547 BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1163 ╱ FD 2571 9585 BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1164 ╲ BD 2572 9586 BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1165 ▀ TB 2580 9600 UPPER HALF BLOCK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1166 ▄ LB 2584 9604 LOWER HALF BLOCK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1167 █ FB 2588 9608 FULL BLOCK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1168 ▌ lB 258C 9612 LEFT HALF BLOCK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1169 ▐ RB 2590 9616 RIGHT HALF BLOCK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1170 ░ .S 2591 9617 LIGHT SHADE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1171 ▒ :S 2592 9618 MEDIUM SHADE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1172 ▓ ?S 2593 9619 DARK SHADE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1173 ■ fS 25A0 9632 BLACK SQUARE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1174 □ OS 25A1 9633 WHITE SQUARE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1175 ▢ RO 25A2 9634 WHITE SQUARE WITH ROUNDED CORNERS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1176 ▣ Rr 25A3 9635 WHITE SQUARE CONTAINING BLACK SMALL SQUARE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1177 ▤ RF 25A4 9636 SQUARE WITH HORIZONTAL FILL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1178 ▥ RY 25A5 9637 SQUARE WITH VERTICAL FILL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1179 ▦ RH 25A6 9638 SQUARE WITH ORTHOGONAL CROSSHATCH FILL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1180 ▧ RZ 25A7 9639 SQUARE WITH UPPER LEFT TO LOWER RIGHT FILL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1181 ▨ RK 25A8 9640 SQUARE WITH UPPER RIGHT TO LOWER LEFT FILL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1182 ▩ RX 25A9 9641 SQUARE WITH DIAGONAL CROSSHATCH FILL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1183 ▪ sB 25AA 9642 BLACK SMALL SQUARE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1184 ▬ SR 25AC 9644 BLACK RECTANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1185 ▭ Or 25AD 9645 WHITE RECTANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1186 ▲ UT 25B2 9650 BLACK UP-POINTING TRIANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1187 △ uT 25B3 9651 WHITE UP-POINTING TRIANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1188 ▶ PR 25B6 9654 BLACK RIGHT-POINTING TRIANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1189 ▷ Tr 25B7 9655 WHITE RIGHT-POINTING TRIANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1190 ▼ Dt 25BC 9660 BLACK DOWN-POINTING TRIANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1191 ▽ dT 25BD 9661 WHITE DOWN-POINTING TRIANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1192 ◀ PL 25C0 9664 BLACK LEFT-POINTING TRIANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1193 ◁ Tl 25C1 9665 WHITE LEFT-POINTING TRIANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1194 ◆ Db 25C6 9670 BLACK DIAMOND |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1195 ◇ Dw 25C7 9671 WHITE DIAMOND |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1196 ◊ LZ 25CA 9674 LOZENGE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1197 ○ 0m 25CB 9675 WHITE CIRCLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1198 ◎ 0o 25CE 9678 BULLSEYE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1199 ● 0M 25CF 9679 BLACK CIRCLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1200 ◐ 0L 25D0 9680 CIRCLE WITH LEFT HALF BLACK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1201 ◑ 0R 25D1 9681 CIRCLE WITH RIGHT HALF BLACK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1202 ◘ Sn 25D8 9688 INVERSE BULLET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1203 ◙ Ic 25D9 9689 INVERSE WHITE CIRCLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1204 ◢ Fd 25E2 9698 BLACK LOWER RIGHT TRIANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1205 ◣ Bd 25E3 9699 BLACK LOWER LEFT TRIANGLE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1206 ★ *2 2605 9733 BLACK STAR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1207 ☆ *1 2606 9734 WHITE STAR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1208 ☜ <H 261C 9756 WHITE LEFT POINTING INDEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1209 ☞ >H 261E 9758 WHITE RIGHT POINTING INDEX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1210 ☺ 0u 263A 9786 WHITE SMILING FACE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1211 ☻ 0U 263B 9787 BLACK SMILING FACE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1212 ☼ SU 263C 9788 WHITE SUN WITH RAYS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1213 ♀ Fm 2640 9792 FEMALE SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1214 ♂ Ml 2642 9794 MALE SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1215 ♠ cS 2660 9824 BLACK SPADE SUIT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1216 ♡ cH 2661 9825 WHITE HEART SUIT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1217 ♢ cD 2662 9826 WHITE DIAMOND SUIT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1218 ♣ cC 2663 9827 BLACK CLUB SUIT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1219 ♩ Md 2669 9833 QUARTER NOTE ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1220 ♪ M8 266A 9834 EIGHTH NOTE ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1221 ♫ M2 266B 9835 BEAMED EIGHTH NOTES |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1222 ♭ Mb 266D 9837 MUSIC FLAT SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1223 ♮ Mx 266E 9838 MUSIC NATURAL SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1224 ♯ MX 266F 9839 MUSIC SHARP SIGN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1225 ✓ OK 2713 10003 CHECK MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1226 ✗ XX 2717 10007 BALLOT X |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1227 ✠ -X 2720 10016 MALTESE CROSS |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1228 IS 3000 12288 IDEOGRAPHIC SPACE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1229 、 ,_ 3001 12289 IDEOGRAPHIC COMMA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1230 。 ._ 3002 12290 IDEOGRAPHIC FULL STOP |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1231 〃 +" 3003 12291 DITTO MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1232 〄 +_ 3004 12292 JAPANESE INDUSTRIAL STANDARD SYMBOL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1233 々 *_ 3005 12293 IDEOGRAPHIC ITERATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1234 〆 ;_ 3006 12294 IDEOGRAPHIC CLOSING MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1235 〇 0_ 3007 12295 IDEOGRAPHIC NUMBER ZERO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1236 《 <+ 300A 12298 LEFT DOUBLE ANGLE BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1237 》 >+ 300B 12299 RIGHT DOUBLE ANGLE BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1238 「 <' 300C 12300 LEFT CORNER BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1239 」 >' 300D 12301 RIGHT CORNER BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1240 『 <" 300E 12302 LEFT WHITE CORNER BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1241 』 >" 300F 12303 RIGHT WHITE CORNER BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1242 【 (" 3010 12304 LEFT BLACK LENTICULAR BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1243 】 )" 3011 12305 RIGHT BLACK LENTICULAR BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1244 〒 =T 3012 12306 POSTAL MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1245 〓 =_ 3013 12307 GETA MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1246 〔 (' 3014 12308 LEFT TORTOISE SHELL BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1247 〕 )' 3015 12309 RIGHT TORTOISE SHELL BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1248 〖 (I 3016 12310 LEFT WHITE LENTICULAR BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1249 〗 )I 3017 12311 RIGHT WHITE LENTICULAR BRACKET |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1250 〜 -? 301C 12316 WAVE DASH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1251 ぁ A5 3041 12353 HIRAGANA LETTER SMALL A |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1252 あ a5 3042 12354 HIRAGANA LETTER A |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1253 ぃ I5 3043 12355 HIRAGANA LETTER SMALL I |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1254 い i5 3044 12356 HIRAGANA LETTER I |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1255 ぅ U5 3045 12357 HIRAGANA LETTER SMALL U |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1256 う u5 3046 12358 HIRAGANA LETTER U |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1257 ぇ E5 3047 12359 HIRAGANA LETTER SMALL E |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1258 え e5 3048 12360 HIRAGANA LETTER E |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1259 ぉ O5 3049 12361 HIRAGANA LETTER SMALL O |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1260 お o5 304A 12362 HIRAGANA LETTER O |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1261 か ka 304B 12363 HIRAGANA LETTER KA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1262 が ga 304C 12364 HIRAGANA LETTER GA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1263 き ki 304D 12365 HIRAGANA LETTER KI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1264 ぎ gi 304E 12366 HIRAGANA LETTER GI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1265 く ku 304F 12367 HIRAGANA LETTER KU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1266 ぐ gu 3050 12368 HIRAGANA LETTER GU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1267 け ke 3051 12369 HIRAGANA LETTER KE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1268 げ ge 3052 12370 HIRAGANA LETTER GE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1269 こ ko 3053 12371 HIRAGANA LETTER KO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1270 ご go 3054 12372 HIRAGANA LETTER GO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1271 さ sa 3055 12373 HIRAGANA LETTER SA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1272 ざ za 3056 12374 HIRAGANA LETTER ZA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1273 し si 3057 12375 HIRAGANA LETTER SI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1274 じ zi 3058 12376 HIRAGANA LETTER ZI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1275 す su 3059 12377 HIRAGANA LETTER SU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1276 ず zu 305A 12378 HIRAGANA LETTER ZU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1277 せ se 305B 12379 HIRAGANA LETTER SE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1278 ぜ ze 305C 12380 HIRAGANA LETTER ZE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1279 そ so 305D 12381 HIRAGANA LETTER SO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1280 ぞ zo 305E 12382 HIRAGANA LETTER ZO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1281 た ta 305F 12383 HIRAGANA LETTER TA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1282 だ da 3060 12384 HIRAGANA LETTER DA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1283 ち ti 3061 12385 HIRAGANA LETTER TI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1284 ぢ di 3062 12386 HIRAGANA LETTER DI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1285 っ tU 3063 12387 HIRAGANA LETTER SMALL TU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1286 つ tu 3064 12388 HIRAGANA LETTER TU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1287 づ du 3065 12389 HIRAGANA LETTER DU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1288 て te 3066 12390 HIRAGANA LETTER TE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1289 で de 3067 12391 HIRAGANA LETTER DE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1290 と to 3068 12392 HIRAGANA LETTER TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1291 ど do 3069 12393 HIRAGANA LETTER DO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1292 な na 306A 12394 HIRAGANA LETTER NA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1293 に ni 306B 12395 HIRAGANA LETTER NI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1294 ぬ nu 306C 12396 HIRAGANA LETTER NU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1295 ね ne 306D 12397 HIRAGANA LETTER NE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1296 の no 306E 12398 HIRAGANA LETTER NO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1297 は ha 306F 12399 HIRAGANA LETTER HA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1298 ば ba 3070 12400 HIRAGANA LETTER BA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1299 ぱ pa 3071 12401 HIRAGANA LETTER PA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1300 ひ hi 3072 12402 HIRAGANA LETTER HI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1301 び bi 3073 12403 HIRAGANA LETTER BI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1302 ぴ pi 3074 12404 HIRAGANA LETTER PI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1303 ふ hu 3075 12405 HIRAGANA LETTER HU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1304 ぶ bu 3076 12406 HIRAGANA LETTER BU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1305 ぷ pu 3077 12407 HIRAGANA LETTER PU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1306 へ he 3078 12408 HIRAGANA LETTER HE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1307 べ be 3079 12409 HIRAGANA LETTER BE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1308 ぺ pe 307A 12410 HIRAGANA LETTER PE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1309 ほ ho 307B 12411 HIRAGANA LETTER HO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1310 ぼ bo 307C 12412 HIRAGANA LETTER BO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1311 ぽ po 307D 12413 HIRAGANA LETTER PO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1312 ま ma 307E 12414 HIRAGANA LETTER MA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1313 み mi 307F 12415 HIRAGANA LETTER MI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1314 む mu 3080 12416 HIRAGANA LETTER MU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1315 め me 3081 12417 HIRAGANA LETTER ME |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1316 も mo 3082 12418 HIRAGANA LETTER MO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1317 ゃ yA 3083 12419 HIRAGANA LETTER SMALL YA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1318 や ya 3084 12420 HIRAGANA LETTER YA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1319 ゅ yU 3085 12421 HIRAGANA LETTER SMALL YU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1320 ゆ yu 3086 12422 HIRAGANA LETTER YU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1321 ょ yO 3087 12423 HIRAGANA LETTER SMALL YO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1322 よ yo 3088 12424 HIRAGANA LETTER YO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1323 ら ra 3089 12425 HIRAGANA LETTER RA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1324 り ri 308A 12426 HIRAGANA LETTER RI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1325 る ru 308B 12427 HIRAGANA LETTER RU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1326 れ re 308C 12428 HIRAGANA LETTER RE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1327 ろ ro 308D 12429 HIRAGANA LETTER RO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1328 ゎ wA 308E 12430 HIRAGANA LETTER SMALL WA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1329 わ wa 308F 12431 HIRAGANA LETTER WA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1330 ゐ wi 3090 12432 HIRAGANA LETTER WI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1331 ゑ we 3091 12433 HIRAGANA LETTER WE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1332 を wo 3092 12434 HIRAGANA LETTER WO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1333 ん n5 3093 12435 HIRAGANA LETTER N ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1334 ゔ vu 3094 12436 HIRAGANA LETTER VU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1335 ゛ "5 309B 12443 KATAKANA-HIRAGANA VOICED SOUND MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1336 ゜ 05 309C 12444 KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1337 ゝ *5 309D 12445 HIRAGANA ITERATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1338 ゞ +5 309E 12446 HIRAGANA VOICED ITERATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1339 ァ a6 30A1 12449 KATAKANA LETTER SMALL A |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1340 ア A6 30A2 12450 KATAKANA LETTER A |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1341 ィ i6 30A3 12451 KATAKANA LETTER SMALL I |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1342 イ I6 30A4 12452 KATAKANA LETTER I |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1343 ゥ u6 30A5 12453 KATAKANA LETTER SMALL U |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1344 ウ U6 30A6 12454 KATAKANA LETTER U |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1345 ェ e6 30A7 12455 KATAKANA LETTER SMALL E |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1346 エ E6 30A8 12456 KATAKANA LETTER E |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1347 ォ o6 30A9 12457 KATAKANA LETTER SMALL O |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1348 オ O6 30AA 12458 KATAKANA LETTER O |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1349 カ Ka 30AB 12459 KATAKANA LETTER KA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1350 ガ Ga 30AC 12460 KATAKANA LETTER GA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1351 キ Ki 30AD 12461 KATAKANA LETTER KI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1352 ギ Gi 30AE 12462 KATAKANA LETTER GI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1353 ク Ku 30AF 12463 KATAKANA LETTER KU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1354 グ Gu 30B0 12464 KATAKANA LETTER GU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1355 ケ Ke 30B1 12465 KATAKANA LETTER KE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1356 ゲ Ge 30B2 12466 KATAKANA LETTER GE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1357 コ Ko 30B3 12467 KATAKANA LETTER KO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1358 ゴ Go 30B4 12468 KATAKANA LETTER GO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1359 サ Sa 30B5 12469 KATAKANA LETTER SA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1360 ザ Za 30B6 12470 KATAKANA LETTER ZA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1361 シ Si 30B7 12471 KATAKANA LETTER SI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1362 ジ Zi 30B8 12472 KATAKANA LETTER ZI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1363 ス Su 30B9 12473 KATAKANA LETTER SU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1364 ズ Zu 30BA 12474 KATAKANA LETTER ZU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1365 セ Se 30BB 12475 KATAKANA LETTER SE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1366 ゼ Ze 30BC 12476 KATAKANA LETTER ZE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1367 ソ So 30BD 12477 KATAKANA LETTER SO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1368 ゾ Zo 30BE 12478 KATAKANA LETTER ZO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1369 タ Ta 30BF 12479 KATAKANA LETTER TA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1370 ダ Da 30C0 12480 KATAKANA LETTER DA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1371 チ Ti 30C1 12481 KATAKANA LETTER TI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1372 ヂ Di 30C2 12482 KATAKANA LETTER DI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1373 ッ TU 30C3 12483 KATAKANA LETTER SMALL TU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1374 ツ Tu 30C4 12484 KATAKANA LETTER TU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1375 ヅ Du 30C5 12485 KATAKANA LETTER DU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1376 テ Te 30C6 12486 KATAKANA LETTER TE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1377 デ De 30C7 12487 KATAKANA LETTER DE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1378 ト To 30C8 12488 KATAKANA LETTER TO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1379 ド Do 30C9 12489 KATAKANA LETTER DO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1380 ナ Na 30CA 12490 KATAKANA LETTER NA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1381 ニ Ni 30CB 12491 KATAKANA LETTER NI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1382 ヌ Nu 30CC 12492 KATAKANA LETTER NU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1383 ネ Ne 30CD 12493 KATAKANA LETTER NE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1384 ノ No 30CE 12494 KATAKANA LETTER NO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1385 ハ Ha 30CF 12495 KATAKANA LETTER HA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1386 バ Ba 30D0 12496 KATAKANA LETTER BA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1387 パ Pa 30D1 12497 KATAKANA LETTER PA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1388 ヒ Hi 30D2 12498 KATAKANA LETTER HI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1389 ビ Bi 30D3 12499 KATAKANA LETTER BI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1390 ピ Pi 30D4 12500 KATAKANA LETTER PI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1391 フ Hu 30D5 12501 KATAKANA LETTER HU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1392 ブ Bu 30D6 12502 KATAKANA LETTER BU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1393 プ Pu 30D7 12503 KATAKANA LETTER PU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1394 ヘ He 30D8 12504 KATAKANA LETTER HE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1395 ベ Be 30D9 12505 KATAKANA LETTER BE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1396 ペ Pe 30DA 12506 KATAKANA LETTER PE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1397 ホ Ho 30DB 12507 KATAKANA LETTER HO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1398 ボ Bo 30DC 12508 KATAKANA LETTER BO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1399 ポ Po 30DD 12509 KATAKANA LETTER PO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1400 マ Ma 30DE 12510 KATAKANA LETTER MA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1401 ミ Mi 30DF 12511 KATAKANA LETTER MI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1402 ム Mu 30E0 12512 KATAKANA LETTER MU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1403 メ Me 30E1 12513 KATAKANA LETTER ME |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1404 モ Mo 30E2 12514 KATAKANA LETTER MO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1405 ャ YA 30E3 12515 KATAKANA LETTER SMALL YA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1406 ヤ Ya 30E4 12516 KATAKANA LETTER YA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1407 ュ YU 30E5 12517 KATAKANA LETTER SMALL YU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1408 ユ Yu 30E6 12518 KATAKANA LETTER YU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1409 ョ YO 30E7 12519 KATAKANA LETTER SMALL YO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1410 ヨ Yo 30E8 12520 KATAKANA LETTER YO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1411 ラ Ra 30E9 12521 KATAKANA LETTER RA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1412 リ Ri 30EA 12522 KATAKANA LETTER RI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1413 ル Ru 30EB 12523 KATAKANA LETTER RU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1414 レ Re 30EC 12524 KATAKANA LETTER RE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1415 ロ Ro 30ED 12525 KATAKANA LETTER RO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1416 ヮ WA 30EE 12526 KATAKANA LETTER SMALL WA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1417 ワ Wa 30EF 12527 KATAKANA LETTER WA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1418 ヰ Wi 30F0 12528 KATAKANA LETTER WI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1419 ヱ We 30F1 12529 KATAKANA LETTER WE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1420 ヲ Wo 30F2 12530 KATAKANA LETTER WO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1421 ン N6 30F3 12531 KATAKANA LETTER N ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1422 ヴ Vu 30F4 12532 KATAKANA LETTER VU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1423 ヵ KA 30F5 12533 KATAKANA LETTER SMALL KA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1424 ヶ KE 30F6 12534 KATAKANA LETTER SMALL KE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1425 ヷ Va 30F7 12535 KATAKANA LETTER VA |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1426 ヸ Vi 30F8 12536 KATAKANA LETTER VI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1427 ヹ Ve 30F9 12537 KATAKANA LETTER VE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1428 ヺ Vo 30FA 12538 KATAKANA LETTER VO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1429 ・ .6 30FB 12539 KATAKANA MIDDLE DOT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1430 ー -6 30FC 12540 KATAKANA-HIRAGANA PROLONGED SOUND MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1431 ヽ *6 30FD 12541 KATAKANA ITERATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1432 ヾ +6 30FE 12542 KATAKANA VOICED ITERATION MARK |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1433 ㄅ b4 3105 12549 BOPOMOFO LETTER B |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1434 ㄆ p4 3106 12550 BOPOMOFO LETTER P |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1435 ㄇ m4 3107 12551 BOPOMOFO LETTER M |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1436 ㄈ f4 3108 12552 BOPOMOFO LETTER F |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1437 ㄉ d4 3109 12553 BOPOMOFO LETTER D |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1438 ㄊ t4 310A 12554 BOPOMOFO LETTER T |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1439 ㄋ n4 310B 12555 BOPOMOFO LETTER N ` |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1440 ㄌ l4 310C 12556 BOPOMOFO LETTER L |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1441 ㄍ g4 310D 12557 BOPOMOFO LETTER G |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1442 ㄎ k4 310E 12558 BOPOMOFO LETTER K |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1443 ㄏ h4 310F 12559 BOPOMOFO LETTER H |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1444 ㄐ j4 3110 12560 BOPOMOFO LETTER J |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1445 ㄑ q4 3111 12561 BOPOMOFO LETTER Q |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1446 ㄒ x4 3112 12562 BOPOMOFO LETTER X |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1447 ㄓ zh 3113 12563 BOPOMOFO LETTER ZH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1448 ㄔ ch 3114 12564 BOPOMOFO LETTER CH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1449 ㄕ sh 3115 12565 BOPOMOFO LETTER SH |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1450 ㄖ r4 3116 12566 BOPOMOFO LETTER R |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1451 ㄗ z4 3117 12567 BOPOMOFO LETTER Z |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1452 ㄘ c4 3118 12568 BOPOMOFO LETTER C |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1453 ㄙ s4 3119 12569 BOPOMOFO LETTER S |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1454 ㄚ a4 311A 12570 BOPOMOFO LETTER A |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1455 ㄛ o4 311B 12571 BOPOMOFO LETTER O |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1456 ㄜ e4 311C 12572 BOPOMOFO LETTER E |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1457 ㄞ ai 311E 12574 BOPOMOFO LETTER AI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1458 ㄟ ei 311F 12575 BOPOMOFO LETTER EI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1459 ㄠ au 3120 12576 BOPOMOFO LETTER AU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1460 ㄡ ou 3121 12577 BOPOMOFO LETTER OU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1461 ㄢ an 3122 12578 BOPOMOFO LETTER AN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1462 ㄣ en 3123 12579 BOPOMOFO LETTER EN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1463 ㄤ aN 3124 12580 BOPOMOFO LETTER ANG |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1464 ㄥ eN 3125 12581 BOPOMOFO LETTER ENG |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1465 ㄦ er 3126 12582 BOPOMOFO LETTER ER |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1466 ㄧ i4 3127 12583 BOPOMOFO LETTER I |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1467 ㄨ u4 3128 12584 BOPOMOFO LETTER U |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1468 ㄩ iu 3129 12585 BOPOMOFO LETTER IU |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1469 ㄪ v4 312A 12586 BOPOMOFO LETTER V |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1470 ㄫ nG 312B 12587 BOPOMOFO LETTER NG |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1471 ㄬ gn 312C 12588 BOPOMOFO LETTER GN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1472 ㈠ 1c 3220 12832 PARENTHESIZED IDEOGRAPH ONE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1473 ㈡ 2c 3221 12833 PARENTHESIZED IDEOGRAPH TWO |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1474 ㈢ 3c 3222 12834 PARENTHESIZED IDEOGRAPH THREE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1475 ㈣ 4c 3223 12835 PARENTHESIZED IDEOGRAPH FOUR |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1476 ㈤ 5c 3224 12836 PARENTHESIZED IDEOGRAPH FIVE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1477 ㈥ 6c 3225 12837 PARENTHESIZED IDEOGRAPH SIX |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1478 ㈦ 7c 3226 12838 PARENTHESIZED IDEOGRAPH SEVEN |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1479 ㈧ 8c 3227 12839 PARENTHESIZED IDEOGRAPH EIGHT |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1480 ㈨ 9c 3228 12840 PARENTHESIZED IDEOGRAPH NINE |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1481 ff ff FB00 64256 LATIN SMALL LIGATURE FF |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1482 fi fi FB01 64257 LATIN SMALL LIGATURE FI |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1483 fl fl FB02 64258 LATIN SMALL LIGATURE FL |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1484 ſt ft FB05 64261 LATIN SMALL LIGATURE LONG S T |
b6471224d2af
Updated runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
2577
diff
changeset
|
1485 st st FB06 64262 LATIN SMALL LIGATURE ST |
7 | 1486 |
14421 | 1487 vim:tw=78:ts=8:noet:ft=help:norl: |