Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / international / latin1-disp.el
blobadaacd25356a463a38158058957a0c1df02dee21
1 ;;; latin1-disp.el --- display tables for other ISO 8859 on Latin-1 terminals -*-coding: utf-8;-*-
3 ;; Copyright (C) 2000-2014 Free Software Foundation, Inc.
5 ;; Author: Dave Love <fx@gnu.org>
6 ;; Keywords: i18n
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; This package sets up display of ISO 8859-n for n>1 by substituting
26 ;; Latin-1 characters and sequences of them for characters which can't
27 ;; be displayed, either because we're on a tty or because we don't
28 ;; have the relevant window system fonts available. For instance,
29 ;; Latin-9 is very similar to Latin-1, so we can display most Latin-9
30 ;; characters using the Latin-1 characters at the same code point and
31 ;; fall back on more-or-less mnemonic ASCII sequences for the rest.
33 ;; For the Latin charsets the ASCII sequences are mostly consistent
34 ;; with the Quail prefix input sequences. Latin-4 uses the Quail
35 ;; postfix sequences since a prefix method isn't defined for Latin-4.
37 ;; [A different approach is taken in the DOS display tables in
38 ;; term/internal.el, and the relevant ASCII sequences from there are
39 ;; available as an alternative; see `latin1-display-mnemonic'. Only
40 ;; these sequences are used for Arabic, Cyrillic, Greek and Hebrew.]
42 ;; If you don't even have Latin-1, see iso-ascii.el and use the
43 ;; complete tables from internal.el. The ASCII sequences used here
44 ;; are mostly in the same style as iso-ascii.
46 ;;; Code:
48 ;; Ensure `standard-display-table' is set up:
49 (require 'disp-table)
51 (defconst latin1-display-sets '(latin-2 latin-3 latin-4 latin-5 latin-8
52 latin-9 arabic cyrillic greek hebrew)
53 "The ISO8859 character sets with defined Latin-1 display sequences.
54 These are the nicknames for the sets and correspond to Emacs language
55 environments.")
57 (defgroup latin1-display ()
58 "Set up display tables for ISO8859 characters using Latin-1."
59 :version "21.1"
60 :link '(emacs-commentary-link "latin1-disp")
61 :group 'i18n)
63 (defcustom latin1-display-format "{%s}"
64 "A format string used to display the ASCII sequences.
65 The default encloses the sequence in braces, but you could just use
66 \"%s\" to avoid the braces, maybe with a non-default value of
67 `latin1-display-face'."
68 :group 'latin1-display
69 :type 'string)
71 ;;;###autoload
72 (defcustom latin1-display nil
73 "Set up Latin-1/ASCII display for ISO8859 character sets.
74 This is done for each character set in the list `latin1-display-sets',
75 if no font is available to display it. Characters are displayed using
76 the corresponding Latin-1 characters where they match. Otherwise
77 ASCII sequences are used, mostly following the Latin prefix input
78 methods. Some different ASCII sequences are used if
79 `latin1-display-mnemonic' is non-nil.
81 This option also treats some characters in the `mule-unicode-...'
82 charsets if you don't have a Unicode font with which to display them.
84 Setting this variable directly does not take effect;
85 use either \\[customize] or the function `latin1-display'."
86 :group 'latin1-display
87 :type 'boolean
88 :require 'latin1-disp
89 :initialize 'custom-initialize-default
90 :set (lambda (symbol value)
91 (if value
92 (apply #'latin1-display latin1-display-sets)
93 (latin1-display))))
95 ;;;###autoload
96 (defun latin1-display (&rest sets)
97 "Set up Latin-1/ASCII display for the arguments character SETS.
98 See option `latin1-display' for the method. The members of the list
99 must be in `latin1-display-sets'. With no arguments, reset the
100 display for all of `latin1-display-sets'. See also
101 `latin1-display-setup'."
102 (if sets
103 (progn
104 (mapc #'latin1-display-setup sets)
105 (unless (char-displayable-p #x101) ; a with macron
106 ;; Extra stuff for windows-1252, in particular.
107 (mapc
108 (lambda (l)
109 (apply 'latin1-display-char l))
110 '((?\‚ ",") ;; SINGLE LOW-9 QUOTATION MARK
111 (?\„ ",,") ;; DOUBLE LOW-9 QUOTATION MARK
112 (?\… "...") ;; HORIZONTAL ELLIPSIS
113 (?\‰ "o/oo") ;; PER MILLE SIGN
114 (?\‹ "<") ;; SINGLE LEFT-POINTING ANGLE QUOTATION MARK
115 (?\“ "``") ;; LEFT DOUBLE QUOTATION MARK
116 (?\” "''") ;; RIGHT DOUBLE QUOTATION MARK
117 (?\– "-") ;; EN DASH
118 (?\— "--") ;; EM DASH
119 (?\™ "TM") ;; TRADE MARK SIGN
120 (?\› ">") ;; SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
121 (?• "·")
123 (setq latin1-display t))
124 (mapc #'latin1-display-reset latin1-display-sets)
125 (set-char-table-range standard-display-table '(#x0100 . #x33FF) nil)
126 (set-char-table-range standard-display-table '(#xE000 . #xFFFF) nil)
127 (setq latin1-display nil)
128 (redraw-display)))
130 (defcustom latin1-display-mnemonic nil
131 "Non-nil means to display potentially more mnemonic sequences.
132 These are taken from the tables in `internal.el' rather than the Quail
133 input sequences."
134 :type 'boolean
135 :group 'latin1-display)
137 (defcustom latin1-display-face 'default
138 "Face to use for displaying substituted ASCII sequences."
139 :type 'face
140 :version "22.1"
141 :group 'latin1-display)
143 (defun latin1-display-char (char display &optional alt-display)
144 "Make an entry in `standard-display-table' for CHAR using string DISPLAY.
145 If ALT-DISPLAY is provided, use that instead if
146 `latin1-display-mnemonic' is non-nil. The actual string displayed is
147 formatted using `latin1-display-format'.
149 DISPLAY and ALT-DISPLAY are either strings or vectors. String values
150 are formatted using `latin1-display-format' and passed to
151 `standard-display-ascii'; vectors are put into `standard-display-table'
152 asis."
153 (if (and (stringp alt-display)
154 latin1-display-mnemonic)
155 (setq display alt-display))
156 (if (stringp display)
157 (if (eq 'default latin1-display-face)
158 (standard-display-ascii char (format latin1-display-format display))
159 (aset standard-display-table char
160 (vconcat (mapcar (lambda (c) (make-glyph-code c latin1-display-face))
161 display))))
162 (aset standard-display-table char
163 (make-glyph-code display latin1-display-face))))
165 (defun latin1-display-identities (charset)
166 "Display each character in CHARSET as the corresponding Latin-1 character.
167 CHARSET is a symbol which is the nickname of a language environment
168 using an ISO8859 character set."
169 (if (eq charset 'cyrillic)
170 (setq charset 'cyrillic-iso))
171 (let ((i 128)
172 (set (car (remq 'ascii (get-language-info charset 'charset)))))
173 (while (<= i 255)
174 (let ((ch (decode-char set i)))
175 (if ch
176 (aset standard-display-table ch (vector i))))
177 (setq i (1+ i)))))
179 (defun latin1-display-reset (language)
180 "Set up the default display for each character of LANGUAGE's charset.
181 LANGUAGE is a symbol naming a language environment using an ISO8859
182 character set."
183 (if (eq language 'cyrillic)
184 (setq language 'cyrillic-iso))
185 (let ((charset (if (eq language 'arabic)
186 'arabic-iso8859-6
187 (car (remq 'ascii (get-language-info language
188 'charset))))))
189 (map-charset-chars #'(lambda (range arg)
190 (standard-display-default (car range) (cdr range)))
191 charset))
192 (sit-for 0))
194 (defun latin1-display-check-font (language)
195 "Return non-nil if we have a font with an encoding for LANGUAGE.
196 LANGUAGE is a symbol naming a language environment using an ISO8859
197 character set: `latin-2', `hebrew' etc."
198 (if (eq language 'cyrillic)
199 (setq language 'cyrillic-iso))
200 (let* ((info (get-language-info language 'charset))
201 (char (and info (decode-char (car (remq 'ascii info)) ?\ ))))
202 (and char (char-displayable-p char))))
204 ;; Backwards compatibility.
205 (define-obsolete-function-alias 'latin1-char-displayable-p
206 'char-displayable-p "22.1")
208 (defun latin1-display-setup (set &optional force)
209 "Set up Latin-1 display for characters in the given SET.
210 SET must be a member of `latin1-display-sets'. Normally, check
211 whether a font for SET is available and don't set the display if it
212 is. If FORCE is non-nil, set up the display regardless."
213 (cond
214 ((eq set 'latin-2)
215 (latin1-display-identities set)
216 (mapc
217 (lambda (l)
218 (or (char-displayable-p (car l))
219 (apply 'latin1-display-char l)))
220 '(("'C" "C'")
221 ("'D" "/D")
222 ("'S" "S'")
223 ("'c" "c'")
224 ("'d" "/d")
225 ("'L" "L'")
226 ("'n" "n'")
227 ("'N" "N'")
228 ("'r" "r'")
229 ("'R" "R'")
230 ("'s" "s'")
231 ("'z" "z'")
232 ("'Z" "Z'")
233 ("`A" "A;")
234 ("`E" "E;")
235 ("`L" "/L")
236 ("`S" ",S")
237 ("`T" ",T")
238 ("`Z" "Z^.")
239 ("`a" "a;")
240 ("`l" "/l")
241 ("`e" "e;")
242 ("`s" ",s")
243 ("`t" ",t")
244 ("`z" "z^.")
245 ("`." "'.")
246 ("~A" "A(")
247 ("~C" "C<")
248 ("~D" "D<")
249 ("~E" "E<")
250 ("~e" "e<")
251 ("~L" "L<")
252 ("~N" "N<")
253 ("~O" "O''")
254 ("~R" "R<")
255 ("~S" "S<")
256 ("~T" "T<")
257 ("~U" "U''")
258 ("~Z" "Z<")
259 ("~a" "a(}")
260 ("~c" "c<")
261 ("~d" "d<")
262 ("~l" "l<")
263 ("~n" "n<")
264 ("~o" "o''")
265 ("~r" "r<")
266 ("~s" "s<")
267 ("~t" "t<")
268 ("~u" "u''")
269 ("~z" "z<")
270 ("~v" "'<") ; ?˘ in latin-pre
271 ("~~" "'(")
272 ("uu" "u^0")
273 ("UU" "U^0")
274 ("\"A")
275 ("\"a")
276 ("\"E" "E:")
277 ("\"e")
278 ("''" "'")
279 ("'<") ; Lynx's rendering of caron
282 ((eq set 'latin-3)
283 (latin1-display-identities set)
284 (mapc
285 (lambda (l)
286 (or (char-displayable-p (car l))
287 (apply 'latin1-display-char l)))
288 '(("/H")
289 ("~`" "'(")
290 ("^H" "H^")
291 ("^h" "h^")
292 (".I" "I^.")
293 (",S")
294 ("~G" "G(")
295 ("^J" "J^")
296 (".Z" "Z^.")
297 ("/h")
298 (".i" "i^.")
299 (",s")
300 ("~g" "g(")
301 ("^j" "j^")
302 (".Z" "z^.")
303 (".c" "C^.")
304 ("^C" "C^")
305 (".G" "G^.")
306 ("^G" "G^")
307 ("~U" "U(")
308 ("^S" "S^")
309 (".C" "c^.")
310 ("^c" "c^")
311 (".g" "g^.")
312 ("^g" "g^")
313 ("~u" "u(")
314 ("^s" "s^")
315 ("/." "^."))))
317 ((eq set 'latin-4)
318 (latin1-display-identities set)
319 (mapc
320 (lambda (l)
321 (or (char-displayable-p (car l))
322 (apply 'latin1-display-char l)))
323 '(("A," "A;")
324 ("k/" "kk")
325 ("R," ",R")
326 ("I~" "?I")
327 ("L," ",L")
328 ("S~" "S<")
329 ("E-")
330 ("G," ",G")
331 ("T/" "/T")
332 ("Z~" "Z<")
333 ("a," "a;")
334 ("';")
335 ("r," ",r")
336 ("i~" "~i")
337 ("l," ",l")
338 ("'<")
339 ("s~" "s<")
340 ("e-")
341 ("g," ",g")
342 ("t/" "/t")
343 ("N/" "NG")
344 ("z~" "z<")
345 ("n/" "ng")
346 ("A-")
347 ("I," "I;")
348 ("C~" "C<")
349 ("E," "E;")
350 ("E." "E^.")
351 ("I-")
352 ("N," ",N")
353 ("O-")
354 ("K," ",K")
355 ("U," "U;")
356 ("U~" "~U")
357 ("U-")
358 ("a-")
359 ("i," "i;")
360 ("c~" "c<")
361 ("e," "e;")
362 ("e." "e^.")
363 ("i-")
364 ("d/" "/d")
365 ("n," ",n")
366 ("o-")
367 ("k," ",k")
368 ("u," "u;")
369 ("u~" "~u")
370 ("u-")
371 ("^."))))
373 ((eq set 'latin-5)
374 (latin1-display-identities set)
375 (mapc
376 (lambda (l)
377 (or (char-displayable-p (car l))
378 (apply 'latin1-display-char l)))
379 '(("~g" "g(")
380 ("~G" "G(")
381 (".I" "I^.")
382 (",s")
383 (",S")
384 ("^e" "e<") ; from latin-post
385 (".e" "e^.")
386 ("\"i" "i-") ; from latin-post
387 (".i" "i."))))
389 ((eq set 'latin-8)
390 (latin1-display-identities set)
391 (mapc
392 (lambda (l)
393 (or (char-displayable-p (car l))
394 (apply 'latin1-display-char l)))
395 '((?Ḃ ".B" "B`")
396 (?ḃ ".b" "b`")
397 (".c" "c`")
398 (".C" "C`")
399 (?Ḋ ".D" "D`")
400 (?ḋ ".d" "d`")
401 (?ẁ "`w")
402 (?Ẁ "`W")
403 (?ẃ "'w" "w'")
404 (?Ẃ "'W" "W'")
405 (?ỳ "`y")
406 (?Ỳ "`Y")
407 (?ḟ ".f" "f`")
408 (?Ḟ ".F" "F`")
409 (".g" "g`")
410 (".G" "G`")
411 (?ṁ ".m" "m`")
412 (?Ṁ ".M" "M`")
413 (?ṗ ".p" "p`")
414 (?Ṗ ".P" "P`")
415 (?ṡ ".s" "s`")
416 (?Ṡ ".S" "S`")
417 (?ẅ "\"w")
418 (?Ẅ "\"W")
419 ("^w" "w^")
420 ("^W" "W^")
421 (?ṫ ".t" "t`")
422 (?Ṫ ".T" "T`")
423 ("^y" "y^")
424 ("^Y" "Y^")
425 ("\"Y"))))
427 ((eq set 'latin-9)
428 (latin1-display-identities set)
429 (mapc
430 (lambda (l)
431 (or (char-displayable-p (car l))
432 (apply 'latin1-display-char l)))
433 '(("~s" "s<")
434 ("~S" "S<")
435 (?€ "Euro" "E=")
436 ("~z" "z<")
437 ("~Z" "Z<")
438 ("\"Y")
439 ("oe")
440 ("OE"))))
442 ((eq set 'greek)
443 (mapc
444 (lambda (l)
445 (or (char-displayable-p (car l))
446 (apply 'latin1-display-char l)))
447 '((?‘ "9'")
448 (?’ "'9")
449 (?― "-M")
450 ("'%")
451 ("'A")
452 ("'E")
453 ("'H")
454 ("'I")
455 ("'O")
456 ("'Y")
457 ("W%")
458 ("i3")
459 ("G*")
460 ("D*")
461 ("TH")
462 ("L*")
463 ("C*")
464 ("P*")
465 ("S*")
466 ("F*")
467 ("Q*")
468 ("W*")
469 ("\"I")
470 ("\"Y")
471 ("a%")
472 ("e%")
473 ("y%")
474 ("i%")
475 ("u3")
476 ("a*")
477 ("b*")
478 ("g*")
479 ("d*")
480 ("e*")
481 ("z*")
482 ("y*")
483 ("h*")
484 ("i*")
485 ("k")
486 ("l*")
487 ("m*")
488 ("n*")
489 ("c*")
490 ("p*")
491 ("r*")
492 ("*s")
493 ("s*")
494 ("t*")
495 ("u")
496 ("f*")
497 ("x*")
498 ("q*")
499 ("w*")
500 ("\"i")
501 ("\"u")
502 ("'o")
503 ("'u")
504 ("'w")))
505 (mapc
506 (lambda (l)
507 (or (char-displayable-p (car l))
508 (aset standard-display-table (car l) (string-to-vector (cadr l)))))
509 '(("A")
510 ("B")
511 ("E")
512 ("Z")
513 ("H")
514 ("I")
515 ("J")
516 ("M")
517 ("N")
518 ("O")
519 ("P")
520 ("T")
521 ("Y")
522 ("X")
523 (?ο "o"))))
525 ((eq set 'hebrew)
526 ;; Don't start with identities, since we don't have definitions
527 ;; for a lot of Hebrew in internal.el. (Intlfonts is also
528 ;; missing some glyphs.)
529 (let ((i 34))
530 (while (<= i 62)
531 (let ((ch (decode-char 'hebrew-iso8859-8 i)))
532 (if ch
533 (aset standard-display-table ch
534 (vector (decode-char 'latin-iso8859-1 i)))))
535 (setq i (1+ i))))
536 (mapc
537 (lambda (l)
538 (or (char-displayable-p (car l))
539 (aset standard-display-table (car l) (string-to-vector (cadr l)))))
540 '((?‗ "=2")
541 ("A+")
542 ("B+")
543 ("G+")
544 ("D+")
545 ("H+")
546 ("W+")
547 ("Z+")
548 ("X+")
549 ("Tj")
550 ("J+")
551 ("K%")
552 ("K+")
553 ("L+")
554 ("M%")
555 ("M+")
556 ("N%")
557 ("N+")
558 ("S+")
559 ("E+")
560 ("P%")
561 ("P+")
562 ("Zj")
563 ("ZJ")
564 ("Q+")
565 ("R+")
566 ("Sh")
567 ("T+"))))
569 ;; Arabic probably isn't so useful in the absence of Arabic
570 ;; language support...
571 ((eq set 'arabic)
572 (setq set 'arabic)
573 (or (char-displayable-p)
574 (aset standard-display-table ?  " "))
575 (or (char-displayable-p)
576 (aset standard-display-table ?¤ "¤"))
577 (or (char-displayable-p)
578 (aset standard-display-table ?­ "­"))
579 (mapc (lambda (l)
580 (or (char-displayable-p (car l))
581 (apply 'latin1-display-char l)))
582 '((",+")
583 (";+")
584 ("?+")
585 ("H'")
586 ("aM")
587 ("aH")
588 ("wH")
589 ("ah")
590 ("yH")
591 ("a+")
592 ("b+")
593 ("tm")
594 ("t+")
595 ("tk")
596 ("g+")
597 ("hk")
598 ("x+")
599 ("d+")
600 ("dk")
601 ("r+")
602 ("z+")
603 ("s+")
604 ("sn")
605 ("c+")
606 ("dd")
607 ("tj")
608 ("zH")
609 ("e+")
610 ("i+")
611 ("++")
612 ("f+")
613 ("q+")
614 ("k+")
615 ("l+")
616 ("m+")
617 ("n+")
618 ("h+")
619 ("w+")
620 ("j+")
621 ("y+")
622 (":+")
623 ("\"+")
624 ("=+")
625 ("/+")
626 ("'+")
627 ("1+")
628 ("3+")
629 ("0+"))))
631 ((eq set 'cyrillic)
632 (setq set 'cyrillic-iso)
633 (mapc
634 (lambda (l)
635 (or (char-displayable-p (car l))
636 (apply 'latin1-display-char l)))
637 '(("Dj")
638 ("Gj")
639 ("IE")
640 ("Lj")
641 ("Nj")
642 ("Ts")
643 ("Kj")
644 ("V%")
645 ("Dzh")
646 ("B=")
647 ("â")
648 ("D")
649 ("Z%")
650 ("3")
651 ("U")
652 ("J=")
653 ("L=")
654 ("P=")
655 ("Y")
656 ("è")
657 ("C=")
658 ("C%")
659 ("S%")
660 ("Sc")
661 ("=\"")
662 ("Y=")
663 ("%\"")
664 ("Ee")
665 ("Yu")
666 ("Ya")
667 ("b")
668 ("v=")
669 ("g=")
670 ("g")
671 ("z%")
672 ("z=")
673 ("u")
674 ("j=")
675 ("k")
676 ("l=")
677 ("m=")
678 ("n=")
679 (?п "n")
680 ("p")
681 ("t=")
682 ("f=")
683 ("c=")
684 ("c%")
685 ("s%")
686 ("sc")
687 ("='")
688 ("y=")
689 ("%'")
690 ("ee")
691 ("yu")
692 ("ya")
693 (?№ "N0")
694 ("dj")
695 ("gj")
696 ("ie")
697 ("lj")
698 ("nj")
699 ("ts")
700 ("kj")
701 ("v%")
702 ("dzh")))
703 (mapc
704 (lambda (l)
705 (or (char-displayable-p (car l))
706 (aset standard-display-table (car l) (string-to-vector (cadr l)))))
707 '(("Ë")
708 ("S")
709 ("I")
710 ("Ï")
711 ("J")
712 ("ë")
713 ("§")
714 ("-")
715 ("A")
716 ("B")
717 ("E")
718 ("K")
719 ("M")
720 ("H")
721 ("O")
722 ("P")
723 ("C")
724 ("T")
725 ("X")
726 ("a")
727 ("e")
728 ("o")
729 ("c")
730 ("y")
731 ("x")
732 ("s")
733 ("i")
734 ("ï")
735 ("j"))))
737 (t (error "Unsupported character set: %S" set)))
739 (sit-for 0))
741 ;;;###autoload
742 (defcustom latin1-display-ucs-per-lynx nil
743 "Set up Latin-1/ASCII display for Unicode characters.
744 This uses the transliterations of the Lynx browser. The display isn't
745 changed if the display can render Unicode characters.
747 Setting this variable directly does not take effect;
748 use either \\[customize] or the function `latin1-display'."
749 :group 'latin1-display
750 :type 'boolean
751 :require 'latin1-disp
752 :initialize 'custom-initialize-default
753 :set (lambda (symbol value)
754 (if value
755 (latin1-display-ucs-per-lynx 1)
756 (latin1-display-ucs-per-lynx -1))))
758 (defun latin1-display-ucs-per-lynx (arg)
759 "Set up Latin-1/ASCII display for Unicode characters.
760 This uses the transliterations of the Lynx browser.
762 With argument ARG, turn such display on if ARG is positive, otherwise
763 turn it off and display Unicode characters literally. The display
764 isn't changed if the display can render Unicode characters."
765 (interactive "p")
766 (if (> arg 0)
767 (unless (char-displayable-p #x101) ; a with macron
768 ;; It doesn't look as though we have a Unicode font.
769 (let ((latin1-display-format "%s"))
770 (mapc
771 (lambda (l)
772 (apply 'latin1-display-char l))
773 ;; Table derived by running Lynx on a suitable list of
774 ;; characters in a utf-8 file, except for some added by
775 ;; hand at the end.
776 '((?\Ā "A")
777 (?\ā "a")
778 (?\Ă "A")
779 (?\ă "a")
780 (?\Ą "A")
781 (?\ą "a")
782 (?\Ć "C")
783 (?\ć "c")
784 (?\Ĉ "C")
785 (?\ĉ "c")
786 (?\Ċ "C")
787 (?\ċ "c")
788 (?\Č "C")
789 (?\č "c")
790 (?\Ď "D")
791 (?\ď "d")
792 (?\Đ "Ð")
793 (?\đ "d/")
794 (?\Ē "E")
795 (?\ē "e")
796 (?\Ĕ "E")
797 (?\ĕ "e")
798 (?\Ė "E")
799 (?\ė "e")
800 (?\Ę "E")
801 (?\ę "e")
802 (?\Ě "E")
803 (?\ě "e")
804 (?\Ĝ "G")
805 (?\ĝ "g")
806 (?\Ğ "G")
807 (?\ğ "g")
808 (?\Ġ "G")
809 (?\ġ "g")
810 (?\Ģ "G")
811 (?\ģ "g")
812 (?\Ĥ "H")
813 (?\ĥ "h")
814 (?\Ħ "H/")
815 (?\ħ "H")
816 (?\Ĩ "I")
817 (?\ĩ "i")
818 (?\Ī "I")
819 (?\ī "i")
820 (?\Ĭ "I")
821 (?\ĭ "i")
822 (?\Į "I")
823 (?\į "i")
824 (?\İ "I")
825 (?\ı "i")
826 (?\IJ "IJ")
827 (?\ij "ij")
828 (?\Ĵ "J")
829 (?\ĵ "j")
830 (?\Ķ "K")
831 (?\ķ "k")
832 (?\ĸ "kk")
833 (?\Ĺ "L")
834 (?\ĺ "l")
835 (?\Ļ "L")
836 (?\ļ "l")
837 (?\Ľ "L")
838 (?\ľ "l")
839 (?\Ŀ "L.")
840 (?\ŀ "l.")
841 (?\Ł "L/")
842 (?\ł "l/")
843 (?\Ń "N")
844 (?\ń "n")
845 (?\Ņ "N")
846 (?\ņ "n")
847 (?\Ň "N")
848 (?\ň "n")
849 (?\ʼn "'n")
850 (?\Ŋ "NG")
851 (?\ŋ "N")
852 (?\Ō "O")
853 (?\ō "o")
854 (?\Ŏ "O")
855 (?\ŏ "o")
856 (?\Ő "O\"")
857 (?\ő "o\"")
858 (?\Π"OE")
859 (?\œ "oe")
860 (?\Ŕ "R")
861 (?\ŕ "r")
862 (?\Ŗ "R")
863 (?\ŗ "r")
864 (?\Ř "R")
865 (?\ř "r")
866 (?\Ś "S")
867 (?\ś "s")
868 (?\Ŝ "S")
869 (?\ŝ "s")
870 (?\Ş "S")
871 (?\ş "s")
872 (?\Š "S")
873 (?\š "s")
874 (?\Ţ "T")
875 (?\ţ "t")
876 (?\Ť "T")
877 (?\ť "t")
878 (?\Ŧ "T/")
879 (?\ŧ "t/")
880 (?\Ũ "U")
881 (?\ũ "u")
882 (?\Ū "U")
883 (?\ū "u")
884 (?\Ŭ "U")
885 (?\ŭ "u")
886 (?\Ů "U")
887 (?\ů "u")
888 (?\Ű "U\"")
889 (?\ű "u\"")
890 (?\Ų "U")
891 (?\ų "u")
892 (?\Ŵ "W")
893 (?\ŵ "w")
894 (?\Ŷ "Y")
895 (?\ŷ "y")
896 (?\Ÿ "Y")
897 (?\Ź "Z")
898 (?\ź "z")
899 (?\Ż "Z")
900 (?\ż "z")
901 (?\Ž "Z")
902 (?\ž "z")
903 (?\ſ "s1")
904 (?\Ƈ "C2")
905 (?\ƈ "c2")
906 (?\Ƒ "F2")
907 (?\ƒ " f")
908 (?\Ƙ "K2")
909 (?\ƙ "k2")
910 (?\Ơ "O9")
911 (?\ơ "o9")
912 (?\Ƣ "OI")
913 (?\ƣ "oi")
914 (?\Ʀ "yr")
915 (?\Ư "U9")
916 (?\ư "u9")
917 (?\Ƶ "Z/")
918 (?\ƶ "z/")
919 (?\Ʒ "ED")
920 (?\Ǎ "A")
921 (?\ǎ "a")
922 (?\Ǐ "I")
923 (?\ǐ "i")
924 (?\Ǒ "O")
925 (?\ǒ "o")
926 (?\Ǔ "U")
927 (?\ǔ "u")
928 (?\Ǖ "U:-")
929 (?\ǖ "u:-")
930 (?\Ǘ "U:'")
931 (?\ǘ "u:'")
932 (?\Ǚ "U:<")
933 (?\ǚ "u:<")
934 (?\Ǜ "U:!")
935 (?\ǜ "u:!")
936 (?\Ǟ "A1")
937 (?\ǟ "a1")
938 (?\Ǡ "A7")
939 (?\ǡ "a7")
940 (?\Ǣ "A3")
941 (?\ǣ "a3")
942 (?\Ǥ "G/")
943 (?\ǥ "g/")
944 (?\Ǧ "G")
945 (?\ǧ "g")
946 (?\Ǩ "K")
947 (?\ǩ "k")
948 (?\Ǫ "O")
949 (?\ǫ "o")
950 (?\Ǭ "O1")
951 (?\ǭ "o1")
952 (?\Ǯ "EZ")
953 (?\ǯ "ez")
954 (?\ǰ "j")
955 (?\Ǵ "G")
956 (?\ǵ "g")
957 (?\Ǻ "AA'")
958 (?\ǻ "aa'")
959 (?\Ǽ "AE'")
960 (?\ǽ "ae'")
961 (?\Ǿ "O/'")
962 (?\ǿ "o/'")
963 (?\Ȁ "A!!")
964 (?\ȁ "a!!")
965 (?\Ȃ "A)")
966 (?\ȃ "a)")
967 (?\Ȅ "E!!")
968 (?\ȅ "e!!")
969 (?\Ȇ "E)")
970 (?\ȇ "e)")
971 (?\Ȉ "I!!")
972 (?\ȉ "i!!")
973 (?\Ȋ "I)")
974 (?\ȋ "i)")
975 (?\Ȍ "O!!")
976 (?\ȍ "o!!")
977 (?\Ȏ "O)")
978 (?\ȏ "o)")
979 (?\Ȑ "R!!")
980 (?\ȑ "r!!")
981 (?\Ȓ "R)")
982 (?\ȓ "r)")
983 (?\Ȕ "U!!")
984 (?\ȕ "u!!")
985 (?\Ȗ "U)")
986 (?\ȗ "u)")
987 (?\ȝ "Z")
988 (?\ɑ "A")
989 (?\ɒ "A.")
990 (?\ɓ "b`")
991 (?\ɔ "O")
992 (?\ɖ "d.")
993 (?\ɗ "d`")
994 (?\ɘ "@<umd>")
995 (?\ə "@")
996 (?\ɚ "R")
997 (?\ɛ "E")
998 (?\ɜ "V\"")
999 (?\ɝ "R<umd>")
1000 (?\ɞ "O\"")
1001 (?\ɟ "J")
1002 (?\ɠ "g`")
1003 (?\ɡ "g")
1004 (?\ɢ "G")
1005 (?\ɣ "Q")
1006 (?\ɤ "o-")
1007 (?\ɥ "j<rnd>")
1008 (?\ɦ "h<?>")
1009 (?\ɨ "i\"")
1010 (?\ɩ "I")
1011 (?\ɪ "I")
1012 (?\ɫ "L")
1013 (?\ɬ "L")
1014 (?\ɭ "l.")
1015 (?\ɮ "z<lat>")
1016 (?\ɯ "u-")
1017 (?\ɰ "j<vel>")
1018 (?\ɱ "M")
1019 (?\ɳ "n.")
1020 (?\ɴ "n\"")
1021 (?\ɵ "@.")
1022 (?\ɶ "&.")
1023 (?\ɷ "U")
1024 (?\ɹ "r")
1025 (?\ɺ "*<lat>")
1026 (?\ɻ "r.")
1027 (?\ɽ "*.")
1028 (?\ɾ "*")
1029 (?\ʀ "R")
1030 (?\ʁ "g\"")
1031 (?\ʂ "s.")
1032 (?\ʃ "S")
1033 (?\ʄ "J`")
1034 (?\ʇ "t!")
1035 (?\ʈ "t.")
1036 (?\ʉ "u\"")
1037 (?\ʊ "U")
1038 (?\ʋ "r<lbd>")
1039 (?\ʌ "V")
1040 (?\ʍ "w<vls>")
1041 (?\ʎ "l^")
1042 (?\ʏ "I.")
1043 (?\ʐ "z.")
1044 (?\ʒ "Z")
1045 (?\ʔ "?")
1046 (?\ʕ "H<vcd>")
1047 (?\ʖ "l!")
1048 (?\ʗ "c!")
1049 (?\ʘ "p!")
1050 (?\ʙ "b<trl>")
1051 (?\ʛ "G`")
1052 (?\ʝ "j")
1053 (?\ʞ "k!")
1054 (?\ʟ "L")
1055 (?\ʠ "q`")
1056 (?\ʤ "d3")
1057 (?\ʦ "ts")
1058 (?\ʧ "tS")
1059 (?\ʰ "<h>")
1060 (?\ʱ "<?>")
1061 (?\ʲ ";")
1062 (?\ʳ "<r>")
1063 (?\ʷ "<w>")
1064 (?\ʻ ";S")
1065 (?\ʼ "`")
1066 (?\ˆ "^")
1067 (?\ˇ "'<")
1068 (?\ˈ "|")
1069 (?\ˉ "1-")
1070 (?\ˋ "1!")
1071 (?\ː ":")
1072 (?\ˑ ":\\")
1073 (?\˖ "+")
1074 (?\˗ "-")
1075 (?\˘ "'(")
1076 (?\˙ "'.")
1077 (?\˚ "'0")
1078 (?\˛ "';")
1079 (?\˜ "~")
1080 (?\˝ "'\"")
1081 (?\˥ "_T")
1082 (?\˦ "_H")
1083 (?\˧ "_M")
1084 (?\˨ "_L")
1085 (?\˩ "_B")
1086 (?\ˬ "_v")
1087 (?\ˮ "''")
1088 (?\̀ "`")
1089 (?\́ "'")
1090 (?\̂ "^")
1091 (?\̃ "~")
1092 (?\̄ "¯")
1093 (?\̇ "·")
1094 (?\̈ "¨")
1095 (?\̊ "°")
1096 (?\̋ "''")
1097 (?\̍ "|")
1098 (?\̎ "||")
1099 (?\̏ "``")
1100 (?\̡ ";")
1101 (?\̢ ".")
1102 (?\̣ ".")
1103 (?\̤ "<?>")
1104 (?\̥ "<o>")
1105 (?\̦ ",")
1106 (?\̧ "¸")
1107 (?\̩ "-")
1108 (?\̪ "[")
1109 (?\̫ "<w>")
1110 (?\̴ "~")
1111 (?\̷ "/")
1112 (?\̸ "/")
1113 (?\̀ "`")
1114 (?\́ "'")
1115 (?\͂ "~")
1116 (?\̈́ "'%")
1117 (?\ͅ "j3")
1118 (?\͇ "=")
1119 (?\͠ "~~")
1120 (?\ʹ "'")
1121 (?\͵ ",")
1122 (?\ͺ "j3")
1123 (?\; "?%")
1124 (?\΄ "'*")
1125 (?\΅ "'%")
1126 (?\Ά "A'")
1127 (?\· "·")
1128 (?\Έ "E'")
1129 (?\Ή "Y%")
1130 (?\Ί "I'")
1131 (?\Ό "O'")
1132 (?\Ύ "U%")
1133 (?\Ώ "W%")
1134 (?\ΐ "i3")
1135 (?\Α "A")
1136 (?\Β "B")
1137 (?\Γ "G")
1138 (?\Δ "D")
1139 (?\Ε "E")
1140 (?\Ζ "Z")
1141 (?\Η "Y")
1142 (?\Θ "TH")
1143 (?\Ι "I")
1144 (?\Κ "K")
1145 (?\Λ "L")
1146 (?\Μ "M")
1147 (?\Ν "N")
1148 (?\Ξ "C")
1149 (?\Ο "O")
1150 (?\Π "P")
1151 (?\Ρ "R")
1152 (?\Σ "S")
1153 (?\Τ "T")
1154 (?\Υ "U")
1155 (?\Φ "F")
1156 (?\Χ "X")
1157 (?\Ψ "Q")
1158 (?\Ω "W*")
1159 (?\Ϊ "J")
1160 (?\Ϋ "V*")
1161 (?\ά "a'")
1162 (?\έ "e'")
1163 (?\ή "y%")
1164 (?\ί "i'")
1165 (?\ΰ "u3")
1166 (?\α "a")
1167 (?\β "b")
1168 (?\γ "g")
1169 (?\δ "d")
1170 (?\ε "e")
1171 (?\ζ "z")
1172 (?\η "y")
1173 (?\θ "th")
1174 (?\ι "i")
1175 (?\κ "k")
1176 (?\λ "l")
1177 (?\μ "µ")
1178 (?\ν "n")
1179 (?\ξ "c")
1180 (?\ο "o")
1181 (?\π "p")
1182 (?\ρ "r")
1183 (?\ς "*s")
1184 (?\σ "s")
1185 (?\τ "t")
1186 (?\υ "u")
1187 (?\φ "f")
1188 (?\χ "x")
1189 (?\ψ "q")
1190 (?\ω "w")
1191 (?\ϊ "j")
1192 (?\ϋ "v*")
1193 (?\ό "o'")
1194 (?\ύ "u%")
1195 (?\ώ "w%")
1196 (?\ϐ "beta ")
1197 (?\ϑ "theta ")
1198 (?\ϒ "upsi ")
1199 (?\ϕ "phi ")
1200 (?\ϖ "pi ")
1201 (?\ϗ "k.")
1202 (?\Ϛ "T3")
1203 (?\ϛ "t3")
1204 (?\Ϝ "M3")
1205 (?\ϝ "m3")
1206 (?\Ϟ "K3")
1207 (?\ϟ "k3")
1208 (?\Ϡ "P3")
1209 (?\ϡ "p3")
1210 (?\ϰ "kappa ")
1211 (?\ϱ "rho ")
1212 (?\ϳ "J")
1213 (?\ϴ "'%")
1214 (?\ϵ "j3")
1215 (?\Ё "IO")
1216 (?\Ђ "D%")
1217 (?\Ѓ "G%")
1218 (?\Є "IE")
1219 (?\Ѕ "DS")
1220 (?\І "II")
1221 (?\Ї "YI")
1222 (?\Ј "J%")
1223 (?\Љ "LJ")
1224 (?\Њ "NJ")
1225 (?\Ћ "Ts")
1226 (?\Ќ "KJ")
1227 (?\Ў "V%")
1228 (?\Џ "DZ")
1229 (?\А "A")
1230 (?\Б "B")
1231 (?\В "V")
1232 (?\Г "G")
1233 (?\Д "D")
1234 (?\Е "E")
1235 (?\Ж "ZH")
1236 (?\З "Z")
1237 (?\И "I")
1238 (?\Й "J")
1239 (?\К "K")
1240 (?\Л "L")
1241 (?\М "M")
1242 (?\Н "N")
1243 (?\О "O")
1244 (?\П "P")
1245 (?\Р "R")
1246 (?\С "S")
1247 (?\Т "T")
1248 (?\У "U")
1249 (?\Ф "F")
1250 (?\Х "H")
1251 (?\Ц "C")
1252 (?\Ч "CH")
1253 (?\Ш "SH")
1254 (?\Щ "SCH")
1255 (?\Ъ "\"")
1256 (?\Ы "Y")
1257 (?\Ь "'")
1258 (?\Э "`E")
1259 (?\Ю "YU")
1260 (?\Я "YA")
1261 (?\а "a")
1262 (?\б "b")
1263 (?\в "v")
1264 (?\г "g")
1265 (?\д "d")
1266 (?\е "e")
1267 (?\ж "zh")
1268 (?\з "z")
1269 (?\и "i")
1270 (?\й "j")
1271 (?\к "k")
1272 (?\л "l")
1273 (?\м "m")
1274 (?\н "n")
1275 (?\о "o")
1276 (?\п "p")
1277 (?\р "r")
1278 (?\с "s")
1279 (?\т "t")
1280 (?\у "u")
1281 (?\ф "f")
1282 (?\х "h")
1283 (?\ц "c")
1284 (?\ч "ch")
1285 (?\ш "sh")
1286 (?\щ "sch")
1287 (?\ъ "\"")
1288 (?\ы "y")
1289 (?\ь "'")
1290 (?\э "`e")
1291 (?\ю "yu")
1292 (?\я "ya")
1293 (?\ё "io")
1294 (?\ђ "d%")
1295 (?\ѓ "g%")
1296 (?\є "ie")
1297 (?\ѕ "ds")
1298 (?\і "ii")
1299 (?\ї "yi")
1300 (?\ј "j%")
1301 (?\љ "lj")
1302 (?\њ "nj")
1303 (?\ћ "ts")
1304 (?\ќ "kj")
1305 (?\ў "v%")
1306 (?\џ "dz")
1307 (?\Ѣ "Y3")
1308 (?\ѣ "y3")
1309 (?\Ѫ "O3")
1310 (?\ѫ "o3")
1311 (?\Ѳ "F3")
1312 (?\ѳ "f3")
1313 (?\Ѵ "V3")
1314 (?\ѵ "v3")
1315 (?\Ҁ "C3")
1316 (?\ҁ "c3")
1317 (?\Ґ "G3")
1318 (?\ґ "g3")
1319 (?\Ӕ "AE")
1320 (?\ӕ "ae")
1321 (?\ִ "i")
1322 (?\ַ "a")
1323 (?\ָ "o")
1324 (?\ּ "u")
1325 (?\ֿ "h")
1326 (?\ׂ ":")
1327 (?\א "#")
1328 (?\ב "B+")
1329 (?\ג "G+")
1330 (?\ד "D+")
1331 (?\ה "H+")
1332 (?\ו "W+")
1333 (?\ז "Z+")
1334 (?\ח "X+")
1335 (?\ט "Tj")
1336 (?\י "J+")
1337 (?\ך "K%")
1338 (?\כ "K+")
1339 (?\ל "L+")
1340 (?\ם "M%")
1341 (?\מ "M+")
1342 (?\ן "N%")
1343 (?\נ "N+")
1344 (?\ס "S+")
1345 (?\ע "E+")
1346 (?\ף "P%")
1347 (?\פ "P+")
1348 (?\ץ "Zj")
1349 (?\צ "ZJ")
1350 (?\ק "Q+")
1351 (?\ר "R+")
1352 (?\ש "Sh")
1353 (?\ת "T+")
1354 (?\װ "v")
1355 (?\ױ "oy")
1356 (?\ײ "ey")
1357 (?\، ",+")
1358 (?\؛ ";+")
1359 (?\؟ "?+")
1360 (?\ء "H'")
1361 (?\آ "aM")
1362 (?\أ "aH")
1363 (?\ؤ "wH")
1364 (?\إ "ah")
1365 (?\ئ "yH")
1366 (?\ا "a+")
1367 (?\ب "b+")
1368 (?\ة "tm")
1369 (?\ت "t+")
1370 (?\ث "tk")
1371 (?\ج "g+")
1372 (?\ح "hk")
1373 (?\خ "x+")
1374 (?\د "d+")
1375 (?\ذ "dk")
1376 (?\ر "r+")
1377 (?\ز "z+")
1378 (?\س "s+")
1379 (?\ش "sn")
1380 (?\ص "c+")
1381 (?\ض "dd")
1382 (?\ط "tj")
1383 (?\ظ "zH")
1384 (?\ع "e+")
1385 (?\غ "i+")
1386 (?\ـ "++")
1387 (?\ف "f+")
1388 (?\ق "q+")
1389 (?\ك "k+")
1390 (?\ل "l+")
1391 (?\م "m+")
1392 (?\ن "n+")
1393 (?\ه "h+")
1394 (?\و "w+")
1395 (?\ى "j+")
1396 (?\ي "y+")
1397 (?\ً ":+")
1398 (?\ٌ "\"+")
1399 (?\ٍ "=+")
1400 (?\َ "/+")
1401 (?\ُ "'+")
1402 (?\ِ "1+")
1403 (?\ّ "3+")
1404 (?\ْ "0+")
1405 (?\٠ "0a")
1406 (?\١ "1a")
1407 (?\٢ "2a")
1408 (?\٣ "3a")
1409 (?\٤ "4a")
1410 (?\٥ "5a")
1411 (?\٦ "6a")
1412 (?\٧ "7a")
1413 (?\٨ "8a")
1414 (?\٩ "9a")
1415 (?\ٰ "aS")
1416 (?\پ "p+")
1417 (?\ځ "hH")
1418 (?\چ "tc")
1419 (?\ژ "zj")
1420 (?\ڤ "v+")
1421 (?\گ "gf")
1422 (?\۰ "0a")
1423 (?\۱ "1a")
1424 (?\۲ "2a")
1425 (?\۳ "3a")
1426 (?\۴ "4a")
1427 (?\۵ "5a")
1428 (?\۶ "6a")
1429 (?\۷ "7a")
1430 (?\۸ "8a")
1431 (?\۹ "9a")
1432 (?\ሀ "he")
1433 (?\ሁ "hu")
1434 (?\ሂ "hi")
1435 (?\ሃ "ha")
1436 (?\ሄ "hE")
1437 (?\ህ "h")
1438 (?\ሆ "ho")
1439 (?\ለ "le")
1440 (?\ሉ "lu")
1441 (?\ሊ "li")
1442 (?\ላ "la")
1443 (?\ሌ "lE")
1444 (?\ል "l")
1445 (?\ሎ "lo")
1446 (?\ሏ "lWa")
1447 (?\ሐ "He")
1448 (?\ሑ "Hu")
1449 (?\ሒ "Hi")
1450 (?\ሓ "Ha")
1451 (?\ሔ "HE")
1452 (?\ሕ "H")
1453 (?\ሖ "Ho")
1454 (?\ሗ "HWa")
1455 (?\መ "me")
1456 (?\ሙ "mu")
1457 (?\ሚ "mi")
1458 (?\ማ "ma")
1459 (?\ሜ "mE")
1460 (?\ም "m")
1461 (?\ሞ "mo")
1462 (?\ሟ "mWa")
1463 (?\ሠ "`se")
1464 (?\ሡ "`su")
1465 (?\ሢ "`si")
1466 (?\ሣ "`sa")
1467 (?\ሤ "`sE")
1468 (?\ሥ "`s")
1469 (?\ሦ "`so")
1470 (?\ሧ "`sWa")
1471 (?\ረ "re")
1472 (?\ሩ "ru")
1473 (?\ሪ "ri")
1474 (?\ራ "ra")
1475 (?\ሬ "rE")
1476 (?\ር "r")
1477 (?\ሮ "ro")
1478 (?\ሯ "rWa")
1479 (?\ሰ "se")
1480 (?\ሱ "su")
1481 (?\ሲ "si")
1482 (?\ሳ "sa")
1483 (?\ሴ "sE")
1484 (?\ስ "s")
1485 (?\ሶ "so")
1486 (?\ሷ "sWa")
1487 (?\ሸ "xe")
1488 (?\ሹ "xu")
1489 (?\ሺ "xi")
1490 (?\ሻ "xa")
1491 (?\ሼ "xE")
1492 (?\ሽ "xa")
1493 (?\ሾ "xo")
1494 (?\ሿ "xWa")
1495 (?\ቀ "qe")
1496 (?\ቁ "qu")
1497 (?\ቂ "qi")
1498 (?\ቃ "qa")
1499 (?\ቄ "qE")
1500 (?\ቅ "q")
1501 (?\ቆ "qo")
1502 (?\ቈ "qWe")
1503 (?\ቊ "qWi")
1504 (?\ቋ "qWa")
1505 (?\ቌ "qWE")
1506 (?\ቍ "qW")
1507 (?\ቐ "Qe")
1508 (?\ቑ "Qu")
1509 (?\ቒ "Qi")
1510 (?\ቓ "Qa")
1511 (?\ቔ "QE")
1512 (?\ቕ "Q")
1513 (?\ቖ "Qo")
1514 (?\ቘ "QWe")
1515 (?\ቚ "QWi")
1516 (?\ቛ "QWa")
1517 (?\ቜ "QWE")
1518 (?\ቝ "QW")
1519 (?\በ "be")
1520 (?\ቡ "bu")
1521 (?\ቢ "bi")
1522 (?\ባ "ba")
1523 (?\ቤ "bE")
1524 (?\ብ "b")
1525 (?\ቦ "bo")
1526 (?\ቧ "bWa")
1527 (?\ቨ "ve")
1528 (?\ቩ "vu")
1529 (?\ቪ "vi")
1530 (?\ቫ "va")
1531 (?\ቬ "vE")
1532 (?\ቭ "v")
1533 (?\ቮ "vo")
1534 (?\ቯ "vWa")
1535 (?\ተ "te")
1536 (?\ቱ "tu")
1537 (?\ቲ "ti")
1538 (?\ታ "ta")
1539 (?\ቴ "tE")
1540 (?\ት "t")
1541 (?\ቶ "to")
1542 (?\ቷ "tWa")
1543 (?\ቸ "ce")
1544 (?\ቹ "cu")
1545 (?\ቺ "ci")
1546 (?\ቻ "ca")
1547 (?\ቼ "cE")
1548 (?\ች "c")
1549 (?\ቾ "co")
1550 (?\ቿ "cWa")
1551 (?\ኀ "`he")
1552 (?\ኁ "`hu")
1553 (?\ኂ "`hi")
1554 (?\ኃ "`ha")
1555 (?\ኄ "`hE")
1556 (?\ኅ "`h")
1557 (?\ኆ "`ho")
1558 (?\ኈ "hWe")
1559 (?\ኊ "hWi")
1560 (?\ኋ "hWa")
1561 (?\ኌ "hWE")
1562 (?\ኍ "hW")
1563 (?\ነ "na")
1564 (?\ኑ "nu")
1565 (?\ኒ "ni")
1566 (?\ና "na")
1567 (?\ኔ "nE")
1568 (?\ን "n")
1569 (?\ኖ "no")
1570 (?\ኗ "nWa")
1571 (?\ኘ "Ne")
1572 (?\ኙ "Nu")
1573 (?\ኚ "Ni")
1574 (?\ኛ "Na")
1575 (?\ኜ "NE")
1576 (?\ኝ "N")
1577 (?\ኞ "No")
1578 (?\ኟ "NWa")
1579 (?\አ "e")
1580 (?\ኡ "u")
1581 (?\ኢ "i")
1582 (?\ኣ "a")
1583 (?\ኤ "E")
1584 (?\እ "I")
1585 (?\ኦ "o")
1586 (?\ኧ "e3")
1587 (?\ከ "ke")
1588 (?\ኩ "ku")
1589 (?\ኪ "ki")
1590 (?\ካ "ka")
1591 (?\ኬ "kE")
1592 (?\ክ "k")
1593 (?\ኮ "ko")
1594 (?\ኰ "kWe")
1595 (?\ኲ "kWi")
1596 (?\ኳ "kWa")
1597 (?\ኴ "kWE")
1598 (?\ኵ "kW")
1599 (?\ኸ "Ke")
1600 (?\ኹ "Ku")
1601 (?\ኺ "Ki")
1602 (?\ኻ "Ka")
1603 (?\ኼ "KE")
1604 (?\ኽ "K")
1605 (?\ኾ "Ko")
1606 (?\ዀ "KWe")
1607 (?\ዂ "KWi")
1608 (?\ዃ "KWa")
1609 (?\ዄ "KWE")
1610 (?\ዅ "KW")
1611 (?\ወ "we")
1612 (?\ዉ "wu")
1613 (?\ዊ "wi")
1614 (?\ዋ "wa")
1615 (?\ዌ "wE")
1616 (?\ው "w")
1617 (?\ዎ "wo")
1618 (?\ዐ "`e")
1619 (?\ዑ "`u")
1620 (?\ዒ "`i")
1621 (?\ዓ "`a")
1622 (?\ዔ "`E")
1623 (?\ዕ "`I")
1624 (?\ዖ "`o")
1625 (?\ዘ "ze")
1626 (?\ዙ "zu")
1627 (?\ዚ "zi")
1628 (?\ዛ "za")
1629 (?\ዜ "zE")
1630 (?\ዝ "z")
1631 (?\ዞ "zo")
1632 (?\ዟ "zWa")
1633 (?\ዠ "Ze")
1634 (?\ዡ "Zu")
1635 (?\ዢ "Zi")
1636 (?\ዣ "Za")
1637 (?\ዤ "ZE")
1638 (?\ዥ "Z")
1639 (?\ዦ "Zo")
1640 (?\ዧ "ZWa")
1641 (?\የ "ye")
1642 (?\ዩ "yu")
1643 (?\ዪ "yi")
1644 (?\ያ "ya")
1645 (?\ዬ "yE")
1646 (?\ይ "y")
1647 (?\ዮ "yo")
1648 (?\ዯ "yWa")
1649 (?\ደ "de")
1650 (?\ዱ "du")
1651 (?\ዲ "di")
1652 (?\ዳ "da")
1653 (?\ዴ "dE")
1654 (?\ድ "d")
1655 (?\ዶ "do")
1656 (?\ዷ "dWa")
1657 (?\ዸ "De")
1658 (?\ዹ "Du")
1659 (?\ዺ "Di")
1660 (?\ዻ "Da")
1661 (?\ዼ "DE")
1662 (?\ዽ "D")
1663 (?\ዾ "Do")
1664 (?\ዿ "DWa")
1665 (?\ጀ "je")
1666 (?\ጁ "ju")
1667 (?\ጂ "ji")
1668 (?\ጃ "ja")
1669 (?\ጄ "jE")
1670 (?\ጅ "j")
1671 (?\ጆ "jo")
1672 (?\ጇ "jWa")
1673 (?\ገ "ga")
1674 (?\ጉ "gu")
1675 (?\ጊ "gi")
1676 (?\ጋ "ga")
1677 (?\ጌ "gE")
1678 (?\ግ "g")
1679 (?\ጎ "go")
1680 (?\ጐ "gWu")
1681 (?\ጒ "gWi")
1682 (?\ጓ "gWa")
1683 (?\ጔ "gWE")
1684 (?\ጕ "gW")
1685 (?\ጘ "Ge")
1686 (?\ጙ "Gu")
1687 (?\ጚ "Gi")
1688 (?\ጛ "Ga")
1689 (?\ጜ "GE")
1690 (?\ጝ "G")
1691 (?\ጞ "Go")
1692 (?\ጟ "GWa")
1693 (?\ጠ "Te")
1694 (?\ጡ "Tu")
1695 (?\ጢ "Ti")
1696 (?\ጣ "Ta")
1697 (?\ጤ "TE")
1698 (?\ጥ "T")
1699 (?\ጦ "To")
1700 (?\ጧ "TWa")
1701 (?\ጨ "Ce")
1702 (?\ጩ "Ca")
1703 (?\ጪ "Cu")
1704 (?\ጫ "Ca")
1705 (?\ጬ "CE")
1706 (?\ጭ "C")
1707 (?\ጮ "Co")
1708 (?\ጯ "CWa")
1709 (?\ጰ "Pe")
1710 (?\ጱ "Pu")
1711 (?\ጲ "Pi")
1712 (?\ጳ "Pa")
1713 (?\ጴ "PE")
1714 (?\ጵ "P")
1715 (?\ጶ "Po")
1716 (?\ጷ "PWa")
1717 (?\ጸ "SWe")
1718 (?\ጹ "SWu")
1719 (?\ጺ "SWi")
1720 (?\ጻ "SWa")
1721 (?\ጼ "SWE")
1722 (?\ጽ "SW")
1723 (?\ጾ "SWo")
1724 (?\ጿ "SWa")
1725 (?\ፀ "`Sa")
1726 (?\ፁ "`Su")
1727 (?\ፂ "`Si")
1728 (?\ፃ "`Sa")
1729 (?\ፄ "`SE")
1730 (?\ፅ "`S")
1731 (?\ፆ "`So")
1732 (?\ፈ "fa")
1733 (?\ፉ "fu")
1734 (?\ፊ "fi")
1735 (?\ፋ "fa")
1736 (?\ፌ "fE")
1737 (?\ፍ "o")
1738 (?\ፎ "fo")
1739 (?\ፏ "fWa")
1740 (?\ፐ "pe")
1741 (?\ፑ "pu")
1742 (?\ፒ "pi")
1743 (?\ፓ "pa")
1744 (?\ፔ "pE")
1745 (?\ፕ "p")
1746 (?\ፖ "po")
1747 (?\ፗ "pWa")
1748 (?\ፘ "mYa")
1749 (?\ፙ "rYa")
1750 (?\ፚ "fYa")
1751 (?\፠ " ")
1752 (?\፡ ":")
1753 (?\። "::")
1754 (?\፣ ",")
1755 (?\፤ ";")
1756 (?\፥ "-:")
1757 (?\፦ ":-")
1758 (?\፧ "`?")
1759 (?\፨ ":|:")
1760 (?\፩ "`1")
1761 (?\፪ "`2")
1762 (?\፫ "`3")
1763 (?\፬ "`4")
1764 (?\፭ "`5")
1765 (?\፮ "`6")
1766 (?\፯ "`7")
1767 (?\፰ "`8")
1768 (?\፱ "`9")
1769 (?\፲ "`10")
1770 (?\፳ "`20")
1771 (?\፴ "`30")
1772 (?\፵ "`40")
1773 (?\፶ "`50")
1774 (?\፷ "`60")
1775 (?\፸ "`70")
1776 (?\፹ "`80")
1777 (?\፺ "`90")
1778 (?\፻ "`100")
1779 (?\፼ "`10000")
1780 (?\Ḁ "A-0")
1781 (?\ḁ "a-0")
1782 (?\Ḃ "B.")
1783 (?\ḃ "b.")
1784 (?\Ḅ "B-.")
1785 (?\ḅ "b-.")
1786 (?\Ḇ "B_")
1787 (?\ḇ "b_")
1788 (?\Ḉ "C,'")
1789 (?\ḉ "c,'")
1790 (?\Ḋ "D.")
1791 (?\ḋ "d.")
1792 (?\Ḍ "D-.")
1793 (?\ḍ "d-.")
1794 (?\Ḏ "D_")
1795 (?\ḏ "d_")
1796 (?\Ḑ "D,")
1797 (?\ḑ "d,")
1798 (?\Ḓ "D->")
1799 (?\ḓ "d->")
1800 (?\Ḕ "E-!")
1801 (?\ḕ "e-!")
1802 (?\Ḗ "E-'")
1803 (?\ḗ "e-'")
1804 (?\Ḙ "E->")
1805 (?\ḙ "e->")
1806 (?\Ḛ "E-?")
1807 (?\ḛ "e-?")
1808 (?\Ḝ "E,(")
1809 (?\ḝ "e,(")
1810 (?\Ḟ "F.")
1811 (?\ḟ "f.")
1812 (?\Ḡ "G-")
1813 (?\ḡ "g-")
1814 (?\Ḣ "H.")
1815 (?\ḣ "h.")
1816 (?\Ḥ "H-.")
1817 (?\ḥ "h-.")
1818 (?\Ḧ "H:")
1819 (?\ḧ "h:")
1820 (?\Ḩ "H,")
1821 (?\ḩ "h,")
1822 (?\Ḫ "H-(")
1823 (?\ḫ "h-(")
1824 (?\Ḭ "I-?")
1825 (?\ḭ "i-?")
1826 (?\Ḯ "I:'")
1827 (?\ḯ "i:'")
1828 (?\Ḱ "K'")
1829 (?\ḱ "k'")
1830 (?\Ḳ "K-.")
1831 (?\ḳ "k-.")
1832 (?\Ḵ "K_")
1833 (?\ḵ "k_")
1834 (?\Ḷ "L-.")
1835 (?\ḷ "l-.")
1836 (?\Ḹ "L--.")
1837 (?\ḹ "l--.")
1838 (?\Ḻ "L_")
1839 (?\ḻ "l_")
1840 (?\Ḽ "L->")
1841 (?\ḽ "l->")
1842 (?\Ḿ "M'")
1843 (?\ḿ "m'")
1844 (?\Ṁ "M.")
1845 (?\ṁ "m.")
1846 (?\Ṃ "M-.")
1847 (?\ṃ "m-.")
1848 (?\Ṅ "N.")
1849 (?\ṅ "n.")
1850 (?\Ṇ "N-.")
1851 (?\ṇ "n-.")
1852 (?\Ṉ "N_")
1853 (?\ṉ "n_")
1854 (?\Ṋ "N->")
1855 (?\ṋ "n->")
1856 (?\Ṍ "O?'")
1857 (?\ṍ "o?'")
1858 (?\Ṏ "O?:")
1859 (?\ṏ "o?:")
1860 (?\Ṑ "O-!")
1861 (?\ṑ "o-!")
1862 (?\Ṓ "O-'")
1863 (?\ṓ "o-'")
1864 (?\Ṕ "P'")
1865 (?\ṕ "p'")
1866 (?\Ṗ "P.")
1867 (?\ṗ "p.")
1868 (?\Ṙ "R.")
1869 (?\ṙ "r.")
1870 (?\Ṛ "R-.")
1871 (?\ṛ "r-.")
1872 (?\Ṝ "R--.")
1873 (?\ṝ "r--.")
1874 (?\Ṟ "R_")
1875 (?\ṟ "r_")
1876 (?\Ṡ "S.")
1877 (?\ṡ "s.")
1878 (?\Ṣ "S-.")
1879 (?\ṣ "s-.")
1880 (?\Ṥ "S'.")
1881 (?\ṥ "s'.")
1882 (?\Ṧ "S<.")
1883 (?\ṧ "s<.")
1884 (?\Ṩ "S.-.")
1885 (?\ṩ "s.-.")
1886 (?\Ṫ "T.")
1887 (?\ṫ "t.")
1888 (?\Ṭ "T-.")
1889 (?\ṭ "t-.")
1890 (?\Ṯ "T_")
1891 (?\ṯ "t_")
1892 (?\Ṱ "T->")
1893 (?\ṱ "t->")
1894 (?\Ṳ "U--:")
1895 (?\ṳ "u--:")
1896 (?\Ṵ "U-?")
1897 (?\ṵ "u-?")
1898 (?\Ṷ "U->")
1899 (?\ṷ "u->")
1900 (?\Ṹ "U?'")
1901 (?\ṹ "u?'")
1902 (?\Ṻ "U-:")
1903 (?\ṻ "u-:")
1904 (?\Ṽ "V?")
1905 (?\ṽ "v?")
1906 (?\Ṿ "V-.")
1907 (?\ṿ "v-.")
1908 (?\Ẁ "W!")
1909 (?\ẁ "w!")
1910 (?\Ẃ "W'")
1911 (?\ẃ "w'")
1912 (?\Ẅ "W:")
1913 (?\ẅ "w:")
1914 (?\Ẇ "W.")
1915 (?\ẇ "w.")
1916 (?\Ẉ "W-.")
1917 (?\ẉ "w-.")
1918 (?\Ẋ "X.")
1919 (?\ẋ "x.")
1920 (?\Ẍ "X:")
1921 (?\ẍ "x:")
1922 (?\Ẏ "Y.")
1923 (?\ẏ "y.")
1924 (?\Ẑ "Z>")
1925 (?\ẑ "z>")
1926 (?\Ẓ "Z-.")
1927 (?\ẓ "z-.")
1928 (?\Ẕ "Z_")
1929 (?\ẕ "z_")
1930 (?\ẖ "h_")
1931 (?\ẗ "t:")
1932 (?\ẘ "w0")
1933 (?\ẙ "y0")
1934 (?\Ạ "A-.")
1935 (?\ạ "a-.")
1936 (?\Ả "A2")
1937 (?\ả "a2")
1938 (?\Ấ "A>'")
1939 (?\ấ "a>'")
1940 (?\Ầ "A>!")
1941 (?\ầ "a>!")
1942 (?\Ẩ "A>2")
1943 (?\ẩ "a>2")
1944 (?\Ẫ "A>?")
1945 (?\ẫ "a>?")
1946 (?\Ậ "A>-.")
1947 (?\ậ "a>-.")
1948 (?\Ắ "A('")
1949 (?\ắ "a('")
1950 (?\Ằ "A(!")
1951 (?\ằ "a(!")
1952 (?\Ẳ "A(2")
1953 (?\ẳ "a(2")
1954 (?\Ẵ "A(?")
1955 (?\ẵ "a(?")
1956 (?\Ặ "A(-.")
1957 (?\ặ "a(-.")
1958 (?\Ẹ "E-.")
1959 (?\ẹ "e-.")
1960 (?\Ẻ "E2")
1961 (?\ẻ "e2")
1962 (?\Ẽ "E?")
1963 (?\ẽ "e?")
1964 (?\Ế "E>'")
1965 (?\ế "e>'")
1966 (?\Ề "E>!")
1967 (?\ề "e>!")
1968 (?\Ể "E>2")
1969 (?\ể "e>2")
1970 (?\Ễ "E>?")
1971 (?\ễ "e>?")
1972 (?\Ệ "E>-.")
1973 (?\ệ "e>-.")
1974 (?\Ỉ "I2")
1975 (?\ỉ "i2")
1976 (?\Ị "I-.")
1977 (?\ị "i-.")
1978 (?\Ọ "O-.")
1979 (?\ọ "o-.")
1980 (?\Ỏ "O2")
1981 (?\ỏ "o2")
1982 (?\Ố "O>'")
1983 (?\ố "o>'")
1984 (?\Ồ "O>!")
1985 (?\ồ "o>!")
1986 (?\Ổ "O>2")
1987 (?\ổ "o>2")
1988 (?\Ỗ "O>?")
1989 (?\ỗ "o>?")
1990 (?\Ộ "O>-.")
1991 (?\ộ "o>-.")
1992 (?\Ớ "O9'")
1993 (?\ớ "o9'")
1994 (?\Ờ "O9!")
1995 (?\ờ "o9!")
1996 (?\Ở "O92")
1997 (?\ở "o92")
1998 (?\Ỡ "O9?")
1999 (?\ỡ "o9?")
2000 (?\Ợ "O9-.")
2001 (?\ợ "o9-.")
2002 (?\Ụ "U-.")
2003 (?\ụ "u-.")
2004 (?\Ủ "U2")
2005 (?\ủ "u2")
2006 (?\Ứ "U9'")
2007 (?\ứ "u9'")
2008 (?\Ừ "U9!")
2009 (?\ừ "u9!")
2010 (?\Ử "U92")
2011 (?\ử "u92")
2012 (?\Ữ "U9?")
2013 (?\ữ "u9?")
2014 (?\Ự "U9-.")
2015 (?\ự "u9-.")
2016 (?\Ỳ "Y!")
2017 (?\ỳ "y!")
2018 (?\Ỵ "Y-.")
2019 (?\ỵ "y-.")
2020 (?\Ỷ "Y2")
2021 (?\ỷ "y2")
2022 (?\Ỹ "Y?")
2023 (?\ỹ "y?")
2024 (?\ἀ "a")
2025 (?\ἁ "ha")
2026 (?\ἂ "`a")
2027 (?\ἃ "h`a")
2028 (?\ἄ "a'")
2029 (?\ἅ "ha'")
2030 (?\ἆ "a~")
2031 (?\ἇ "ha~")
2032 (?\Ἀ "A")
2033 (?\Ἁ "hA")
2034 (?\Ἂ "`A")
2035 (?\Ἃ "h`A")
2036 (?\Ἄ "A'")
2037 (?\Ἅ "hA'")
2038 (?\Ἆ "A~")
2039 (?\Ἇ "hA~")
2040 (?\ἑ "he")
2041 (?\Ἑ "hE")
2042 (?\ἱ "hi")
2043 (?\Ἱ "hI")
2044 (?\ὁ "ho")
2045 (?\Ὁ "hO")
2046 (?\ὑ "hu")
2047 (?\Ὑ "hU")
2048 (?\᾿ ",,")
2049 (?\῀ "?*")
2050 (?\῁ "?:")
2051 (?\῍ ",!")
2052 (?\῎ ",'")
2053 (?\῏ "?,")
2054 (?\῝ ";!")
2055 (?\῞ ";'")
2056 (?\῟ "?;")
2057 (?\ῥ "rh")
2058 (?\Ῥ "Rh")
2059 (?\῭ "!:")
2060 (?\` "!*")
2061 (?\῾ ";;")
2062 (?\  " ")
2063 (?\  " ")
2064 (?\  " ")
2065 (?\  " ")
2066 (?\  " ")
2067 (?\  " ")
2068 (?\  " ")
2069 (?\  " ")
2070 (?\  " ")
2071 (?\  " ")
2072 (?\‐ "-")
2073 (?\‑ "-")
2074 (?\– "-")
2075 (?\— "--")
2076 (?\― "-")
2077 (?\‖ "||")
2078 (?\‗ "=2")
2079 (?\‘ "`")
2080 (?\’ "'")
2081 (?\‚ "'")
2082 (?\‛ "'")
2083 (?\“ "\"")
2084 (?\” "\"")
2085 (?\„ "\"")
2086 (?\‟ "\"")
2087 (?\† "/-")
2088 (?\‡ "/=")
2089 (?\• " o ")
2090 (?\․ ".")
2091 (?\‥ "..")
2092 (?\… "...")
2093 (?\‧ "·")
2094 (?\‰ " 0/00")
2095 (?\′ "'")
2096 (?\″ "''")
2097 (?\‴ "'''")
2098 (?\‵ "`")
2099 (?\‶ "``")
2100 (?\‷ "```")
2101 (?\‸ "Ca")
2102 (?\‹ "<")
2103 (?\› ">")
2104 (?\※ ":X")
2105 (?\‼ "!!")
2106 (?\‾ "'-")
2107 (?\⁃ "-")
2108 (?\⁄ "/")
2109 (?\⁈ "?!")
2110 (?\⁉ "!?")
2111 (?\⁰ "^0")
2112 (?\⁴ "^4")
2113 (?\⁵ "^5")
2114 (?\⁶ "^6")
2115 (?\⁷ "^7")
2116 (?\⁸ "^8")
2117 (?\⁹ "^9")
2118 (?\⁺ "^+")
2119 (?\⁻ "^-")
2120 (?\⁼ "^=")
2121 (?\⁽ "^(")
2122 (?\⁾ "^)")
2123 (?\ⁿ "^n")
2124 (?\₀ "_0")
2125 (?\₁ "_1")
2126 (?\₂ "_2")
2127 (?\₃ "_3")
2128 (?\₄ "_4")
2129 (?\₅ "_5")
2130 (?\₆ "_6")
2131 (?\₇ "_7")
2132 (?\₈ "_8")
2133 (?\₉ "_9")
2134 (?\₊ "_+")
2135 (?\₋ "_-")
2136 (?\₌ "_=")
2137 (?\₍ "(")
2138 (?\₎ ")")
2139 (?\₣ "Ff")
2140 (?\₤ "Li")
2141 (?\₧ "Pt")
2142 (?\₩ "W=")
2143 (?\€ "EUR")
2144 (?\℀ "a/c")
2145 (?\℁ "a/s")
2146 (?\℃ "oC")
2147 (?\℅ "c/o")
2148 (?\℆ "c/u")
2149 (?\℉ "oF")
2150 (?\ℊ "g")
2151 (?\ℎ "h")
2152 (?\ℏ "\\hbar")
2153 (?\ℑ "Im")
2154 (?\ℓ "l")
2155 (?\№ "No.")
2156 (?\℗ "PO")
2157 (?\℘ "P")
2158 (?\ℜ "Re")
2159 (?\℞ "Rx")
2160 (?\℠ "(SM)")
2161 (?\℡ "TEL")
2162 (?\™ "(TM)")
2163 (?\Ω "Ohm")
2164 (?\K "K")
2165 (?\Å "Ang.")
2166 (?\℮ "est.")
2167 (?\ℴ "o")
2168 (?\ℵ "Aleph ")
2169 (?\ℶ "Bet ")
2170 (?\ℷ "Gimel ")
2171 (?\ℸ "Dalet ")
2172 (?\⅓ " 1/3")
2173 (?\⅔ " 2/3")
2174 (?\⅕ " 1/5")
2175 (?\⅖ " 2/5")
2176 (?\⅗ " 3/5")
2177 (?\⅘ " 4/5")
2178 (?\⅙ " 1/6")
2179 (?\⅚ " 5/6")
2180 (?\⅛ " 1/8")
2181 (?\⅜ " 3/8")
2182 (?\⅝ " 5/8")
2183 (?\⅞ " 7/8")
2184 (?\⅟ " 1/")
2185 (?\Ⅰ "I")
2186 (?\Ⅱ "II")
2187 (?\Ⅲ "III")
2188 (?\Ⅳ "IV")
2189 (?\Ⅴ "V")
2190 (?\Ⅵ "VI")
2191 (?\Ⅶ "VII")
2192 (?\Ⅷ "VIII")
2193 (?\Ⅸ "IX")
2194 (?\Ⅹ "X")
2195 (?\Ⅺ "XI")
2196 (?\Ⅻ "XII")
2197 (?\Ⅼ "L")
2198 (?\Ⅽ "C")
2199 (?\Ⅾ "D")
2200 (?\Ⅿ "M")
2201 (?\ⅰ "i")
2202 (?\ⅱ "ii")
2203 (?\ⅲ "iii")
2204 (?\ⅳ "iv")
2205 (?\ⅴ "v")
2206 (?\ⅵ "vi")
2207 (?\ⅶ "vii")
2208 (?\ⅷ "viii")
2209 (?\ⅸ "ix")
2210 (?\ⅹ "x")
2211 (?\ⅺ "xi")
2212 (?\ⅻ "xii")
2213 (?\ⅼ "l")
2214 (?\ⅽ "c")
2215 (?\ⅾ "d")
2216 (?\ⅿ "m")
2217 (?\ↀ "1000RCD")
2218 (?\ↁ "5000R")
2219 (?\ↂ "10000R")
2220 (?\← "<-")
2221 (?\↑ "-^")
2222 (?\→ "->")
2223 (?\↓ "-v")
2224 (?\↔ "<->")
2225 (?\↕ "UD")
2226 (?\↖ "<!!")
2227 (?\↗ "//>")
2228 (?\↘ "!!>")
2229 (?\↙ "<//")
2230 (?\↨ "UD-")
2231 (?\↵ "RET")
2232 (?\⇀ ">V")
2233 (?\⇐ "<=")
2234 (?\⇑ "^^")
2235 (?\⇒ "=>")
2236 (?\⇓ "vv")
2237 (?\⇔ "<=>")
2238 (?\∀ "FA")
2239 (?\∂ "\\partial")
2240 (?\∃ "TE")
2241 (?\∅ "{}")
2242 (?\∆ "Delta")
2243 (?\∇ "Nabla")
2244 (?\∈ "(-")
2245 (?\∉ "!(-")
2246 (?\∊ "(-")
2247 (?\∋ "-)")
2248 (?\∌ "!-)")
2249 (?\∍ "-)")
2250 (?\∎ " qed")
2251 (?\∏ "\\prod")
2252 (?\∑ "\\sum")
2253 (?\− " -")
2254 (?\∓ "-/+")
2255 (?\∔ ".+")
2256 (?\∕ "/")
2257 (?\∖ " - ")
2258 (?\∗ "*")
2259 (?\∘ " ° ")
2260 (?\∙ "sb")
2261 (?\√ " SQRT ")
2262 (?\∛ " ROOT³ ")
2263 (?\∜ " ROOT4 ")
2264 (?\∝ "0(")
2265 (?\∞ "infty")
2266 (?\∟ "-L")
2267 (?\∠ "-V")
2268 (?\∥ "PP")
2269 (?\∦ " !PP ")
2270 (?\∧ "AND")
2271 (?\∨ "OR")
2272 (?\∩ "(U")
2273 (?\∪ ")U")
2274 (?\∫ "\int ")
2275 (?\∬ "DI")
2276 (?\∮ "Io")
2277 (?\∴ ".:")
2278 (?\∵ ":.")
2279 (?\∶ ":R")
2280 (?\∷ "::")
2281 (?\∼ "?1")
2282 (?\∾ "CG")
2283 (?\≃ "?-")
2284 (?\≅ "?=")
2285 (?\≈ "~=")
2286 (?\≉ " !~= ")
2287 (?\≌ "=?")
2288 (?\≓ "HI")
2289 (?\≔ ":=")
2290 (?\≕ "=:")
2291 (?\≠ "!=")
2292 (?\≡ "=3")
2293 (?\≢ " !=3 ")
2294 (?\≤ "=<")
2295 (?\≥ ">=")
2296 (?\≦ ".LE.")
2297 (?\≧ ".GE.")
2298 (?\≨ ".LT.NOT.EQ.")
2299 (?\≩ ".GT.NOT.EQ.")
2300 (?\≪ "<<")
2301 (?\≫ ">>")
2302 (?\≮ "!<")
2303 (?\≯ "!>")
2304 (?\≶ " <> ")
2305 (?\≷ " >< ")
2306 (?\⊂ "(C")
2307 (?\⊃ ")C")
2308 (?\⊄ " !(C ")
2309 (?\⊅ " !)C ")
2310 (?\⊆ "(_")
2311 (?\⊇ ")_")
2312 (?\⊕ "(+)")
2313 (?\⊖ "(-)")
2314 (?\⊗ "(×)")
2315 (?\⊘ "(/)")
2316 (?\⊙ "(·)")
2317 (?\⊚ "(°)")
2318 (?\⊛ "(*)")
2319 (?\⊜ "(=)")
2320 (?\⊝ "(-)")
2321 (?\⊞ "[+]")
2322 (?\⊟ "[-]")
2323 (?\⊠ "[×]")
2324 (?\⊡ "[·]")
2325 (?\⊥ "-T")
2326 (?\⊧ " MODELS ")
2327 (?\⊨ " TRUE ")
2328 (?\⊩ " FORCES ")
2329 (?\⊬ " !PROVES ")
2330 (?\⊭ " NOT TRUE ")
2331 (?\⊮ " !FORCES ")
2332 (?\⊲ " NORMAL SUBGROUP OF ")
2333 (?\⊳ " CONTAINS AS NORMAL SUBGROUP ")
2334 (?\⊴ " NORMAL SUBGROUP OF OR EQUAL TO ")
2335 (?\⊵ " CONTAINS AS NORMAL SUBGROUP OR EQUAL TO ")
2336 (?\⊸ " MULTIMAP ")
2337 (?\⊺ " INTERCALATE ")
2338 (?\⊻ " XOR ")
2339 (?\⊼ " NAND ")
2340 (?\⋅ " · ")
2341 (?\⋖ "<.")
2342 (?\⋗ ">.")
2343 (?\⋘ "<<<")
2344 (?\⋙ ">>>")
2345 (?\⋮ ":3")
2346 (?\⋯ ".3")
2347 (?\⌂ "Eh")
2348 (?\⌇ "~~")
2349 (?\⌈ "<7")
2350 (?\⌉ ">7")
2351 (?\⌊ "7<")
2352 (?\⌋ "7>")
2353 (?\⌐ "NI")
2354 (?\⌒ "(A")
2355 (?\⌕ "TR")
2356 (?\⌘ "88")
2357 (?\⌠ "Iu")
2358 (?\⌡ "Il")
2359 (?\⌢ ":(")
2360 (?\⌣ ":)")
2361 (?\⌤ "|^|")
2362 (?\⌧ "[X]")
2363 (?\〈 "</")
2364 (?\〉 "/>")
2365 (?\␣ "Vs")
2366 (?\⑀ "1h")
2367 (?\⑁ "3h")
2368 (?\⑂ "2h")
2369 (?\⑃ "4h")
2370 (?\⑆ "1j")
2371 (?\⑇ "2j")
2372 (?\⑈ "3j")
2373 (?\⑉ "4j")
2374 (?\① "1-o")
2375 (?\② "2-o")
2376 (?\③ "3-o")
2377 (?\④ "4-o")
2378 (?\⑤ "5-o")
2379 (?\⑥ "6-o")
2380 (?\⑦ "7-o")
2381 (?\⑧ "8-o")
2382 (?\⑨ "9-o")
2383 (?\⑩ "10-o")
2384 (?\⑪ "11-o")
2385 (?\⑫ "12-o")
2386 (?\⑬ "13-o")
2387 (?\⑭ "14-o")
2388 (?\⑮ "15-o")
2389 (?\⑯ "16-o")
2390 (?\⑰ "17-o")
2391 (?\⑱ "18-o")
2392 (?\⑲ "19-o")
2393 (?\⑳ "20-o")
2394 (?\⑴ "(1)")
2395 (?\⑵ "(2)")
2396 (?\⑶ "(3)")
2397 (?\⑷ "(4)")
2398 (?\⑸ "(5)")
2399 (?\⑹ "(6)")
2400 (?\⑺ "(7)")
2401 (?\⑻ "(8)")
2402 (?\⑼ "(9)")
2403 (?\⑽ "(10)")
2404 (?\⑾ "(11)")
2405 (?\⑿ "(12)")
2406 (?\⒀ "(13)")
2407 (?\⒁ "(14)")
2408 (?\⒂ "(15)")
2409 (?\⒃ "(16)")
2410 (?\⒄ "(17)")
2411 (?\⒅ "(18)")
2412 (?\⒆ "(19)")
2413 (?\⒇ "(20)")
2414 (?\⒈ "1.")
2415 (?\⒉ "2.")
2416 (?\⒊ "3.")
2417 (?\⒋ "4.")
2418 (?\⒌ "5.")
2419 (?\⒍ "6.")
2420 (?\⒎ "7.")
2421 (?\⒏ "8.")
2422 (?\⒐ "9.")
2423 (?\⒑ "10.")
2424 (?\⒒ "11.")
2425 (?\⒓ "12.")
2426 (?\⒔ "13.")
2427 (?\⒕ "14.")
2428 (?\⒖ "15.")
2429 (?\⒗ "16.")
2430 (?\⒘ "17.")
2431 (?\⒙ "18.")
2432 (?\⒚ "19.")
2433 (?\⒛ "20.")
2434 (?\⒜ "(a)")
2435 (?\⒝ "(b)")
2436 (?\⒞ "(c)")
2437 (?\⒟ "(d)")
2438 (?\⒠ "(e)")
2439 (?\⒡ "(f)")
2440 (?\⒢ "(g)")
2441 (?\⒣ "(h)")
2442 (?\⒤ "(i)")
2443 (?\⒥ "(j)")
2444 (?\⒦ "(k)")
2445 (?\⒧ "(l)")
2446 (?\⒨ "(m)")
2447 (?\⒩ "(n)")
2448 (?\⒪ "(o)")
2449 (?\⒫ "(p)")
2450 (?\⒬ "(q)")
2451 (?\⒭ "(r)")
2452 (?\⒮ "(s)")
2453 (?\⒯ "(t)")
2454 (?\⒰ "(u)")
2455 (?\⒱ "(v)")
2456 (?\⒲ "(w)")
2457 (?\⒳ "(x)")
2458 (?\⒴ "(y)")
2459 (?\⒵ "(z)")
2460 (?\Ⓐ "A-o")
2461 (?\Ⓑ "B-o")
2462 (?\Ⓒ "C-o")
2463 (?\Ⓓ "D-o")
2464 (?\Ⓔ "E-o")
2465 (?\Ⓕ "F-o")
2466 (?\Ⓖ "G-o")
2467 (?\Ⓗ "H-o")
2468 (?\Ⓘ "I-o")
2469 (?\Ⓙ "J-o")
2470 (?\Ⓚ "K-o")
2471 (?\Ⓛ "L-o")
2472 (?\Ⓜ "M-o")
2473 (?\Ⓝ "N-o")
2474 (?\Ⓞ "O-o")
2475 (?\Ⓟ "P-o")
2476 (?\Ⓠ "Q-o")
2477 (?\Ⓡ "R-o")
2478 (?\Ⓢ "S-o")
2479 (?\Ⓣ "T-o")
2480 (?\Ⓤ "U-o")
2481 (?\Ⓥ "V-o")
2482 (?\Ⓦ "W-o")
2483 (?\Ⓧ "X-o")
2484 (?\Ⓨ "Y-o")
2485 (?\Ⓩ "Z-o")
2486 (?\ⓐ "a-o")
2487 (?\ⓑ "b-o")
2488 (?\ⓒ "c-o")
2489 (?\ⓓ "d-o")
2490 (?\ⓔ "e-o")
2491 (?\ⓕ "f-o")
2492 (?\ⓖ "g-o")
2493 (?\ⓗ "h-o")
2494 (?\ⓘ "i-o")
2495 (?\ⓙ "j-o")
2496 (?\ⓚ "k-o")
2497 (?\ⓛ "l-o")
2498 (?\ⓜ "m-o")
2499 (?\ⓝ "n-o")
2500 (?\ⓞ "o-o")
2501 (?\ⓟ "p-o")
2502 (?\ⓠ "q-o")
2503 (?\ⓡ "r-o")
2504 (?\ⓢ "s-o")
2505 (?\ⓣ "t-o")
2506 (?\ⓤ "u-o")
2507 (?\ⓥ "v-o")
2508 (?\ⓦ "w-o")
2509 (?\ⓧ "x-o")
2510 (?\ⓨ "y-o")
2511 (?\ⓩ "z-o")
2512 (?\⓪ "0-o")
2513 (?\─ "-")
2514 (?\━ "=")
2515 (?\│ "|")
2516 (?\┃ "|")
2517 (?\┄ "-")
2518 (?\┅ "=")
2519 (?\┆ "|")
2520 (?\┇ "|")
2521 (?\┈ "-")
2522 (?\┉ "=")
2523 (?\┊ "|")
2524 (?\┋ "|")
2525 (?\┌ "+")
2526 (?\┍ "+")
2527 (?\┎ "+")
2528 (?\┏ "+")
2529 (?\┐ "+")
2530 (?\┑ "+")
2531 (?\┒ "+")
2532 (?\┓ "+")
2533 (?\└ "+")
2534 (?\┕ "+")
2535 (?\┖ "+")
2536 (?\┗ "+")
2537 (?\┘ "+")
2538 (?\┙ "+")
2539 (?\┚ "+")
2540 (?\┛ "+")
2541 (?\├ "+")
2542 (?\┝ "+")
2543 (?\┞ "+")
2544 (?\┟ "+")
2545 (?\┠ "+")
2546 (?\┡ "+")
2547 (?\┢ "+")
2548 (?\┣ "+")
2549 (?\┤ "+")
2550 (?\┥ "+")
2551 (?\┦ "+")
2552 (?\┧ "+")
2553 (?\┨ "+")
2554 (?\┩ "+")
2555 (?\┪ "+")
2556 (?\┫ "+")
2557 (?\┬ "+")
2558 (?\┭ "+")
2559 (?\┮ "+")
2560 (?\┯ "+")
2561 (?\┰ "+")
2562 (?\┱ "+")
2563 (?\┲ "+")
2564 (?\┳ "+")
2565 (?\┴ "+")
2566 (?\┵ "+")
2567 (?\┶ "+")
2568 (?\┷ "+")
2569 (?\┸ "+")
2570 (?\┹ "+")
2571 (?\┺ "+")
2572 (?\┻ "+")
2573 (?\┼ "+")
2574 (?\┽ "+")
2575 (?\┾ "+")
2576 (?\┿ "+")
2577 (?\╀ "+")
2578 (?\╁ "+")
2579 (?\╂ "+")
2580 (?\╃ "+")
2581 (?\╄ "+")
2582 (?\╅ "+")
2583 (?\╆ "+")
2584 (?\╇ "+")
2585 (?\╈ "+")
2586 (?\╉ "+")
2587 (?\╊ "+")
2588 (?\╋ "+")
2589 (?\╌ "+")
2590 (?\╍ "+")
2591 (?\╎ "+")
2592 (?\╏ "+")
2593 (?\═ "+")
2594 (?\║ "+")
2595 (?\╒ "+")
2596 (?\╓ "+")
2597 (?\╔ "+")
2598 (?\╕ "+")
2599 (?\╖ "+")
2600 (?\╗ "+")
2601 (?\╘ "+")
2602 (?\╙ "+")
2603 (?\╚ "+")
2604 (?\╛ "+")
2605 (?\╜ "+")
2606 (?\╝ "+")
2607 (?\╞ "+")
2608 (?\╟ "+")
2609 (?\╠ "+")
2610 (?\╡ "+")
2611 (?\╢ "+")
2612 (?\╣ "+")
2613 (?\╤ "+")
2614 (?\╥ "+")
2615 (?\╦ "+")
2616 (?\╧ "+")
2617 (?\╨ "+")
2618 (?\╩ "+")
2619 (?\╪ "+")
2620 (?\╫ "+")
2621 (?\╬ "+")
2622 (?\╱ "/")
2623 (?\╲ "\\")
2624 (?\▀ "TB")
2625 (?\▄ "LB")
2626 (?\█ "FB")
2627 (?\▌ "lB")
2628 (?\▐ "RB")
2629 (?\░ ".S")
2630 (?\▒ ":S")
2631 (?\▓ "?S")
2632 (?\■ "fS")
2633 (?\□ "OS")
2634 (?\▢ "RO")
2635 (?\▣ "Rr")
2636 (?\▤ "RF")
2637 (?\▥ "RY")
2638 (?\▦ "RH")
2639 (?\▧ "RZ")
2640 (?\▨ "RK")
2641 (?\▩ "RX")
2642 (?\▪ "sB")
2643 (?\▬ "SR")
2644 (?\▭ "Or")
2645 (?\▲ "^")
2646 (?\△ "uT")
2647 (?\▶ "|>")
2648 (?\▷ "Tr")
2649 (?\► "|>")
2650 (?\▼ "v")
2651 (?\▽ "dT")
2652 (?\◀ "<|")
2653 (?\◁ "Tl")
2654 (?\◄ "<|")
2655 (?\◆ "Db")
2656 (?\◇ "Dw")
2657 (?\◊ "LZ")
2658 (?\○ "0m")
2659 (?\◎ "0o")
2660 (?\● "0M")
2661 (?\◐ "0L")
2662 (?\◑ "0R")
2663 (?\◘ "Sn")
2664 (?\◙ "Ic")
2665 (?\◢ "Fd")
2666 (?\◣ "Bd")
2667 (?\◯ "Ci")
2668 (?\★ "*2")
2669 (?\☆ "*1")
2670 (?\☎ "TEL")
2671 (?\☏ "tel")
2672 (?\☜ "<--")
2673 (?\☞ "-->")
2674 (?\☡ "CAUTION ")
2675 (?\☧ "XP")
2676 (?\☹ ":-(")
2677 (?\☺ ":-)")
2678 (?\☻ "(-:")
2679 (?\☼ "SU")
2680 (?\♀ "f.")
2681 (?\♂ "m.")
2682 (?\♠ "cS")
2683 (?\♡ "cH")
2684 (?\♢ "cD")
2685 (?\♣ "cC")
2686 (?\♤ "cS-")
2687 (?\♥ "cH-")
2688 (?\♦ "cD-")
2689 (?\♧ "cC-")
2690 (?\♩ "Md")
2691 (?\♪ "M8")
2692 (?\♫ "M2")
2693 (?\♬ "M16")
2694 (?\♭ "b")
2695 (?\♮ "Mx")
2696 (?\♯ "#")
2697 (?\✓ "X")
2698 (?\✗ "X")
2699 (?\✠ "-X")
2700 (?\  " ")
2701 (?\、 ",_")
2702 (?\。 "._")
2703 (?\〃 "+\"")
2704 (?\〄 "JIS")
2705 (?\々 "*_")
2706 (?\〆 ";_")
2707 (?\〇 "0_")
2708 (?\《 "<+")
2709 (?\》 ">+")
2710 (?\「 "<'")
2711 (?\」 ">'")
2712 (?\『 "<\"")
2713 (?\』 ">\"")
2714 (?\【 "(\"")
2715 (?\】 ")\"")
2716 (?\〒 "=T")
2717 (?\〓 "=_")
2718 (?\〔 "('")
2719 (?\〕 ")'")
2720 (?\〖 "(I")
2721 (?\〗 ")I")
2722 (?\〚 "[[")
2723 (?\〛 "]]")
2724 (?\〜 "-?")
2725 (?\〠 "=T:)")
2726 (?\〿 " ")
2727 (?\ぁ "A5")
2728 (?\あ "a5")
2729 (?\ぃ "I5")
2730 (?\い "i5")
2731 (?\ぅ "U5")
2732 (?\う "u5")
2733 (?\ぇ "E5")
2734 (?\え "e5")
2735 (?\ぉ "O5")
2736 (?\お "o5")
2737 (?\か "ka")
2738 (?\が "ga")
2739 (?\き "ki")
2740 (?\ぎ "gi")
2741 (?\く "ku")
2742 (?\ぐ "gu")
2743 (?\け "ke")
2744 (?\げ "ge")
2745 (?\こ "ko")
2746 (?\ご "go")
2747 (?\さ "sa")
2748 (?\ざ "za")
2749 (?\し "si")
2750 (?\じ "zi")
2751 (?\す "su")
2752 (?\ず "zu")
2753 (?\せ "se")
2754 (?\ぜ "ze")
2755 (?\そ "so")
2756 (?\ぞ "zo")
2757 (?\た "ta")
2758 (?\だ "da")
2759 (?\ち "ti")
2760 (?\ぢ "di")
2761 (?\っ "tU")
2762 (?\つ "tu")
2763 (?\づ "du")
2764 (?\て "te")
2765 (?\で "de")
2766 (?\と "to")
2767 (?\ど "do")
2768 (?\な "na")
2769 (?\に "ni")
2770 (?\ぬ "nu")
2771 (?\ね "ne")
2772 (?\の "no")
2773 (?\は "ha")
2774 (?\ば "ba")
2775 (?\ぱ "pa")
2776 (?\ひ "hi")
2777 (?\び "bi")
2778 (?\ぴ "pi")
2779 (?\ふ "hu")
2780 (?\ぶ "bu")
2781 (?\ぷ "pu")
2782 (?\へ "he")
2783 (?\べ "be")
2784 (?\ぺ "pe")
2785 (?\ほ "ho")
2786 (?\ぼ "bo")
2787 (?\ぽ "po")
2788 (?\ま "ma")
2789 (?\み "mi")
2790 (?\む "mu")
2791 (?\め "me")
2792 (?\も "mo")
2793 (?\ゃ "yA")
2794 (?\や "ya")
2795 (?\ゅ "yU")
2796 (?\ゆ "yu")
2797 (?\ょ "yO")
2798 (?\よ "yo")
2799 (?\ら "ra")
2800 (?\り "ri")
2801 (?\る "ru")
2802 (?\れ "re")
2803 (?\ろ "ro")
2804 (?\ゎ "wA")
2805 (?\わ "wa")
2806 (?\ゐ "wi")
2807 (?\ゑ "we")
2808 (?\を "wo")
2809 (?\ん "n5")
2810 (?\ゔ "vu")
2811 (?\゛ "\"5")
2812 (?\゜ "05")
2813 (?\ゝ "*5")
2814 (?\ゞ "+5")
2815 (?\ァ "a6")
2816 (?\ア "A6")
2817 (?\ィ "i6")
2818 (?\イ "I6")
2819 (?\ゥ "u6")
2820 (?\ウ "U6")
2821 (?\ェ "e6")
2822 (?\エ "E6")
2823 (?\ォ "o6")
2824 (?\オ "O6")
2825 (?\カ "Ka")
2826 (?\ガ "Ga")
2827 (?\キ "Ki")
2828 (?\ギ "Gi")
2829 (?\ク "Ku")
2830 (?\グ "Gu")
2831 (?\ケ "Ke")
2832 (?\ゲ "Ge")
2833 (?\コ "Ko")
2834 (?\ゴ "Go")
2835 (?\サ "Sa")
2836 (?\ザ "Za")
2837 (?\シ "Si")
2838 (?\ジ "Zi")
2839 (?\ス "Su")
2840 (?\ズ "Zu")
2841 (?\セ "Se")
2842 (?\ゼ "Ze")
2843 (?\ソ "So")
2844 (?\ゾ "Zo")
2845 (?\タ "Ta")
2846 (?\ダ "Da")
2847 (?\チ "Ti")
2848 (?\ヂ "Di")
2849 (?\ッ "TU")
2850 (?\ツ "Tu")
2851 (?\ヅ "Du")
2852 (?\テ "Te")
2853 (?\デ "De")
2854 (?\ト "To")
2855 (?\ド "Do")
2856 (?\ナ "Na")
2857 (?\ニ "Ni")
2858 (?\ヌ "Nu")
2859 (?\ネ "Ne")
2860 (?\ノ "No")
2861 (?\ハ "Ha")
2862 (?\バ "Ba")
2863 (?\パ "Pa")
2864 (?\ヒ "Hi")
2865 (?\ビ "Bi")
2866 (?\ピ "Pi")
2867 (?\フ "Hu")
2868 (?\ブ "Bu")
2869 (?\プ "Pu")
2870 (?\ヘ "He")
2871 (?\ベ "Be")
2872 (?\ペ "Pe")
2873 (?\ホ "Ho")
2874 (?\ボ "Bo")
2875 (?\ポ "Po")
2876 (?\マ "Ma")
2877 (?\ミ "Mi")
2878 (?\ム "Mu")
2879 (?\メ "Me")
2880 (?\モ "Mo")
2881 (?\ャ "YA")
2882 (?\ヤ "Ya")
2883 (?\ュ "YU")
2884 (?\ユ "Yu")
2885 (?\ョ "YO")
2886 (?\ヨ "Yo")
2887 (?\ラ "Ra")
2888 (?\リ "Ri")
2889 (?\ル "Ru")
2890 (?\レ "Re")
2891 (?\ロ "Ro")
2892 (?\ヮ "WA")
2893 (?\ワ "Wa")
2894 (?\ヰ "Wi")
2895 (?\ヱ "We")
2896 (?\ヲ "Wo")
2897 (?\ン "N6")
2898 (?\ヴ "Vu")
2899 (?\ヵ "KA")
2900 (?\ヶ "KE")
2901 (?\ヷ "Va")
2902 (?\ヸ "Vi")
2903 (?\ヹ "Ve")
2904 (?\ヺ "Vo")
2905 (?\・ ".6")
2906 (?\ー "-6")
2907 (?\ヽ "*6")
2908 (?\ヾ "+6")
2909 (?\ㄅ "b4")
2910 (?\ㄆ "p4")
2911 (?\ㄇ "m4")
2912 (?\ㄈ "f4")
2913 (?\ㄉ "d4")
2914 (?\ㄊ "t4")
2915 (?\ㄋ "n4")
2916 (?\ㄌ "l4")
2917 (?\ㄍ "g4")
2918 (?\ㄎ "k4")
2919 (?\ㄏ "h4")
2920 (?\ㄐ "j4")
2921 (?\ㄑ "q4")
2922 (?\ㄒ "x4")
2923 (?\ㄓ "zh")
2924 (?\ㄔ "ch")
2925 (?\ㄕ "sh")
2926 (?\ㄖ "r4")
2927 (?\ㄗ "z4")
2928 (?\ㄘ "c4")
2929 (?\ㄙ "s4")
2930 (?\ㄚ "a4")
2931 (?\ㄛ "o4")
2932 (?\ㄜ "e4")
2933 (?\ㄝ "eh4")
2934 (?\ㄞ "ai")
2935 (?\ㄟ "ei")
2936 (?\ㄠ "au")
2937 (?\ㄡ "ou")
2938 (?\ㄢ "an")
2939 (?\ㄣ "en")
2940 (?\ㄤ "aN")
2941 (?\ㄥ "eN")
2942 (?\ㄦ "er")
2943 (?\ㄧ "i4")
2944 (?\ㄨ "u4")
2945 (?\ㄩ "iu")
2946 (?\ㄪ "v4")
2947 (?\ㄫ "nG")
2948 (?\ㄬ "gn")
2949 (?\㈜ "(JU)")
2950 (?\㈠ "1c")
2951 (?\㈡ "2c")
2952 (?\㈢ "3c")
2953 (?\㈣ "4c")
2954 (?\㈤ "5c")
2955 (?\㈥ "6c")
2956 (?\㈦ "7c")
2957 (?\㈧ "8c")
2958 (?\㈨ "9c")
2959 (?\㈩ "10c")
2960 (?\㉿ "KSC")
2961 (?\㏂ "am")
2962 (?\㏘ "pm")
2963 (?\ff "ff")
2964 (?\fi "fi")
2965 (?\fl "fl")
2966 (?\ffi "ffi")
2967 (?\ffl "ffl")
2968 (?\ſt "St")
2969 (?\st "st")
2970 (?\ﹽ "3+;")
2971 (?\ﺂ "aM.")
2972 (?\ﺄ "aH.")
2973 (?\ﺈ "ah.")
2974 (?\ﺍ "a+-")
2975 (?\ﺎ "a+.")
2976 (?\ﺏ "b+-")
2977 (?\ﺐ "b+.")
2978 (?\ﺑ "b+,")
2979 (?\ﺒ "b+;")
2980 (?\ﺓ "tm-")
2981 (?\ﺔ "tm.")
2982 (?\ﺕ "t+-")
2983 (?\ﺖ "t+.")
2984 (?\ﺗ "t+,")
2985 (?\ﺘ "t+;")
2986 (?\ﺙ "tk-")
2987 (?\ﺚ "tk.")
2988 (?\ﺛ "tk,")
2989 (?\ﺜ "tk;")
2990 (?\ﺝ "g+-")
2991 (?\ﺞ "g+.")
2992 (?\ﺟ "g+,")
2993 (?\ﺠ "g+;")
2994 (?\ﺡ "hk-")
2995 (?\ﺢ "hk.")
2996 (?\ﺣ "hk,")
2997 (?\ﺤ "hk;")
2998 (?\ﺥ "x+-")
2999 (?\ﺦ "x+.")
3000 (?\ﺧ "x+,")
3001 (?\ﺨ "x+;")
3002 (?\ﺩ "d+-")
3003 (?\ﺪ "d+.")
3004 (?\ﺫ "dk-")
3005 (?\ﺬ "dk.")
3006 (?\ﺭ "r+-")
3007 (?\ﺮ "r+.")
3008 (?\ﺯ "z+-")
3009 (?\ﺰ "z+.")
3010 (?\ﺱ "s+-")
3011 (?\ﺲ "s+.")
3012 (?\ﺳ "s+,")
3013 (?\ﺴ "s+;")
3014 (?\ﺵ "sn-")
3015 (?\ﺶ "sn.")
3016 (?\ﺷ "sn,")
3017 (?\ﺸ "sn;")
3018 (?\ﺹ "c+-")
3019 (?\ﺺ "c+.")
3020 (?\ﺻ "c+,")
3021 (?\ﺼ "c+;")
3022 (?\ﺽ "dd-")
3023 (?\ﺾ "dd.")
3024 (?\ﺿ "dd,")
3025 (?\ﻀ "dd;")
3026 (?\ﻁ "tj-")
3027 (?\ﻂ "tj.")
3028 (?\ﻃ "tj,")
3029 (?\ﻄ "tj;")
3030 (?\ﻅ "zH-")
3031 (?\ﻆ "zH.")
3032 (?\ﻇ "zH,")
3033 (?\ﻈ "zH;")
3034 (?\ﻉ "e+-")
3035 (?\ﻊ "e+.")
3036 (?\ﻋ "e+,")
3037 (?\ﻌ "e+;")
3038 (?\ﻍ "i+-")
3039 (?\ﻎ "i+.")
3040 (?\ﻏ "i+,")
3041 (?\ﻐ "i+;")
3042 (?\ﻑ "f+-")
3043 (?\ﻒ "f+.")
3044 (?\ﻓ "f+,")
3045 (?\ﻔ "f+;")
3046 (?\ﻕ "q+-")
3047 (?\ﻖ "q+.")
3048 (?\ﻗ "q+,")
3049 (?\ﻘ "q+;")
3050 (?\ﻙ "k+-")
3051 (?\ﻚ "k+.")
3052 (?\ﻛ "k+,")
3053 (?\ﻜ "k+;")
3054 (?\ﻝ "l+-")
3055 (?\ﻞ "l+.")
3056 (?\ﻟ "l+,")
3057 (?\ﻠ "l+;")
3058 (?\ﻡ "m+-")
3059 (?\ﻢ "m+.")
3060 (?\ﻣ "m+,")
3061 (?\ﻤ "m+;")
3062 (?\ﻥ "n+-")
3063 (?\ﻦ "n+.")
3064 (?\ﻧ "n+,")
3065 (?\ﻨ "n+;")
3066 (?\ﻩ "h+-")
3067 (?\ﻪ "h+.")
3068 (?\ﻫ "h+,")
3069 (?\ﻬ "h+;")
3070 (?\ﻭ "w+-")
3071 (?\ﻮ "w+.")
3072 (?\ﻯ "j+-")
3073 (?\ﻰ "j+.")
3074 (?\ﻱ "y+-")
3075 (?\ﻲ "y+.")
3076 (?\ﻳ "y+,")
3077 (?\ﻴ "y+;")
3078 (?\ﻵ "lM-")
3079 (?\ﻶ "lM.")
3080 (?\ﻷ "lH-")
3081 (?\ﻸ "lH.")
3082 (?\ﻹ "lh-")
3083 (?\ﻺ "lh.")
3084 (?\ﻻ "la-")
3085 (?\ﻼ "la.")
3086 (?\! "!")
3087 (?\" "\"")
3088 (?\# "#")
3089 (?\$ "$")
3090 (?\% "%")
3091 (?\& "&")
3092 (?\' "'")
3093 (?\( "(")
3094 (?\) ")")
3095 (?\* "*")
3096 (?\+ "+")
3097 (?\, ",")
3098 (?\- "-")
3099 (?\. ".")
3100 (?\/ "/")
3101 (?\0 "0")
3102 (?\1 "1")
3103 (?\2 "2")
3104 (?\3 "3")
3105 (?\4 "4")
3106 (?\5 "5")
3107 (?\6 "6")
3108 (?\7 "7")
3109 (?\8 "8")
3110 (?\9 "9")
3111 (?\: ":")
3112 (?\; ";")
3113 (?\< "<")
3114 (?\= "=")
3115 (?\> ">")
3116 (?\? "?")
3117 (?\@ "@")
3118 (?\A "A")
3119 (?\B "B")
3120 (?\C "C")
3121 (?\D "D")
3122 (?\E "E")
3123 (?\F "F")
3124 (?\G "G")
3125 (?\H "H")
3126 (?\I "I")
3127 (?\J "J")
3128 (?\K "K")
3129 (?\L "L")
3130 (?\M "M")
3131 (?\N "N")
3132 (?\O "O")
3133 (?\P "P")
3134 (?\Q "Q")
3135 (?\R "R")
3136 (?\S "S")
3137 (?\T "T")
3138 (?\U "U")
3139 (?\V "V")
3140 (?\W "W")
3141 (?\X "X")
3142 (?\Y "Y")
3143 (?\Z "Z")
3144 (?\[ "[")
3145 (?\\ "\\")
3146 (?\] "]")
3147 (?\^ "^")
3148 (?\_ "_")
3149 (?\` "`")
3150 (?\a "a")
3151 (?\b "b")
3152 (?\c "c")
3153 (?\d "d")
3154 (?\e "e")
3155 (?\f "f")
3156 (?\g "g")
3157 (?\h "h")
3158 (?\i "i")
3159 (?\j "j")
3160 (?\k "k")
3161 (?\l "l")
3162 (?\m "m")
3163 (?\n "n")
3164 (?\o "o")
3165 (?\p "p")
3166 (?\q "q")
3167 (?\r "r")
3168 (?\s "s")
3169 (?\t "t")
3170 (?\u "u")
3171 (?\v "v")
3172 (?\w "w")
3173 (?\x "x")
3174 (?\y "y")
3175 (?\z "z")
3176 (?\{ "{")
3177 (?\| "|")
3178 (?\} "}")
3179 (?\~ "~")
3180 (?\。 ".")
3181 (?\「 "\"")
3182 (?\」 "\"")
3183 (?\、 ",")
3184 ;; Not from Lynx
3185 (? "")
3186 (?� "?")))))
3187 (aset standard-display-table
3188 (make-char 'mule-unicode-0100-24ff) nil)
3189 (aset standard-display-table
3190 (make-char 'mule-unicode-2500-33ff) nil)
3191 (aset standard-display-table
3192 (make-char 'mule-unicode-e000-ffff) nil))
3193 (setq latin1-display-ucs-per-lynx (not latin1-display-ucs-per-lynx))
3194 (redraw-display))
3196 (provide 'latin1-disp)
3198 ;;; latin1-disp.el ends here