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