This commit is contained in:
Stas Degteff 2005-12-25 17:45:19 +00:00
parent b0b1e699b2
commit 6c78933330
5 changed files with 1450 additions and 1450 deletions

View File

@ -1,285 +1,285 @@
; $Id$ ; $Id$
; This file is a charset conversion module for Golded+ ; This file is a charset conversion module for Golded+
; Source charset is CP866 (MS OEM), 8-bit russian charset (DOS) ; Source charset is CP866 (MS OEM), 8-bit russian charset (DOS)
; Destination charset is KOI-7 (KOI7), 7-bit russian charset (unixes) ; Destination charset is KOI-7 (KOI7), 7-bit russian charset (unixes)
; ;
; Copyleft (c) Stas Degteff 2:5080/102@fidonet stas_degteff@users.sourceforge.net ; Copyleft (c) Stas Degteff 2:5080/102@fidonet stas_degteff@users.sourceforge.net
; ;
; Format: ID, version, level, ; Format: ID, version, level,
; from charset, to charset, ; from charset, to charset,
; 128 entries: first & second byte ; 128 entries: first & second byte
; "END" ; "END"
; Lines beginning with a ";" or a ";" after the entries are comments ; Lines beginning with a ";" or a ";" after the entries are comments
; ;
; Unkown characters are mapped to the "?" character. ; Unkown characters are mapped to the "?" character.
; ;
; \ is the escape character: \0 means decimal zero, ; \ is the escape character: \0 means decimal zero,
; \dnnn where nnn is a decimal number is the ordinal value of the character ; \dnnn where nnn is a decimal number is the ordinal value of the character
; \xnn where nn is a hexadecimal number ; \xnn where nn is a hexadecimal number
; e.g.: \d32 is the ASCII space character ; e.g.: \d32 is the ASCII space character
; Two \\ is the character "\" itself. ; Two \\ is the character "\" itself.
; ;
0 0
0 0
; ;
1 1
CP866 ; from charset CP866 ; from charset
KOI-7 ; to charset KOI-7 ; to charset
; ;
\0 \x0 ; <control> \0 \x0 ; <control>
\0 \x1 ; <control> \0 \x1 ; <control>
\0 \x2 ; <control> \0 \x2 ; <control>
\0 \x3 ; <control> \0 \x3 ; <control>
\0 \x4 ; <control> \0 \x4 ; <control>
\0 \x5 ; <control> \0 \x5 ; <control>
\0 \x6 ; <control> \0 \x6 ; <control>
\0 \x7 ; <control> \0 \x7 ; <control>
\0 \x8 ; <control> \0 \x8 ; <control>
\0 \x9 ; <control> \0 \x9 ; <control>
\0 \xa ; <control> \0 \xa ; <control>
\0 \xb ; <control> \0 \xb ; <control>
\0 \xc ; <control> \0 \xc ; <control>
\0 \xd ; <control> \0 \xd ; <control>
\0 \xe ; <control> \0 \xe ; <control>
\0 \xf ; <control> \0 \xf ; <control>
\0 \x10 ; <control> \0 \x10 ; <control>
\0 \x11 ; <control> \0 \x11 ; <control>
\0 \x12 ; <control> \0 \x12 ; <control>
\0 \x13 ; <control> \0 \x13 ; <control>
\0 \x14 ; <control> \0 \x14 ; <control>
\0 \x15 ; <control> \0 \x15 ; <control>
\0 \x16 ; <control> \0 \x16 ; <control>
\0 \x17 ; <control> \0 \x17 ; <control>
\0 \x18 ; <control> \0 \x18 ; <control>
\0 \x19 ; <control> \0 \x19 ; <control>
\0 \x1a ; <control> \0 \x1a ; <control>
\0 \x1b ; <control> \0 \x1b ; <control>
\0 \x1c ; <control> \0 \x1c ; <control>
\0 \x1d ; <control> \0 \x1d ; <control>
\0 \x1e ; <control> \0 \x1e ; <control>
\0 \x1f ; <control> \0 \x1f ; <control>
\0 \x20 ; SPACE \0 \x20 ; SPACE
\0 \x21 ; EXCLAMATION MARK \0 \x21 ; EXCLAMATION MARK
\0 \x22 ; QUOTATION MARK \0 \x22 ; QUOTATION MARK
\0 \x23 ; NUMBER SIGN \0 \x23 ; NUMBER SIGN
\0 \x24 ; (DOLLAR SIGN -> CURRENCY SIGN) \0 \x24 ; (DOLLAR SIGN -> CURRENCY SIGN)
\0 \x25 ; PERCENT SIGN \0 \x25 ; PERCENT SIGN
\0 \x26 ; AMPERSAND \0 \x26 ; AMPERSAND
\0 \x27 ; APOSTROPHE \0 \x27 ; APOSTROPHE
\0 \x28 ; LEFT PARENTHESIS \0 \x28 ; LEFT PARENTHESIS
\0 \x29 ; RIGHT PARENTHESIS \0 \x29 ; RIGHT PARENTHESIS
\0 \x2a ; ASTERISK \0 \x2a ; ASTERISK
\0 \x2b ; PLUS SIGN \0 \x2b ; PLUS SIGN
\0 \x2c ; COMMA \0 \x2c ; COMMA
\0 \x2d ; HYPHEN-MINUS \0 \x2d ; HYPHEN-MINUS
\0 \x2e ; FULL STOP \0 \x2e ; FULL STOP
\0 \x2f ; SOLIDUS \0 \x2f ; SOLIDUS
\0 \x30 ; DIGIT ZERO \0 \x30 ; DIGIT ZERO
\0 \x31 ; DIGIT ONE \0 \x31 ; DIGIT ONE
\0 \x32 ; DIGIT TWO \0 \x32 ; DIGIT TWO
\0 \x33 ; DIGIT THREE \0 \x33 ; DIGIT THREE
\0 \x34 ; DIGIT FOUR \0 \x34 ; DIGIT FOUR
\0 \x35 ; DIGIT FIVE \0 \x35 ; DIGIT FIVE
\0 \x36 ; DIGIT SIX \0 \x36 ; DIGIT SIX
\0 \x37 ; DIGIT SEVEN \0 \x37 ; DIGIT SEVEN
\0 \x38 ; DIGIT EIGHT \0 \x38 ; DIGIT EIGHT
\0 \x39 ; DIGIT NINE \0 \x39 ; DIGIT NINE
\0 \x3a ; COLON \0 \x3a ; COLON
\0 \x3b ; SEMICOLON \0 \x3b ; SEMICOLON
\0 \x3c ; LESS-THAN SIGN \0 \x3c ; LESS-THAN SIGN
\0 \x3d ; EQUALS SIGN \0 \x3d ; EQUALS SIGN
\0 \x3e ; GREATER-THAN SIGN \0 \x3e ; GREATER-THAN SIGN
\0 \x3f ; QUESTION MARK \0 \x3f ; QUESTION MARK
\0 \x40 ; COMMERCIAL AT \0 \x40 ; COMMERCIAL AT
\0 \x41 ; LATIN CAPITAL LETTER A \0 \x41 ; LATIN CAPITAL LETTER A
\0 \x42 ; LATIN CAPITAL LETTER B \0 \x42 ; LATIN CAPITAL LETTER B
\0 \x43 ; LATIN CAPITAL LETTER C \0 \x43 ; LATIN CAPITAL LETTER C
\0 \x44 ; LATIN CAPITAL LETTER D \0 \x44 ; LATIN CAPITAL LETTER D
\0 \x45 ; LATIN CAPITAL LETTER E \0 \x45 ; LATIN CAPITAL LETTER E
\0 \x46 ; LATIN CAPITAL LETTER F \0 \x46 ; LATIN CAPITAL LETTER F
\0 \x47 ; LATIN CAPITAL LETTER G \0 \x47 ; LATIN CAPITAL LETTER G
\0 \x48 ; LATIN CAPITAL LETTER H \0 \x48 ; LATIN CAPITAL LETTER H
\0 \x49 ; LATIN CAPITAL LETTER I \0 \x49 ; LATIN CAPITAL LETTER I
\0 \x4a ; LATIN CAPITAL LETTER J \0 \x4a ; LATIN CAPITAL LETTER J
\0 \x4b ; LATIN CAPITAL LETTER K \0 \x4b ; LATIN CAPITAL LETTER K
\0 \x4c ; LATIN CAPITAL LETTER L \0 \x4c ; LATIN CAPITAL LETTER L
\0 \x4d ; LATIN CAPITAL LETTER M \0 \x4d ; LATIN CAPITAL LETTER M
\0 \x4e ; LATIN CAPITAL LETTER N \0 \x4e ; LATIN CAPITAL LETTER N
\0 \x4f ; LATIN CAPITAL LETTER O \0 \x4f ; LATIN CAPITAL LETTER O
\0 \x50 ; LATIN CAPITAL LETTER P \0 \x50 ; LATIN CAPITAL LETTER P
\0 \x51 ; LATIN CAPITAL LETTER Q \0 \x51 ; LATIN CAPITAL LETTER Q
\0 \x52 ; LATIN CAPITAL LETTER R \0 \x52 ; LATIN CAPITAL LETTER R
\0 \x53 ; LATIN CAPITAL LETTER S \0 \x53 ; LATIN CAPITAL LETTER S
\0 \x54 ; LATIN CAPITAL LETTER T \0 \x54 ; LATIN CAPITAL LETTER T
\0 \x55 ; LATIN CAPITAL LETTER U \0 \x55 ; LATIN CAPITAL LETTER U
\0 \x56 ; LATIN CAPITAL LETTER V \0 \x56 ; LATIN CAPITAL LETTER V
\0 \x57 ; LATIN CAPITAL LETTER W \0 \x57 ; LATIN CAPITAL LETTER W
\0 \x58 ; LATIN CAPITAL LETTER X \0 \x58 ; LATIN CAPITAL LETTER X
\0 \x59 ; LATIN CAPITAL LETTER Y \0 \x59 ; LATIN CAPITAL LETTER Y
\0 \x5a ; LATIN CAPITAL LETTER Z \0 \x5a ; LATIN CAPITAL LETTER Z
\0 \x5b ; LEFT SQUARE BRACKET \0 \x5b ; LEFT SQUARE BRACKET
\0 \x5c ; REVERSE SOLIDUS \0 \x5c ; REVERSE SOLIDUS
\0 \x5d ; RIGHT SQUARE BRACKET \0 \x5d ; RIGHT SQUARE BRACKET
\0 \x5e ; CIRCUMFLEX ACCENT \0 \x5e ; CIRCUMFLEX ACCENT
\0 \x5f ; LOW LINE \0 \x5f ; LOW LINE
\0 ? ; (GRAVE ACCENT) \0 ? ; (GRAVE ACCENT)
\0 \x41 ; (LATIN SMALL LETTER A -> LATIN CAPITAL LETTER A) \0 \x41 ; (LATIN SMALL LETTER A -> LATIN CAPITAL LETTER A)
\0 \x42 ; (LATIN SMALL LETTER B -> LATIN CAPITAL LETTER B) \0 \x42 ; (LATIN SMALL LETTER B -> LATIN CAPITAL LETTER B)
\0 \x43 ; (LATIN SMALL LETTER C -> LATIN CAPITAL LETTER C) \0 \x43 ; (LATIN SMALL LETTER C -> LATIN CAPITAL LETTER C)
\0 \x44 ; (LATIN SMALL LETTER D -> LATIN CAPITAL LETTER D) \0 \x44 ; (LATIN SMALL LETTER D -> LATIN CAPITAL LETTER D)
\0 \x45 ; (LATIN SMALL LETTER E -> LATIN CAPITAL LETTER E) \0 \x45 ; (LATIN SMALL LETTER E -> LATIN CAPITAL LETTER E)
\0 \x46 ; (LATIN SMALL LETTER F -> LATIN CAPITAL LETTER F) \0 \x46 ; (LATIN SMALL LETTER F -> LATIN CAPITAL LETTER F)
\0 \x47 ; (LATIN SMALL LETTER G -> LATIN CAPITAL LETTER G) \0 \x47 ; (LATIN SMALL LETTER G -> LATIN CAPITAL LETTER G)
\0 \x48 ; (LATIN SMALL LETTER H -> LATIN CAPITAL LETTER H) \0 \x48 ; (LATIN SMALL LETTER H -> LATIN CAPITAL LETTER H)
\0 \x49 ; (LATIN SMALL LETTER I -> LATIN CAPITAL LETTER I) \0 \x49 ; (LATIN SMALL LETTER I -> LATIN CAPITAL LETTER I)
\0 \x4a ; (LATIN SMALL LETTER J -> LATIN CAPITAL LETTER J) \0 \x4a ; (LATIN SMALL LETTER J -> LATIN CAPITAL LETTER J)
\0 \x4b ; (LATIN SMALL LETTER K -> LATIN CAPITAL LETTER K) \0 \x4b ; (LATIN SMALL LETTER K -> LATIN CAPITAL LETTER K)
\0 \x4c ; (LATIN SMALL LETTER L -> LATIN CAPITAL LETTER L) \0 \x4c ; (LATIN SMALL LETTER L -> LATIN CAPITAL LETTER L)
\0 \x4d ; (LATIN SMALL LETTER M -> LATIN CAPITAL LETTER M) \0 \x4d ; (LATIN SMALL LETTER M -> LATIN CAPITAL LETTER M)
\0 \x4e ; (LATIN SMALL LETTER N -> LATIN CAPITAL LETTER N) \0 \x4e ; (LATIN SMALL LETTER N -> LATIN CAPITAL LETTER N)
\0 \x4f ; (LATIN SMALL LETTER O -> LATIN CAPITAL LETTER O) \0 \x4f ; (LATIN SMALL LETTER O -> LATIN CAPITAL LETTER O)
\0 \x50 ; (LATIN SMALL LETTER P -> LATIN CAPITAL LETTER P) \0 \x50 ; (LATIN SMALL LETTER P -> LATIN CAPITAL LETTER P)
\0 \x51 ; (LATIN SMALL LETTER Q -> LATIN CAPITAL LETTER Q) \0 \x51 ; (LATIN SMALL LETTER Q -> LATIN CAPITAL LETTER Q)
\0 \x52 ; (LATIN SMALL LETTER R -> LATIN CAPITAL LETTER R) \0 \x52 ; (LATIN SMALL LETTER R -> LATIN CAPITAL LETTER R)
\0 \x53 ; (LATIN SMALL LETTER S -> LATIN CAPITAL LETTER S) \0 \x53 ; (LATIN SMALL LETTER S -> LATIN CAPITAL LETTER S)
\0 \x54 ; (LATIN SMALL LETTER T -> LATIN CAPITAL LETTER T) \0 \x54 ; (LATIN SMALL LETTER T -> LATIN CAPITAL LETTER T)
\0 \x55 ; (LATIN SMALL LETTER U -> LATIN CAPITAL LETTER U) \0 \x55 ; (LATIN SMALL LETTER U -> LATIN CAPITAL LETTER U)
\0 \x56 ; (LATIN SMALL LETTER V -> LATIN CAPITAL LETTER V) \0 \x56 ; (LATIN SMALL LETTER V -> LATIN CAPITAL LETTER V)
\0 \x57 ; (LATIN SMALL LETTER W -> LATIN CAPITAL LETTER W) \0 \x57 ; (LATIN SMALL LETTER W -> LATIN CAPITAL LETTER W)
\0 \x58 ; (LATIN SMALL LETTER X -> LATIN CAPITAL LETTER X) \0 \x58 ; (LATIN SMALL LETTER X -> LATIN CAPITAL LETTER X)
\0 \x59 ; (LATIN SMALL LETTER Y -> LATIN CAPITAL LETTER Y) \0 \x59 ; (LATIN SMALL LETTER Y -> LATIN CAPITAL LETTER Y)
\0 \x5a ; (LATIN SMALL LETTER Z -> LATIN CAPITAL LETTER Z) \0 \x5a ; (LATIN SMALL LETTER Z -> LATIN CAPITAL LETTER Z)
\0 [ ; (LEFT CURLY BRACKET) \0 [ ; (LEFT CURLY BRACKET)
\0 I ; (VERTICAL LINE) \0 I ; (VERTICAL LINE)
\0 ] ; (RIGHT CURLY BRACKET) \0 ] ; (RIGHT CURLY BRACKET)
\0 ? ; (TILDE) \0 ? ; (TILDE)
\0 \x7f ; <control> \0 \x7f ; <control>
\0 \x61 ; CYRILLIC CAPITAL LETTER A \0 \x61 ; CYRILLIC CAPITAL LETTER A
\0 \x62 ; CYRILLIC CAPITAL LETTER BE \0 \x62 ; CYRILLIC CAPITAL LETTER BE
\0 \x77 ; CYRILLIC CAPITAL LETTER VE \0 \x77 ; CYRILLIC CAPITAL LETTER VE
\0 \x67 ; CYRILLIC CAPITAL LETTER GHE \0 \x67 ; CYRILLIC CAPITAL LETTER GHE
\0 \x64 ; CYRILLIC CAPITAL LETTER DE \0 \x64 ; CYRILLIC CAPITAL LETTER DE
\0 \x65 ; CYRILLIC CAPITAL LETTER IE \0 \x65 ; CYRILLIC CAPITAL LETTER IE
\0 \x76 ; CYRILLIC CAPITAL LETTER ZHE \0 \x76 ; CYRILLIC CAPITAL LETTER ZHE
\0 \x7a ; CYRILLIC CAPITAL LETTER ZE \0 \x7a ; CYRILLIC CAPITAL LETTER ZE
\0 \x69 ; CYRILLIC CAPITAL LETTER I \0 \x69 ; CYRILLIC CAPITAL LETTER I
\0 \x6a ; CYRILLIC CAPITAL LETTER SHORT I \0 \x6a ; CYRILLIC CAPITAL LETTER SHORT I
\0 \x6b ; CYRILLIC CAPITAL LETTER KA \0 \x6b ; CYRILLIC CAPITAL LETTER KA
\0 \x6c ; CYRILLIC CAPITAL LETTER EL \0 \x6c ; CYRILLIC CAPITAL LETTER EL
\0 \x6d ; CYRILLIC CAPITAL LETTER EM \0 \x6d ; CYRILLIC CAPITAL LETTER EM
\0 \x6e ; CYRILLIC CAPITAL LETTER EN \0 \x6e ; CYRILLIC CAPITAL LETTER EN
\0 \x6f ; CYRILLIC CAPITAL LETTER O \0 \x6f ; CYRILLIC CAPITAL LETTER O
\0 \x70 ; CYRILLIC CAPITAL LETTER PE \0 \x70 ; CYRILLIC CAPITAL LETTER PE
\0 \x72 ; CYRILLIC CAPITAL LETTER ER \0 \x72 ; CYRILLIC CAPITAL LETTER ER
\0 \x73 ; CYRILLIC CAPITAL LETTER ES \0 \x73 ; CYRILLIC CAPITAL LETTER ES
\0 \x74 ; CYRILLIC CAPITAL LETTER TE \0 \x74 ; CYRILLIC CAPITAL LETTER TE
\0 \x75 ; CYRILLIC CAPITAL LETTER U \0 \x75 ; CYRILLIC CAPITAL LETTER U
\0 \x66 ; CYRILLIC CAPITAL LETTER EF \0 \x66 ; CYRILLIC CAPITAL LETTER EF
\0 \x68 ; CYRILLIC CAPITAL LETTER HA \0 \x68 ; CYRILLIC CAPITAL LETTER HA
\0 \x63 ; CYRILLIC CAPITAL LETTER TSE \0 \x63 ; CYRILLIC CAPITAL LETTER TSE
\0 \x7e ; CYRILLIC CAPITAL LETTER CHE \0 \x7e ; CYRILLIC CAPITAL LETTER CHE
\0 \x7b ; CYRILLIC CAPITAL LETTER SHA \0 \x7b ; CYRILLIC CAPITAL LETTER SHA
\0 \x7d ; CYRILLIC CAPITAL LETTER SHCHA \0 \x7d ; CYRILLIC CAPITAL LETTER SHCHA
\0 ? ; (CYRILLIC CAPITAL LETTER HARD SIGN) \0 ? ; (CYRILLIC CAPITAL LETTER HARD SIGN)
\0 \x79 ; CYRILLIC CAPITAL LETTER YERU \0 \x79 ; CYRILLIC CAPITAL LETTER YERU
\0 \x78 ; CYRILLIC CAPITAL LETTER SOFT SIGN \0 \x78 ; CYRILLIC CAPITAL LETTER SOFT SIGN
\0 \x7c ; CYRILLIC CAPITAL LETTER E \0 \x7c ; CYRILLIC CAPITAL LETTER E
\0 \x60 ; CYRILLIC CAPITAL LETTER YU \0 \x60 ; CYRILLIC CAPITAL LETTER YU
\0 \x71 ; CYRILLIC CAPITAL LETTER YA \0 \x71 ; CYRILLIC CAPITAL LETTER YA
\0 \x61 ; (CYRILLIC SMALL LETTER A -> CYRILLIC CAPITAL LETTER A) \0 \x61 ; (CYRILLIC SMALL LETTER A -> CYRILLIC CAPITAL LETTER A)
\0 \x62 ; (CYRILLIC SMALL LETTER BE -> CYRILLIC CAPITAL LETTER BE) \0 \x62 ; (CYRILLIC SMALL LETTER BE -> CYRILLIC CAPITAL LETTER BE)
\0 \x77 ; (CYRILLIC SMALL LETTER VE -> CYRILLIC CAPITAL LETTER VE) \0 \x77 ; (CYRILLIC SMALL LETTER VE -> CYRILLIC CAPITAL LETTER VE)
\0 \x67 ; (CYRILLIC SMALL LETTER GHE -> CYRILLIC CAPITAL LETTER GHE) \0 \x67 ; (CYRILLIC SMALL LETTER GHE -> CYRILLIC CAPITAL LETTER GHE)
\0 \x64 ; (CYRILLIC SMALL LETTER DE -> CYRILLIC CAPITAL LETTER DE) \0 \x64 ; (CYRILLIC SMALL LETTER DE -> CYRILLIC CAPITAL LETTER DE)
\0 \x65 ; (CYRILLIC SMALL LETTER IE -> CYRILLIC CAPITAL LETTER IE) \0 \x65 ; (CYRILLIC SMALL LETTER IE -> CYRILLIC CAPITAL LETTER IE)
\0 \x76 ; (CYRILLIC SMALL LETTER ZHE -> CYRILLIC CAPITAL LETTER ZHE) \0 \x76 ; (CYRILLIC SMALL LETTER ZHE -> CYRILLIC CAPITAL LETTER ZHE)
\0 \x7a ; (CYRILLIC SMALL LETTER ZE -> CYRILLIC CAPITAL LETTER ZE) \0 \x7a ; (CYRILLIC SMALL LETTER ZE -> CYRILLIC CAPITAL LETTER ZE)
\0 \x69 ; (CYRILLIC SMALL LETTER I -> CYRILLIC CAPITAL LETTER I) \0 \x69 ; (CYRILLIC SMALL LETTER I -> CYRILLIC CAPITAL LETTER I)
\0 \x6a ; (CYRILLIC SMALL LETTER SHORT I -> CYRILLIC CAPITAL LETTER SHORT I) \0 \x6a ; (CYRILLIC SMALL LETTER SHORT I -> CYRILLIC CAPITAL LETTER SHORT I)
\0 \x6b ; (CYRILLIC SMALL LETTER KA -> CYRILLIC CAPITAL LETTER KA) \0 \x6b ; (CYRILLIC SMALL LETTER KA -> CYRILLIC CAPITAL LETTER KA)
\0 \x6c ; (CYRILLIC SMALL LETTER EL -> CYRILLIC CAPITAL LETTER EL) \0 \x6c ; (CYRILLIC SMALL LETTER EL -> CYRILLIC CAPITAL LETTER EL)
\0 \x6d ; (CYRILLIC SMALL LETTER EM -> CYRILLIC CAPITAL LETTER EM) \0 \x6d ; (CYRILLIC SMALL LETTER EM -> CYRILLIC CAPITAL LETTER EM)
\0 \x6e ; (CYRILLIC SMALL LETTER EN -> CYRILLIC CAPITAL LETTER EN) \0 \x6e ; (CYRILLIC SMALL LETTER EN -> CYRILLIC CAPITAL LETTER EN)
\0 \x6f ; (CYRILLIC SMALL LETTER O -> CYRILLIC CAPITAL LETTER O) \0 \x6f ; (CYRILLIC SMALL LETTER O -> CYRILLIC CAPITAL LETTER O)
\0 \x70 ; (CYRILLIC SMALL LETTER PE -> CYRILLIC CAPITAL LETTER PE) \0 \x70 ; (CYRILLIC SMALL LETTER PE -> CYRILLIC CAPITAL LETTER PE)
\0 ? ; (LIGHT SHADE) \0 ? ; (LIGHT SHADE)
\0 ? ; (MEDIUM SHADE) \0 ? ; (MEDIUM SHADE)
\0 ? ; (DARK SHADE) \0 ? ; (DARK SHADE)
\0 ? ; (BOX DRAWINGS LIGHT VERTICAL) \0 ? ; (BOX DRAWINGS LIGHT VERTICAL)
\0 ? ; (BOX DRAWINGS LIGHT VERTICAL AND LEFT) \0 ? ; (BOX DRAWINGS LIGHT VERTICAL AND LEFT)
\0 ? ; (BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE) \0 ? ; (BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE)
\0 ? ; (BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE) \0 ? ; (BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE)
\0 ? ; (BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE) \0 ? ; (BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE)
\0 ? ; (BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE) \0 ? ; (BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE)
\0 ? ; (BOX DRAWINGS DOUBLE VERTICAL AND LEFT) \0 ? ; (BOX DRAWINGS DOUBLE VERTICAL AND LEFT)
\0 ? ; (BOX DRAWINGS DOUBLE VERTICAL) \0 ? ; (BOX DRAWINGS DOUBLE VERTICAL)
\0 ? ; (BOX DRAWINGS DOUBLE DOWN AND LEFT) \0 ? ; (BOX DRAWINGS DOUBLE DOWN AND LEFT)
\0 ? ; (BOX DRAWINGS DOUBLE UP AND LEFT) \0 ? ; (BOX DRAWINGS DOUBLE UP AND LEFT)
\0 ? ; (BOX DRAWINGS UP DOUBLE AND LEFT SINGLE) \0 ? ; (BOX DRAWINGS UP DOUBLE AND LEFT SINGLE)
\0 ? ; (BOX DRAWINGS UP SINGLE AND LEFT DOUBLE) \0 ? ; (BOX DRAWINGS UP SINGLE AND LEFT DOUBLE)
\0 ? ; (BOX DRAWINGS LIGHT DOWN AND LEFT) \0 ? ; (BOX DRAWINGS LIGHT DOWN AND LEFT)
\0 ? ; (BOX DRAWINGS LIGHT UP AND RIGHT) \0 ? ; (BOX DRAWINGS LIGHT UP AND RIGHT)
\0 ? ; (BOX DRAWINGS LIGHT UP AND HORIZONTAL) \0 ? ; (BOX DRAWINGS LIGHT UP AND HORIZONTAL)
\0 ? ; (BOX DRAWINGS LIGHT DOWN AND HORIZONTAL) \0 ? ; (BOX DRAWINGS LIGHT DOWN AND HORIZONTAL)
\0 ? ; (BOX DRAWINGS LIGHT VERTICAL AND RIGHT) \0 ? ; (BOX DRAWINGS LIGHT VERTICAL AND RIGHT)
\0 ? ; (BOX DRAWINGS LIGHT HORIZONTAL) \0 ? ; (BOX DRAWINGS LIGHT HORIZONTAL)
\0 ? ; (BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL) \0 ? ; (BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL)
\0 ? ; (BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE) \0 ? ; (BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE)
\0 ? ; (BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE) \0 ? ; (BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE)
\0 ? ; (BOX DRAWINGS DOUBLE UP AND RIGHT) \0 ? ; (BOX DRAWINGS DOUBLE UP AND RIGHT)
\0 ? ; (BOX DRAWINGS DOUBLE DOWN AND RIGHT) \0 ? ; (BOX DRAWINGS DOUBLE DOWN AND RIGHT)
\0 ? ; (BOX DRAWINGS DOUBLE UP AND HORIZONTAL) \0 ? ; (BOX DRAWINGS DOUBLE UP AND HORIZONTAL)
\0 ? ; (BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL) \0 ? ; (BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL)
\0 ? ; (BOX DRAWINGS DOUBLE VERTICAL AND RIGHT) \0 ? ; (BOX DRAWINGS DOUBLE VERTICAL AND RIGHT)
\0 ? ; (BOX DRAWINGS DOUBLE HORIZONTAL) \0 ? ; (BOX DRAWINGS DOUBLE HORIZONTAL)
\0 ? ; (BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL) \0 ? ; (BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL)
\0 ? ; (BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE) \0 ? ; (BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE)
\0 ? ; (BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE) \0 ? ; (BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE)
\0 ? ; (BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE) \0 ? ; (BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE)
\0 ? ; (BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE) \0 ? ; (BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE)
\0 ? ; (BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE) \0 ? ; (BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE)
\0 ? ; (BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE) \0 ? ; (BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE)
\0 ? ; (BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE) \0 ? ; (BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE)
\0 ? ; (BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE) \0 ? ; (BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE)
\0 ? ; (BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE) \0 ? ; (BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE)
\0 ? ; (BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE) \0 ? ; (BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE)
\0 ? ; (BOX DRAWINGS LIGHT UP AND LEFT) \0 ? ; (BOX DRAWINGS LIGHT UP AND LEFT)
\0 ? ; (BOX DRAWINGS LIGHT DOWN AND RIGHT) \0 ? ; (BOX DRAWINGS LIGHT DOWN AND RIGHT)
\0 ? ; (FULL BLOCK) \0 ? ; (FULL BLOCK)
\0 ? ; (LOWER HALF BLOCK) \0 ? ; (LOWER HALF BLOCK)
\0 ? ; (LEFT HALF BLOCK) \0 ? ; (LEFT HALF BLOCK)
\0 ? ; (RIGHT HALF BLOCK) \0 ? ; (RIGHT HALF BLOCK)
\0 ? ; (UPPER HALF BLOCK) \0 ? ; (UPPER HALF BLOCK)
\0 \x72 ; (CYRILLIC CAPITAL LETTER ER -> CYRILLIC SMALL LETTER ER) \0 \x72 ; (CYRILLIC CAPITAL LETTER ER -> CYRILLIC SMALL LETTER ER)
\0 \x73 ; (CYRILLIC CAPITAL LETTER ES -> CYRILLIC SMALL LETTER ES) \0 \x73 ; (CYRILLIC CAPITAL LETTER ES -> CYRILLIC SMALL LETTER ES)
\0 \x74 ; (CYRILLIC CAPITAL LETTER TE -> CYRILLIC SMALL LETTER TE) \0 \x74 ; (CYRILLIC CAPITAL LETTER TE -> CYRILLIC SMALL LETTER TE)
\0 \x75 ; (CYRILLIC CAPITAL LETTER U -> CYRILLIC SMALL LETTER U) \0 \x75 ; (CYRILLIC CAPITAL LETTER U -> CYRILLIC SMALL LETTER U)
\0 \x66 ; (CYRILLIC CAPITAL LETTER EF -> CYRILLIC SMALL LETTER EF) \0 \x66 ; (CYRILLIC CAPITAL LETTER EF -> CYRILLIC SMALL LETTER EF)
\0 \x68 ; (CYRILLIC CAPITAL LETTER HA -> CYRILLIC SMALL LETTER HA) \0 \x68 ; (CYRILLIC CAPITAL LETTER HA -> CYRILLIC SMALL LETTER HA)
\0 \x63 ; (CYRILLIC CAPITAL LETTER TSE -> CYRILLIC SMALL LETTER TSE) \0 \x63 ; (CYRILLIC CAPITAL LETTER TSE -> CYRILLIC SMALL LETTER TSE)
\0 \x7e ; (CYRILLIC CAPITAL LETTER CHE -> CYRILLIC SMALL LETTER CHE) \0 \x7e ; (CYRILLIC CAPITAL LETTER CHE -> CYRILLIC SMALL LETTER CHE)
\0 \x7b ; (CYRILLIC CAPITAL LETTER SHA -> CYRILLIC SMALL LETTER SHA) \0 \x7b ; (CYRILLIC CAPITAL LETTER SHA -> CYRILLIC SMALL LETTER SHA)
\0 \x7d ; (CYRILLIC CAPITAL LETTER SHCHA -> CYRILLIC SMALL LETTER SHCHA) \0 \x7d ; (CYRILLIC CAPITAL LETTER SHCHA -> CYRILLIC SMALL LETTER SHCHA)
\0 ? ; (CYRILLIC SMALL LETTER HARD SIGN) \0 ? ; (CYRILLIC SMALL LETTER HARD SIGN)
\0 \x79 ; (CYRILLIC CAPITAL LETTER YERU -> CYRILLIC SMALL LETTER YERU) \0 \x79 ; (CYRILLIC CAPITAL LETTER YERU -> CYRILLIC SMALL LETTER YERU)
\0 \x78 ; (CYRILLIC CAPITAL LETTER SOFT SIGN -> CYRILLIC SMALL LETTER SOFT SIGN) \0 \x78 ; (CYRILLIC CAPITAL LETTER SOFT SIGN -> CYRILLIC SMALL LETTER SOFT SIGN)
\0 \x7c ; (CYRILLIC CAPITAL LETTER E -> CYRILLIC SMALL LETTER E) \0 \x7c ; (CYRILLIC CAPITAL LETTER E -> CYRILLIC SMALL LETTER E)
\0 \x60 ; (CYRILLIC CAPITAL LETTER YU -> CYRILLIC SMALL LETTER YU) \0 \x60 ; (CYRILLIC CAPITAL LETTER YU -> CYRILLIC SMALL LETTER YU)
\0 \x71 ; (CYRILLIC CAPITAL LETTER YA -> CYRILLIC SMALL LETTER YA) \0 \x71 ; (CYRILLIC CAPITAL LETTER YA -> CYRILLIC SMALL LETTER YA)
\0 \x65 ; (CYRILLIC CAPITAL LETTER IO -> CYRILLIC CAPITAL LETTER IE) \0 \x65 ; (CYRILLIC CAPITAL LETTER IO -> CYRILLIC CAPITAL LETTER IE)
\0 \x65 ; (CYRILLIC SMALL LETTER IO -> CYRILLIC CAPITAL LETTER IE) \0 \x65 ; (CYRILLIC SMALL LETTER IO -> CYRILLIC CAPITAL LETTER IE)
\0 ? ; (CYRILLIC CAPITAL LETTER UKRAINIAN IE) \0 ? ; (CYRILLIC CAPITAL LETTER UKRAINIAN IE)
\0 ? ; (CYRILLIC SMALL LETTER UKRAINIAN IE) \0 ? ; (CYRILLIC SMALL LETTER UKRAINIAN IE)
\0 ? ; (CYRILLIC CAPITAL LETTER YI) \0 ? ; (CYRILLIC CAPITAL LETTER YI)
\0 ? ; (CYRILLIC SMALL LETTER YI) \0 ? ; (CYRILLIC SMALL LETTER YI)
\0 ? ; (CYRILLIC CAPITAL LETTER SHORT U) \0 ? ; (CYRILLIC CAPITAL LETTER SHORT U)
\0 ? ; (CYRILLIC SMALL LETTER SHORT U) \0 ? ; (CYRILLIC SMALL LETTER SHORT U)
\0 ? ; (DEGREE SIGN) \0 ? ; (DEGREE SIGN)
\0 ? ; (BULLET) \0 ? ; (BULLET)
\0 ? ; (MIDDLE DOT) \0 ? ; (MIDDLE DOT)
\0 ? ; (SQUARE ROOT) \0 ? ; (SQUARE ROOT)
\0 ? ; (NUMERO SIGN) \0 ? ; (NUMERO SIGN)
\0 \x24 ; CURRENCY SIGN \0 \x24 ; CURRENCY SIGN
\0 ? ; (BLACK SQUARE) \0 ? ; (BLACK SQUARE)
\0 \x20 ; SPACE \0 \x20 ; SPACE
END END

View File

@ -1,310 +1,310 @@
850_iqp.chs Charset conversion table from CP850 to LATIN1QP 850_iqp.chs Charset conversion table from CP850 to LATIN1QP
850_iso.chs Charset conversion table from CP850 to LATIN-1 850_iso.chs Charset conversion table from CP850 to LATIN-1
865_iso.chs Charset conversion table from CP865 to LATIN-1 865_iso.chs Charset conversion table from CP865 to LATIN-1
866_kou.chs Charset conversion table from cp866 to koi8-u 866_kou.chs Charset conversion table from cp866 to koi8-u
866_ukr.chs Charset conversion table from CP866 to CP1125 866_ukr.chs Charset conversion table from CP866 to CP1125
866_win.chs Charset conversion table from cp866 to cp1251 866_win.chs Charset conversion table from cp866 to cp1251
can_asc.chs Charset conversion table from CANADIAN to ASCII can_asc.chs Charset conversion table from CANADIAN to ASCII
can_ibm.chs Charset conversion table from CANADIAN to IBMPC can_ibm.chs Charset conversion table from CANADIAN to IBMPC
dut_asc.chs Charset conversion table from DUTCH to ASCII dut_asc.chs Charset conversion table from DUTCH to ASCII
dut_ibm.chs Charset conversion table from DUTCH to IBMPC dut_ibm.chs Charset conversion table from DUTCH to IBMPC
fin_asc.chs Charset conversion table from FINNISH to ASCII fin_asc.chs Charset conversion table from FINNISH to ASCII
fin_ibm.chs Charset conversion table from FINNISH to IBMPC fin_ibm.chs Charset conversion table from FINNISH to IBMPC
frn_asc.chs Charset conversion table from FRENCH to ASCII frn_asc.chs Charset conversion table from FRENCH to ASCII
frn_ibm.chs Charset conversion table from FRENCH to IBMPC frn_ibm.chs Charset conversion table from FRENCH to IBMPC
ger_asc.chs Charset conversion table from GERMAN to ASCII ger_asc.chs Charset conversion table from GERMAN to ASCII
ger_ibm.chs Charset conversion table from GERMAN to IBMPC ger_ibm.chs Charset conversion table from GERMAN to IBMPC
i1m_ibm.chs Charset conversion table from LATIN1MAC to IBMPC i1m_ibm.chs Charset conversion table from LATIN1MAC to IBMPC
ibm_asc.chs Charset conversion table from IBMPC to ASCII ibm_asc.chs Charset conversion table from IBMPC to ASCII
ibm_cmp.chs Charset conversion table from IBMPC to COMPOSED ibm_cmp.chs Charset conversion table from IBMPC to COMPOSED
ibm_i51.chs Charset conversion table from IBMPC to I51 ibm_i51.chs Charset conversion table from IBMPC to I51
ibm_ibm.chs Charset conversion table from IBMPC to IBMPC (no conversion) ibm_ibm.chs Charset conversion table from IBMPC to IBMPC (no conversion)
ibm_iqp.chs Charset conversion table from IBMPC to LATIN1QP ibm_iqp.chs Charset conversion table from IBMPC to LATIN1QP
ibm_iso.chs Charset conversion table from IBMPC to LATIN-1 ibm_iso.chs Charset conversion table from IBMPC to LATIN-1
ibm_mac.chs Charset conversion table from IBMPC to MAC ibm_mac.chs Charset conversion table from IBMPC to MAC
ibm_mne.chs Charset conversion table from IBMPC to MNEMONIC ibm_mne.chs Charset conversion table from IBMPC to MNEMONIC
ibm_swe.chs Charset conversion table from IBMPC to SWEDISH ibm_swe.chs Charset conversion table from IBMPC to SWEDISH
ibm_vt1.chs Charset conversion table from IBMPC to VT100 ibm_vt1.chs Charset conversion table from IBMPC to VT100
iqp_850.chs Charset conversion table from LATIN1QP to CP850 iqp_850.chs Charset conversion table from LATIN1QP to CP850
iqp_ibm.chs Charset conversion table from LATIN1QP to IBMPC iqp_ibm.chs Charset conversion table from LATIN1QP to IBMPC
iso_850.chs Charset conversion table from LATIN-1 to CP850 iso_850.chs Charset conversion table from LATIN-1 to CP850
iso_asc.chs Charset conversion table from LATIN-1 to ASCII iso_asc.chs Charset conversion table from LATIN-1 to ASCII
iso_ibm.chs Charset conversion table from LATIN-1 to IBMPC iso_ibm.chs Charset conversion table from LATIN-1 to IBMPC
iso_iso.chs Charset conversion table from LATIN-1 to LATIN-1 (no conversion) iso_iso.chs Charset conversion table from LATIN-1 to LATIN-1 (no conversion)
iso_mac.chs Charset conversion table from Latin-1 to MAC iso_mac.chs Charset conversion table from Latin-1 to MAC
iso_vt1.chs Charset conversion table from Latin-1 to VT100 iso_vt1.chs Charset conversion table from Latin-1 to VT100
ita_asc.chs Charset conversion table from ITALIAN to ASCII ita_asc.chs Charset conversion table from ITALIAN to ASCII
itl_ibm.chs Charset conversion table from ITALIAN to IBMPC itl_ibm.chs Charset conversion table from ITALIAN to IBMPC
kou_866.chs Charset conversion table from koi8-u to cp866 kou_866.chs Charset conversion table from koi8-u to cp866
kou_ukr.chs Charset conversion table from koi8-u to cp1125 kou_ukr.chs Charset conversion table from koi8-u to cp1125
mac_ibm.chs Charset conversion table from MAC to IBMPC mac_ibm.chs Charset conversion table from MAC to IBMPC
mac_iso.chs Charset conversion table from MAC to LATIN-1 mac_iso.chs Charset conversion table from MAC to LATIN-1
mac_vt1.chs Charset conversion table from MAC to VT100 mac_vt1.chs Charset conversion table from MAC to VT100
nor_asc.chs Charset conversion table from NORWEG to ASCII nor_asc.chs Charset conversion table from NORWEG to ASCII
nor_ibm.chs Charset conversion table from NORWEG to IBMPC nor_ibm.chs Charset conversion table from NORWEG to IBMPC
prt_asc.chs Charset conversion table from PORTU to ASCII prt_asc.chs Charset conversion table from PORTU to ASCII
prt_ibm.chs Charset conversion table from PORTU to IBMPC prt_ibm.chs Charset conversion table from PORTU to IBMPC
spn_asc.chs Charset conversion table from SPANISH to ASCII spn_asc.chs Charset conversion table from SPANISH to ASCII
spn_ibm.chs Charset conversion table from SPANISH to IBMPC spn_ibm.chs Charset conversion table from SPANISH to IBMPC
swe_asc.chs Charset conversion table from SWEDISH to ASCII swe_asc.chs Charset conversion table from SWEDISH to ASCII
swe_ibm.chs Charset conversion table from SWEDISH to IBMPC swe_ibm.chs Charset conversion table from SWEDISH to IBMPC
swi_asc.chs Charset conversion table from SWISS to ASCII swi_asc.chs Charset conversion table from SWISS to ASCII
swi_ibm.chs Charset conversion table from SWISS to IBMPC swi_ibm.chs Charset conversion table from SWISS to IBMPC
uk__asc.chs Charset conversion table from UK to ASCII uk__asc.chs Charset conversion table from UK to ASCII
uk__ibm.chs Charset conversion table from UK to IBMPC uk__ibm.chs Charset conversion table from UK to IBMPC
ukr_866.chs Charset conversion table from CP1125 to CP866 ukr_866.chs Charset conversion table from CP1125 to CP866
ukr_koi.chs Charset conversion table from cp1125 to koi8-r ukr_koi.chs Charset conversion table from cp1125 to koi8-r
ukr_kou.chs Charset conversion table from cp1125 to koi8-u ukr_kou.chs Charset conversion table from cp1125 to koi8-u
ukr_ukr.chs Charset conversion table from CP1125 to CP1125 (no conversion) ukr_ukr.chs Charset conversion table from CP1125 to CP1125 (no conversion)
win_866.chs Charset conversion table from cp1251 to cp866 win_866.chs Charset conversion table from cp1251 to cp866
cmp_ibm.esc IBMPC charset Escaped Characters Table: Composed Characters Table, Andre van de Wijdeven (2:500/131). cmp_ibm.esc IBMPC charset Escaped Characters Table: Composed Characters Table, Andre van de Wijdeven (2:500/131).
i51_ibm.esc IBMPC charset Escaped Characters Table: FSC-0051.003 (I51) Combined Characters, Thomas Gradin (2:200/108). i51_ibm.esc IBMPC charset Escaped Characters Table: FSC-0051.003 (I51) Combined Characters, Thomas Gradin (2:200/108).
mne_850.esc CP850 charset Escaped Characters Table mne_850.esc CP850 charset Escaped Characters Table
mne_ibm.esc CP865 (IBMPC) charset Escaped Characters Table mne_ibm.esc CP865 (IBMPC) charset Escaped Characters Table
1250_437.chs Charset conversion table from cp1250 to cp437 1250_437.chs Charset conversion table from cp1250 to cp437
1250_850.chs Charset conversion table from cp1250 to cp850 1250_850.chs Charset conversion table from cp1250 to cp850
1250_858.chs Charset conversion table from cp1250 to cp858 1250_858.chs Charset conversion table from cp1250 to cp858
1250_859.chs Charset conversion table from cp1250 to cp859 1250_859.chs Charset conversion table from cp1250 to cp859
1250_asc.chs Charset conversion table from cp1250 to us-ascii 1250_asc.chs Charset conversion table from cp1250 to us-ascii
1250_i-1.chs Charset conversion table from cp1250 to iso8859-1 1250_i-1.chs Charset conversion table from cp1250 to iso8859-1
1250_i15.chs Charset conversion table from cp1250 to iso8859-15 1250_i15.chs Charset conversion table from cp1250 to iso8859-15
1250_mac.chs Charset conversion table from cp1250 to mac-roman 1250_mac.chs Charset conversion table from cp1250 to mac-roman
12501250.chs Charset conversion table from cp1250 to cp1250 (no conversion) 12501250.chs Charset conversion table from cp1250 to cp1250 (no conversion)
12501251.chs Charset conversion table from cp1250 to cp1251 12501251.chs Charset conversion table from cp1250 to cp1251
12501252.chs Charset conversion table from cp1250 to cp1252 12501252.chs Charset conversion table from cp1250 to cp1252
12501253.chs Charset conversion table from cp1250 to cp1253 12501253.chs Charset conversion table from cp1250 to cp1253
12501254.chs Charset conversion table from cp1250 to cp1254 12501254.chs Charset conversion table from cp1250 to cp1254
12501257.chs Charset conversion table from cp1250 to cp1257 12501257.chs Charset conversion table from cp1250 to cp1257
12501258.chs Charset conversion table from cp1250 to cp1258 12501258.chs Charset conversion table from cp1250 to cp1258
1251_437.chs Charset conversion table from cp1251 to cp437 1251_437.chs Charset conversion table from cp1251 to cp437
1251_850.chs Charset conversion table from cp1251 to cp850 1251_850.chs Charset conversion table from cp1251 to cp850
1251_858.chs Charset conversion table from cp1251 to cp858 1251_858.chs Charset conversion table from cp1251 to cp858
1251_859.chs Charset conversion table from cp1251 to cp859 1251_859.chs Charset conversion table from cp1251 to cp859
1251_asc.chs Charset conversion table from cp1251 to us-ascii 1251_asc.chs Charset conversion table from cp1251 to us-ascii
1251_i-1.chs Charset conversion table from cp1251 to iso8859-1 1251_i-1.chs Charset conversion table from cp1251 to iso8859-1
1251_i15.chs Charset conversion table from cp1251 to iso8859-15 1251_i15.chs Charset conversion table from cp1251 to iso8859-15
1251_mac.chs Charset conversion table from cp1251 to mac-roman 1251_mac.chs Charset conversion table from cp1251 to mac-roman
12511250.chs Charset conversion table from cp1251 to cp1250 12511250.chs Charset conversion table from cp1251 to cp1250
12511251.chs Charset conversion table from cp1251 to cp1251 (no conversion) 12511251.chs Charset conversion table from cp1251 to cp1251 (no conversion)
12511252.chs Charset conversion table from cp1251 to cp1252 12511252.chs Charset conversion table from cp1251 to cp1252
12511253.chs Charset conversion table from cp1251 to cp1253 12511253.chs Charset conversion table from cp1251 to cp1253
12511254.chs Charset conversion table from cp1251 to cp1254 12511254.chs Charset conversion table from cp1251 to cp1254
12511257.chs Charset conversion table from cp1251 to cp1257 12511257.chs Charset conversion table from cp1251 to cp1257
12511258.chs Charset conversion table from cp1251 to cp1258 12511258.chs Charset conversion table from cp1251 to cp1258
1252_437.chs Charset conversion table from cp1252 to cp437 1252_437.chs Charset conversion table from cp1252 to cp437
1252_850.chs Charset conversion table from cp1252 to cp850 1252_850.chs Charset conversion table from cp1252 to cp850
1252_858.chs Charset conversion table from cp1252 to cp858 1252_858.chs Charset conversion table from cp1252 to cp858
1252_859.chs Charset conversion table from cp1252 to cp859 1252_859.chs Charset conversion table from cp1252 to cp859
1252_asc.chs Charset conversion table from cp1252 to us-ascii 1252_asc.chs Charset conversion table from cp1252 to us-ascii
1252_i-1.chs Charset conversion table from cp1252 to iso8859-1 1252_i-1.chs Charset conversion table from cp1252 to iso8859-1
1252_i15.chs Charset conversion table from cp1252 to iso8859-15 1252_i15.chs Charset conversion table from cp1252 to iso8859-15
1252_mac.chs Charset conversion table from cp1252 to mac-roman 1252_mac.chs Charset conversion table from cp1252 to mac-roman
12521250.chs Charset conversion table from cp1252 to cp1250 12521250.chs Charset conversion table from cp1252 to cp1250
12521251.chs Charset conversion table from cp1252 to cp1251 12521251.chs Charset conversion table from cp1252 to cp1251
12521252.chs Charset conversion table from cp1252 to cp1252 (no conversion) 12521252.chs Charset conversion table from cp1252 to cp1252 (no conversion)
12521253.chs Charset conversion table from cp1252 to cp1253 12521253.chs Charset conversion table from cp1252 to cp1253
12521254.chs Charset conversion table from cp1252 to cp1254 12521254.chs Charset conversion table from cp1252 to cp1254
12521257.chs Charset conversion table from cp1252 to cp1257 12521257.chs Charset conversion table from cp1252 to cp1257
12521258.chs Charset conversion table from cp1252 to cp1258 12521258.chs Charset conversion table from cp1252 to cp1258
1253_437.chs Charset conversion table from cp1253 to cp437 1253_437.chs Charset conversion table from cp1253 to cp437
1253_850.chs Charset conversion table from cp1253 to cp850 1253_850.chs Charset conversion table from cp1253 to cp850
1253_858.chs Charset conversion table from cp1253 to cp858 1253_858.chs Charset conversion table from cp1253 to cp858
1253_859.chs Charset conversion table from cp1253 to cp859 1253_859.chs Charset conversion table from cp1253 to cp859
1253_asc.chs Charset conversion table from cp1253 to us-ascii 1253_asc.chs Charset conversion table from cp1253 to us-ascii
1253_i-1.chs Charset conversion table from cp1253 to iso8859-1 1253_i-1.chs Charset conversion table from cp1253 to iso8859-1
1253_i15.chs Charset conversion table from cp1253 to iso8859-15 1253_i15.chs Charset conversion table from cp1253 to iso8859-15
1253_mac.chs Charset conversion table from cp1253 to mac-roman 1253_mac.chs Charset conversion table from cp1253 to mac-roman
12531250.chs Charset conversion table from cp1253 to cp1250 12531250.chs Charset conversion table from cp1253 to cp1250
12531251.chs Charset conversion table from cp1253 to cp1251 12531251.chs Charset conversion table from cp1253 to cp1251
12531252.chs Charset conversion table from cp1253 to cp1252 12531252.chs Charset conversion table from cp1253 to cp1252
12531253.chs Charset conversion table from cp1253 to cp1253 (no conversion) 12531253.chs Charset conversion table from cp1253 to cp1253 (no conversion)
12531254.chs Charset conversion table from cp1253 to cp1254 12531254.chs Charset conversion table from cp1253 to cp1254
12531257.chs Charset conversion table from cp1253 to cp1257 12531257.chs Charset conversion table from cp1253 to cp1257
12531258.chs Charset conversion table from cp1253 to cp1258 12531258.chs Charset conversion table from cp1253 to cp1258
1254_437.chs Charset conversion table from cp1254 to cp437 1254_437.chs Charset conversion table from cp1254 to cp437
1254_850.chs Charset conversion table from cp1254 to cp850 1254_850.chs Charset conversion table from cp1254 to cp850
1254_858.chs Charset conversion table from cp1254 to cp858 1254_858.chs Charset conversion table from cp1254 to cp858
1254_859.chs Charset conversion table from cp1254 to cp859 1254_859.chs Charset conversion table from cp1254 to cp859
1254_asc.chs Charset conversion table from cp1254 to us-ascii 1254_asc.chs Charset conversion table from cp1254 to us-ascii
1254_i-1.chs Charset conversion table from cp1254 to iso8859-1 1254_i-1.chs Charset conversion table from cp1254 to iso8859-1
1254_i15.chs Charset conversion table from cp1254 to iso8859-15 1254_i15.chs Charset conversion table from cp1254 to iso8859-15
1254_mac.chs Charset conversion table from cp1254 to mac-roman 1254_mac.chs Charset conversion table from cp1254 to mac-roman
12541250.chs Charset conversion table from cp1254 to cp1250 12541250.chs Charset conversion table from cp1254 to cp1250
12541251.chs Charset conversion table from cp1254 to cp1251 12541251.chs Charset conversion table from cp1254 to cp1251
12541252.chs Charset conversion table from cp1254 to cp1252 12541252.chs Charset conversion table from cp1254 to cp1252
12541253.chs Charset conversion table from cp1254 to cp1253 12541253.chs Charset conversion table from cp1254 to cp1253
12541254.chs Charset conversion table from cp1254 to cp1254 (no conversion) 12541254.chs Charset conversion table from cp1254 to cp1254 (no conversion)
12541257.chs Charset conversion table from cp1254 to cp1257 12541257.chs Charset conversion table from cp1254 to cp1257
12541258.chs Charset conversion table from cp1254 to cp1258 12541258.chs Charset conversion table from cp1254 to cp1258
1257_437.chs Charset conversion table from cp1257 to cp437 1257_437.chs Charset conversion table from cp1257 to cp437
1257_850.chs Charset conversion table from cp1257 to cp850 1257_850.chs Charset conversion table from cp1257 to cp850
1257_858.chs Charset conversion table from cp1257 to cp858 1257_858.chs Charset conversion table from cp1257 to cp858
1257_859.chs Charset conversion table from cp1257 to cp859 1257_859.chs Charset conversion table from cp1257 to cp859
1257_asc.chs Charset conversion table from cp1257 to us-ascii 1257_asc.chs Charset conversion table from cp1257 to us-ascii
1257_i-1.chs Charset conversion table from cp1257 to iso8859-1 1257_i-1.chs Charset conversion table from cp1257 to iso8859-1
1257_i15.chs Charset conversion table from cp1257 to iso8859-15 1257_i15.chs Charset conversion table from cp1257 to iso8859-15
1257_mac.chs Charset conversion table from cp1257 to mac-roman 1257_mac.chs Charset conversion table from cp1257 to mac-roman
12571250.chs Charset conversion table from cp1257 to cp1250 12571250.chs Charset conversion table from cp1257 to cp1250
12571251.chs Charset conversion table from cp1257 to cp1251 12571251.chs Charset conversion table from cp1257 to cp1251
12571252.chs Charset conversion table from cp1257 to cp1252 12571252.chs Charset conversion table from cp1257 to cp1252
12571253.chs Charset conversion table from cp1257 to cp1253 12571253.chs Charset conversion table from cp1257 to cp1253
12571254.chs Charset conversion table from cp1257 to cp1254 12571254.chs Charset conversion table from cp1257 to cp1254
12571257.chs Charset conversion table from cp1257 to cp1257 (no conversion) 12571257.chs Charset conversion table from cp1257 to cp1257 (no conversion)
12571258.chs Charset conversion table from cp1257 to cp1258 12571258.chs Charset conversion table from cp1257 to cp1258
1258_437.chs Charset conversion table from cp1258 to cp437 1258_437.chs Charset conversion table from cp1258 to cp437
1258_850.chs Charset conversion table from cp1258 to cp850 1258_850.chs Charset conversion table from cp1258 to cp850
1258_858.chs Charset conversion table from cp1258 to cp858 1258_858.chs Charset conversion table from cp1258 to cp858
1258_859.chs Charset conversion table from cp1258 to cp859 1258_859.chs Charset conversion table from cp1258 to cp859
1258_asc.chs Charset conversion table from cp1258 to us-ascii 1258_asc.chs Charset conversion table from cp1258 to us-ascii
1258_i-1.chs Charset conversion table from cp1258 to iso8859-1 1258_i-1.chs Charset conversion table from cp1258 to iso8859-1
1258_i15.chs Charset conversion table from cp1258 to iso8859-15 1258_i15.chs Charset conversion table from cp1258 to iso8859-15
1258_mac.chs Charset conversion table from cp1258 to mac-roman 1258_mac.chs Charset conversion table from cp1258 to mac-roman
12581250.chs Charset conversion table from cp1258 to cp1250 12581250.chs Charset conversion table from cp1258 to cp1250
12581251.chs Charset conversion table from cp1258 to cp1251 12581251.chs Charset conversion table from cp1258 to cp1251
12581252.chs Charset conversion table from cp1258 to cp1252 12581252.chs Charset conversion table from cp1258 to cp1252
12581253.chs Charset conversion table from cp1258 to cp1253 12581253.chs Charset conversion table from cp1258 to cp1253
12581254.chs Charset conversion table from cp1258 to cp1254 12581254.chs Charset conversion table from cp1258 to cp1254
12581257.chs Charset conversion table from cp1258 to cp1257 12581257.chs Charset conversion table from cp1258 to cp1257
12581258.chs Charset conversion table from cp1258 to cp1258 (no conversion) 12581258.chs Charset conversion table from cp1258 to cp1258 (no conversion)
437_1250.chs Charset conversion table from cp437 to cp1250 437_1250.chs Charset conversion table from cp437 to cp1250
437_1251.chs Charset conversion table from cp437 to cp1251 437_1251.chs Charset conversion table from cp437 to cp1251
437_1252.chs Charset conversion table from cp437 to cp1252 437_1252.chs Charset conversion table from cp437 to cp1252
437_1253.chs Charset conversion table from cp437 to cp1253 437_1253.chs Charset conversion table from cp437 to cp1253
437_1254.chs Charset conversion table from cp437 to cp1254 437_1254.chs Charset conversion table from cp437 to cp1254
437_1257.chs Charset conversion table from cp437 to cp1257 437_1257.chs Charset conversion table from cp437 to cp1257
437_1258.chs Charset conversion table from cp437 to cp1258 437_1258.chs Charset conversion table from cp437 to cp1258
437_437.chs Charset conversion table from cp437 to cp437 (no conversion) 437_437.chs Charset conversion table from cp437 to cp437 (no conversion)
437_850.chs Charset conversion table from cp437 to cp850 437_850.chs Charset conversion table from cp437 to cp850
437_858.chs Charset conversion table from cp437 to cp858 437_858.chs Charset conversion table from cp437 to cp858
437_859.chs Charset conversion table from cp437 to cp859 437_859.chs Charset conversion table from cp437 to cp859
437_asc.chs Charset conversion table from cp437 to us-ascii 437_asc.chs Charset conversion table from cp437 to us-ascii
437_i-1.chs Charset conversion table from cp437 to iso8859-1 437_i-1.chs Charset conversion table from cp437 to iso8859-1
437_i15.chs Charset conversion table from cp437 to iso8859-15 437_i15.chs Charset conversion table from cp437 to iso8859-15
437_mac.chs Charset conversion table from cp437 to mac-roman 437_mac.chs Charset conversion table from cp437 to mac-roman
850_1250.chs Charset conversion table from cp850 to cp1250 850_1250.chs Charset conversion table from cp850 to cp1250
850_1251.chs Charset conversion table from cp850 to cp1251 850_1251.chs Charset conversion table from cp850 to cp1251
850_1252.chs Charset conversion table from cp850 to cp1252 850_1252.chs Charset conversion table from cp850 to cp1252
850_1253.chs Charset conversion table from cp850 to cp1253 850_1253.chs Charset conversion table from cp850 to cp1253
850_1254.chs Charset conversion table from cp850 to cp1254 850_1254.chs Charset conversion table from cp850 to cp1254
850_1257.chs Charset conversion table from cp850 to cp1257 850_1257.chs Charset conversion table from cp850 to cp1257
850_1258.chs Charset conversion table from cp850 to cp1258 850_1258.chs Charset conversion table from cp850 to cp1258
850_437.chs Charset conversion table from cp850 to cp437 850_437.chs Charset conversion table from cp850 to cp437
850_858.chs Charset conversion table from cp850 to cp858 850_858.chs Charset conversion table from cp850 to cp858
850_859.chs Charset conversion table from cp850 to cp859 850_859.chs Charset conversion table from cp850 to cp859
850_i-1.chs Charset conversion table from cp850 to iso8859-1 850_i-1.chs Charset conversion table from cp850 to iso8859-1
850_i15.chs Charset conversion table from cp850 to iso8859-15 850_i15.chs Charset conversion table from cp850 to iso8859-15
850_mac.chs Charset conversion table from cp850 to mac-roman 850_mac.chs Charset conversion table from cp850 to mac-roman
858_1250.chs Charset conversion table from cp858 to cp1250 858_1250.chs Charset conversion table from cp858 to cp1250
858_1251.chs Charset conversion table from cp858 to cp1251 858_1251.chs Charset conversion table from cp858 to cp1251
858_1252.chs Charset conversion table from cp858 to cp1252 858_1252.chs Charset conversion table from cp858 to cp1252
858_1253.chs Charset conversion table from cp858 to cp1253 858_1253.chs Charset conversion table from cp858 to cp1253
858_1254.chs Charset conversion table from cp858 to cp1254 858_1254.chs Charset conversion table from cp858 to cp1254
858_1257.chs Charset conversion table from cp858 to cp1257 858_1257.chs Charset conversion table from cp858 to cp1257
858_1258.chs Charset conversion table from cp858 to cp1258 858_1258.chs Charset conversion table from cp858 to cp1258
858_437.chs Charset conversion table from cp858 to cp437 858_437.chs Charset conversion table from cp858 to cp437
858_850.chs Charset conversion table from cp858 to cp850 858_850.chs Charset conversion table from cp858 to cp850
858_858.chs Charset conversion table from cp858 to cp858 (no conversion) 858_858.chs Charset conversion table from cp858 to cp858 (no conversion)
858_859.chs Charset conversion table from cp858 to cp859 858_859.chs Charset conversion table from cp858 to cp859
858_asc.chs Charset conversion table from cp858 to us-ascii 858_asc.chs Charset conversion table from cp858 to us-ascii
858_i-1.chs Charset conversion table from cp858 to iso8859-1 858_i-1.chs Charset conversion table from cp858 to iso8859-1
858_i15.chs Charset conversion table from cp858 to iso8859-15 858_i15.chs Charset conversion table from cp858 to iso8859-15
858_mac.chs Charset conversion table from cp858 to mac-roman 858_mac.chs Charset conversion table from cp858 to mac-roman
859_1250.chs Charset conversion table from cp859 to cp1250 859_1250.chs Charset conversion table from cp859 to cp1250
859_1251.chs Charset conversion table from cp859 to cp1251 859_1251.chs Charset conversion table from cp859 to cp1251
859_1252.chs Charset conversion table from cp859 to cp1252 859_1252.chs Charset conversion table from cp859 to cp1252
859_1253.chs Charset conversion table from cp859 to cp1253 859_1253.chs Charset conversion table from cp859 to cp1253
859_1254.chs Charset conversion table from cp859 to cp1254 859_1254.chs Charset conversion table from cp859 to cp1254
859_1257.chs Charset conversion table from cp859 to cp1257 859_1257.chs Charset conversion table from cp859 to cp1257
859_1258.chs Charset conversion table from cp859 to cp1258 859_1258.chs Charset conversion table from cp859 to cp1258
859_437.chs Charset conversion table from cp859 to cp437 859_437.chs Charset conversion table from cp859 to cp437
859_850.chs Charset conversion table from cp859 to cp850 859_850.chs Charset conversion table from cp859 to cp850
859_858.chs Charset conversion table from cp859 to cp858 859_858.chs Charset conversion table from cp859 to cp858
859_859.chs Charset conversion table from cp859 to cp859 (no conversion) 859_859.chs Charset conversion table from cp859 to cp859 (no conversion)
859_asc.chs Charset conversion table from cp859 to us-ascii 859_asc.chs Charset conversion table from cp859 to us-ascii
859_i-1.chs Charset conversion table from cp859 to iso8859-1 859_i-1.chs Charset conversion table from cp859 to iso8859-1
859_i15.chs Charset conversion table from cp859 to iso8859-15 859_i15.chs Charset conversion table from cp859 to iso8859-15
859_mac.chs Charset conversion table from cp859 to mac-roman 859_mac.chs Charset conversion table from cp859 to mac-roman
asc_1250.chs Charset conversion table from us-ascii to cp1250 asc_1250.chs Charset conversion table from us-ascii to cp1250
asc_1251.chs Charset conversion table from us-ascii to cp1251 asc_1251.chs Charset conversion table from us-ascii to cp1251
asc_1252.chs Charset conversion table from us-ascii to cp1252 asc_1252.chs Charset conversion table from us-ascii to cp1252
asc_1253.chs Charset conversion table from us-ascii to cp1253 asc_1253.chs Charset conversion table from us-ascii to cp1253
asc_1254.chs Charset conversion table from us-ascii to cp1254 asc_1254.chs Charset conversion table from us-ascii to cp1254
asc_1257.chs Charset conversion table from us-ascii to cp1257 asc_1257.chs Charset conversion table from us-ascii to cp1257
asc_1258.chs Charset conversion table from us-ascii to cp1258 asc_1258.chs Charset conversion table from us-ascii to cp1258
asc_437.chs Charset conversion table from us-ascii to cp437 asc_437.chs Charset conversion table from us-ascii to cp437
asc_850.chs Charset conversion table from us-ascii to cp850 asc_850.chs Charset conversion table from us-ascii to cp850
asc_858.chs Charset conversion table from us-ascii to cp858 asc_858.chs Charset conversion table from us-ascii to cp858
asc_859.chs Charset conversion table from us-ascii to cp859 asc_859.chs Charset conversion table from us-ascii to cp859
asc_asc.chs Charset conversion table from us-ascii to us-ascii (no conversion) asc_asc.chs Charset conversion table from us-ascii to us-ascii (no conversion)
asc_i-1.chs Charset conversion table from us-ascii to iso8859-1 asc_i-1.chs Charset conversion table from us-ascii to iso8859-1
asc_i15.chs Charset conversion table from us-ascii to iso8859-15 asc_i15.chs Charset conversion table from us-ascii to iso8859-15
asc_mac.chs Charset conversion table from us-ascii to mac-roman asc_mac.chs Charset conversion table from us-ascii to mac-roman
i-1_1250.chs Charset conversion table from iso8859-1 to cp1250 i-1_1250.chs Charset conversion table from iso8859-1 to cp1250
i-1_1251.chs Charset conversion table from iso8859-1 to cp1251 i-1_1251.chs Charset conversion table from iso8859-1 to cp1251
i-1_1252.chs Charset conversion table from iso8859-1 to cp1252 i-1_1252.chs Charset conversion table from iso8859-1 to cp1252
i-1_1253.chs Charset conversion table from iso8859-1 to cp1253 i-1_1253.chs Charset conversion table from iso8859-1 to cp1253
i-1_1254.chs Charset conversion table from iso8859-1 to cp1254 i-1_1254.chs Charset conversion table from iso8859-1 to cp1254
i-1_1257.chs Charset conversion table from iso8859-1 to cp1257 i-1_1257.chs Charset conversion table from iso8859-1 to cp1257
i-1_1258.chs Charset conversion table from iso8859-1 to cp1258 i-1_1258.chs Charset conversion table from iso8859-1 to cp1258
i-1_437.chs Charset conversion table from iso8859-1 to cp437 i-1_437.chs Charset conversion table from iso8859-1 to cp437
i-1_850.chs Charset conversion table from iso8859-1 to cp850 i-1_850.chs Charset conversion table from iso8859-1 to cp850
i-1_858.chs Charset conversion table from iso8859-1 to cp858 i-1_858.chs Charset conversion table from iso8859-1 to cp858
i-1_859.chs Charset conversion table from iso8859-1 to cp859 i-1_859.chs Charset conversion table from iso8859-1 to cp859
i-1_asc.chs Charset conversion table from iso8859-1 to us-ascii i-1_asc.chs Charset conversion table from iso8859-1 to us-ascii
i-1_i-1.chs Charset conversion table from iso8859-1 to iso8859-1 (no conversion) i-1_i-1.chs Charset conversion table from iso8859-1 to iso8859-1 (no conversion)
i-1_i15.chs Charset conversion table from iso8859-1 to iso8859-15 i-1_i15.chs Charset conversion table from iso8859-1 to iso8859-15
i-1_mac.chs Charset conversion table from iso8859-1 to mac-roman i-1_mac.chs Charset conversion table from iso8859-1 to mac-roman
i15_1250.chs Charset conversion table from iso8859-15 to cp1250 i15_1250.chs Charset conversion table from iso8859-15 to cp1250
i15_1251.chs Charset conversion table from iso8859-15 to cp1251 i15_1251.chs Charset conversion table from iso8859-15 to cp1251
i15_1252.chs Charset conversion table from iso8859-15 to cp1252 i15_1252.chs Charset conversion table from iso8859-15 to cp1252
i15_1253.chs Charset conversion table from iso8859-15 to cp1253 i15_1253.chs Charset conversion table from iso8859-15 to cp1253
i15_1254.chs Charset conversion table from iso8859-15 to cp1254 i15_1254.chs Charset conversion table from iso8859-15 to cp1254
i15_1257.chs Charset conversion table from iso8859-15 to cp1257 i15_1257.chs Charset conversion table from iso8859-15 to cp1257
i15_1258.chs Charset conversion table from iso8859-15 to cp1258 i15_1258.chs Charset conversion table from iso8859-15 to cp1258
i15_437.chs Charset conversion table from iso8859-15 to cp437 i15_437.chs Charset conversion table from iso8859-15 to cp437
i15_850.chs Charset conversion table from iso8859-15 to cp850 i15_850.chs Charset conversion table from iso8859-15 to cp850
i15_858.chs Charset conversion table from iso8859-15 to cp858 i15_858.chs Charset conversion table from iso8859-15 to cp858
i15_859.chs Charset conversion table from iso8859-15 to cp859 i15_859.chs Charset conversion table from iso8859-15 to cp859
i15_asc.chs Charset conversion table from iso8859-15 to us-ascii i15_asc.chs Charset conversion table from iso8859-15 to us-ascii
i15_i-1.chs Charset conversion table from iso8859-15 to iso8859-1 i15_i-1.chs Charset conversion table from iso8859-15 to iso8859-1
i15_i15.chs Charset conversion table from iso8859-15 to iso8859-15 (no conversion) i15_i15.chs Charset conversion table from iso8859-15 to iso8859-15 (no conversion)
i15_mac.chs Charset conversion table from iso8859-15 to mac-roman i15_mac.chs Charset conversion table from iso8859-15 to mac-roman
mac_1250.chs Charset conversion table from mac-roman to cp1250 mac_1250.chs Charset conversion table from mac-roman to cp1250
mac_1251.chs Charset conversion table from mac-roman to cp1251 mac_1251.chs Charset conversion table from mac-roman to cp1251
mac_1252.chs Charset conversion table from mac-roman to cp1252 mac_1252.chs Charset conversion table from mac-roman to cp1252
mac_1253.chs Charset conversion table from mac-roman to cp1253 mac_1253.chs Charset conversion table from mac-roman to cp1253
mac_1254.chs Charset conversion table from mac-roman to cp1254 mac_1254.chs Charset conversion table from mac-roman to cp1254
mac_1257.chs Charset conversion table from mac-roman to cp1257 mac_1257.chs Charset conversion table from mac-roman to cp1257
mac_1258.chs Charset conversion table from mac-roman to cp1258 mac_1258.chs Charset conversion table from mac-roman to cp1258
mac_437.chs Charset conversion table from mac-roman to cp437 mac_437.chs Charset conversion table from mac-roman to cp437
mac_858.chs Charset conversion table from mac-roman to cp858 mac_858.chs Charset conversion table from mac-roman to cp858
mac_859.chs Charset conversion table from mac-roman to cp859 mac_859.chs Charset conversion table from mac-roman to cp859
mac_i-1.chs Charset conversion table from mac-roman to iso8859-1 mac_i-1.chs Charset conversion table from mac-roman to iso8859-1
mac_i15.chs Charset conversion table from mac-roman to iso8859-15 mac_i15.chs Charset conversion table from mac-roman to iso8859-15
mac_mac.chs Charset conversion table from mac-roman to mac-roman (no conversion) mac_mac.chs Charset conversion table from mac-roman to mac-roman (no conversion)
850_850.chs Charset conversion table from cp850 to cp850 (no conversion) 850_850.chs Charset conversion table from cp850 to cp850 (no conversion)
850_asc.chs Charset conversion table from cp850 to us-ascii 850_asc.chs Charset conversion table from cp850 to us-ascii
mac_850.chs Charset conversion table from mac-roman to cp850 mac_850.chs Charset conversion table from mac-roman to cp850
mac_asc.chs Charset conversion table from mac-roman to us-ascii mac_asc.chs Charset conversion table from mac-roman to us-ascii
koi_866.chs Charset conversion table from koi8-r to cp866 koi_866.chs Charset conversion table from koi8-r to cp866
koi8_u8.chs Charset conversion table from KOI8-R to UTF-8 koi8_u8.chs Charset conversion table from KOI8-R to UTF-8
iso1_u8.chs Charset conversion table from ISO8859-1 to UTF-8 iso1_u8.chs Charset conversion table from ISO8859-1 to UTF-8
865_u8.chs Charset conversion table from CP865 to UTF-8 865_u8.chs Charset conversion table from CP865 to UTF-8
866_u8.chs Charset conversion table from CP866 to UTF-8 866_u8.chs Charset conversion table from CP866 to UTF-8
850_u8.chs Charset conversion table from CP850 to UTF-8 850_u8.chs Charset conversion table from CP850 to UTF-8
437_u8.chs Charset conversion table from CP437 to UTF8 437_u8.chs Charset conversion table from CP437 to UTF8
1125_u8.chs Charset conversion table from CP1125 to UTF-8 1125_u8.chs Charset conversion table from CP1125 to UTF-8
866_koi.chs Charset conversion table from cp866 to koi8-r 866_koi.chs Charset conversion table from cp866 to koi8-r
866_koi7.chs Charset conversion table from CP866 to KOI-7 866_koi7.chs Charset conversion table from CP866 to KOI-7
k8_k7.chs Charset conversion table from KOI-8 to KOI-7 k8_k7.chs Charset conversion table from KOI-8 to KOI-7
k7_k7.chs Charset conversion table from KOI-7 to KOI-7 k7_k7.chs Charset conversion table from KOI-7 to KOI-7
k7_k8.chs Charset conversion table from KOI-7 to KOI8-r k7_k8.chs Charset conversion table from KOI-7 to KOI8-r
koi7_866.chs Charset conversion table from KOI-7 to CP866 koi7_866.chs Charset conversion table from KOI-7 to CP866
866_866.chs Charset conversion table from CP866 to CP866 866_866.chs Charset conversion table from CP866 to CP866
866_ISO.chs Charset conversion table from cp866 to iso8859-5 866_ISO.chs Charset conversion table from cp866 to iso8859-5
DK2_866.chs Charset conversion table from CP866+KOI8R+H to CP866 DK2_866.chs Charset conversion table from CP866+KOI8R+H to CP866
IK2_866.chs Charset conversion table from ISO8859-5+KOI8R+H to CP866 IK2_866.chs Charset conversion table from ISO8859-5+KOI8R+H to CP866
WK2_866.chs Charset conversion table from CP1251+KOI8R+H to CP866 WK2_866.chs Charset conversion table from CP1251+KOI8R+H to CP866
DK1_866.chs Charset conversion table from DOS+KOI8R to CP866 DK1_866.chs Charset conversion table from DOS+KOI8R to CP866
IK1_866.chs Charset conversion table from ISO8859-5+KOI8R to CP866 IK1_866.chs Charset conversion table from ISO8859-5+KOI8R to CP866
WK1_866.chs Charset conversion table from CP1251+KOI8R to CP866 WK1_866.chs Charset conversion table from CP1251+KOI8R to CP866

View File

@ -1,285 +1,285 @@
; $Id$ ; $Id$
; This file is a charset conversion module for Golded+ ; This file is a charset conversion module for Golded+
; Source charset is KOI-7 (KOI7), 7-bit russian charset (unixes) ; Source charset is KOI-7 (KOI7), 7-bit russian charset (unixes)
; Destination charset is KOI-7 (KOI7), 7-bit russian charset (unixes) ; Destination charset is KOI-7 (KOI7), 7-bit russian charset (unixes)
; ;
; Copyleft (c) Stas Degteff 2:5080/102@fidonet stas_degteff@users.sourceforge.net ; Copyleft (c) Stas Degteff 2:5080/102@fidonet stas_degteff@users.sourceforge.net
; ;
; Format: ID, version, level, ; Format: ID, version, level,
; from charset, to charset, ; from charset, to charset,
; 128 entries: first & second byte ; 128 entries: first & second byte
; "END" ; "END"
; Lines beginning with a ";" or a ";" after the entries are comments ; Lines beginning with a ";" or a ";" after the entries are comments
; ;
; Unkown characters are mapped to the "?" character. ; Unkown characters are mapped to the "?" character.
; ;
; \ is the escape character: \0 means decimal zero, ; \ is the escape character: \0 means decimal zero,
; \dnnn where nnn is a decimal number is the ordinal value of the character ; \dnnn where nnn is a decimal number is the ordinal value of the character
; \xnn where nn is a hexadecimal number ; \xnn where nn is a hexadecimal number
; e.g.: \d32 is the ASCII space character ; e.g.: \d32 is the ASCII space character
; Two \\ is the character "\" itself. ; Two \\ is the character "\" itself.
; ;
0 0
0 0
; ;
1 1
KOI-7 ; from charset KOI-7 ; from charset
KOI-7 ; to charset KOI-7 ; to charset
; ;
\0 \x0 ; <control> \0 \x0 ; <control>
\0 \x1 ; <control> \0 \x1 ; <control>
\0 \x2 ; <control> \0 \x2 ; <control>
\0 \x3 ; <control> \0 \x3 ; <control>
\0 \x4 ; <control> \0 \x4 ; <control>
\0 \x5 ; <control> \0 \x5 ; <control>
\0 \x6 ; <control> \0 \x6 ; <control>
\0 \x7 ; <control> \0 \x7 ; <control>
\0 \x8 ; <control> \0 \x8 ; <control>
\0 \x9 ; <control> \0 \x9 ; <control>
\0 \xa ; <control> \0 \xa ; <control>
\0 \xb ; <control> \0 \xb ; <control>
\0 \xc ; <control> \0 \xc ; <control>
\0 \xd ; <control> \0 \xd ; <control>
\0 \xe ; <control> \0 \xe ; <control>
\0 \xf ; <control> \0 \xf ; <control>
\0 \x10 ; <control> \0 \x10 ; <control>
\0 \x11 ; <control> \0 \x11 ; <control>
\0 \x12 ; <control> \0 \x12 ; <control>
\0 \x13 ; <control> \0 \x13 ; <control>
\0 \x14 ; <control> \0 \x14 ; <control>
\0 \x15 ; <control> \0 \x15 ; <control>
\0 \x16 ; <control> \0 \x16 ; <control>
\0 \x17 ; <control> \0 \x17 ; <control>
\0 \x18 ; <control> \0 \x18 ; <control>
\0 \x19 ; <control> \0 \x19 ; <control>
\0 \x1a ; <control> \0 \x1a ; <control>
\0 \x1b ; <control> \0 \x1b ; <control>
\0 \x1c ; <control> \0 \x1c ; <control>
\0 \x1d ; <control> \0 \x1d ; <control>
\0 \x1e ; <control> \0 \x1e ; <control>
\0 \x1f ; <control> \0 \x1f ; <control>
\0 \x20 ; SPACE \0 \x20 ; SPACE
\0 \x21 ; EXCLAMATION MARK \0 \x21 ; EXCLAMATION MARK
\0 \x22 ; QUOTATION MARK \0 \x22 ; QUOTATION MARK
\0 \x23 ; NUMBER SIGN \0 \x23 ; NUMBER SIGN
\0 \x24 ; CURRENCY SIGN \0 \x24 ; CURRENCY SIGN
\0 \x25 ; PERCENT SIGN \0 \x25 ; PERCENT SIGN
\0 \x26 ; AMPERSAND \0 \x26 ; AMPERSAND
\0 \x27 ; APOSTROPHE \0 \x27 ; APOSTROPHE
\0 \x28 ; LEFT PARENTHESIS \0 \x28 ; LEFT PARENTHESIS
\0 \x29 ; RIGHT PARENTHESIS \0 \x29 ; RIGHT PARENTHESIS
\0 \x2a ; ASTERISK \0 \x2a ; ASTERISK
\0 \x2b ; PLUS SIGN \0 \x2b ; PLUS SIGN
\0 \x2c ; COMMA \0 \x2c ; COMMA
\0 \x2d ; HYPHEN-MINUS \0 \x2d ; HYPHEN-MINUS
\0 \x2e ; FULL STOP \0 \x2e ; FULL STOP
\0 \x2f ; SOLIDUS \0 \x2f ; SOLIDUS
\0 \x30 ; DIGIT ZERO \0 \x30 ; DIGIT ZERO
\0 \x31 ; DIGIT ONE \0 \x31 ; DIGIT ONE
\0 \x32 ; DIGIT TWO \0 \x32 ; DIGIT TWO
\0 \x33 ; DIGIT THREE \0 \x33 ; DIGIT THREE
\0 \x34 ; DIGIT FOUR \0 \x34 ; DIGIT FOUR
\0 \x35 ; DIGIT FIVE \0 \x35 ; DIGIT FIVE
\0 \x36 ; DIGIT SIX \0 \x36 ; DIGIT SIX
\0 \x37 ; DIGIT SEVEN \0 \x37 ; DIGIT SEVEN
\0 \x38 ; DIGIT EIGHT \0 \x38 ; DIGIT EIGHT
\0 \x39 ; DIGIT NINE \0 \x39 ; DIGIT NINE
\0 \x3a ; COLON \0 \x3a ; COLON
\0 \x3b ; SEMICOLON \0 \x3b ; SEMICOLON
\0 \x3c ; LESS-THAN SIGN \0 \x3c ; LESS-THAN SIGN
\0 \x3d ; EQUALS SIGN \0 \x3d ; EQUALS SIGN
\0 \x3e ; GREATER-THAN SIGN \0 \x3e ; GREATER-THAN SIGN
\0 \x3f ; QUESTION MARK \0 \x3f ; QUESTION MARK
\0 \x40 ; COMMERCIAL AT \0 \x40 ; COMMERCIAL AT
\0 \x41 ; LATIN CAPITAL LETTER A \0 \x41 ; LATIN CAPITAL LETTER A
\0 \x42 ; LATIN CAPITAL LETTER B \0 \x42 ; LATIN CAPITAL LETTER B
\0 \x43 ; LATIN CAPITAL LETTER C \0 \x43 ; LATIN CAPITAL LETTER C
\0 \x44 ; LATIN CAPITAL LETTER D \0 \x44 ; LATIN CAPITAL LETTER D
\0 \x45 ; LATIN CAPITAL LETTER E \0 \x45 ; LATIN CAPITAL LETTER E
\0 \x46 ; LATIN CAPITAL LETTER F \0 \x46 ; LATIN CAPITAL LETTER F
\0 \x47 ; LATIN CAPITAL LETTER G \0 \x47 ; LATIN CAPITAL LETTER G
\0 \x48 ; LATIN CAPITAL LETTER H \0 \x48 ; LATIN CAPITAL LETTER H
\0 \x49 ; LATIN CAPITAL LETTER I \0 \x49 ; LATIN CAPITAL LETTER I
\0 \x4a ; LATIN CAPITAL LETTER J \0 \x4a ; LATIN CAPITAL LETTER J
\0 \x4b ; LATIN CAPITAL LETTER K \0 \x4b ; LATIN CAPITAL LETTER K
\0 \x4c ; LATIN CAPITAL LETTER L \0 \x4c ; LATIN CAPITAL LETTER L
\0 \x4d ; LATIN CAPITAL LETTER M \0 \x4d ; LATIN CAPITAL LETTER M
\0 \x4e ; LATIN CAPITAL LETTER N \0 \x4e ; LATIN CAPITAL LETTER N
\0 \x4f ; LATIN CAPITAL LETTER O \0 \x4f ; LATIN CAPITAL LETTER O
\0 \x50 ; LATIN CAPITAL LETTER P \0 \x50 ; LATIN CAPITAL LETTER P
\0 \x51 ; LATIN CAPITAL LETTER Q \0 \x51 ; LATIN CAPITAL LETTER Q
\0 \x52 ; LATIN CAPITAL LETTER R \0 \x52 ; LATIN CAPITAL LETTER R
\0 \x53 ; LATIN CAPITAL LETTER S \0 \x53 ; LATIN CAPITAL LETTER S
\0 \x54 ; LATIN CAPITAL LETTER T \0 \x54 ; LATIN CAPITAL LETTER T
\0 \x55 ; LATIN CAPITAL LETTER U \0 \x55 ; LATIN CAPITAL LETTER U
\0 \x56 ; LATIN CAPITAL LETTER V \0 \x56 ; LATIN CAPITAL LETTER V
\0 \x57 ; LATIN CAPITAL LETTER W \0 \x57 ; LATIN CAPITAL LETTER W
\0 \x58 ; LATIN CAPITAL LETTER X \0 \x58 ; LATIN CAPITAL LETTER X
\0 \x59 ; LATIN CAPITAL LETTER Y \0 \x59 ; LATIN CAPITAL LETTER Y
\0 \x5a ; LATIN CAPITAL LETTER Z \0 \x5a ; LATIN CAPITAL LETTER Z
\0 \x5b ; LEFT SQUARE BRACKET \0 \x5b ; LEFT SQUARE BRACKET
\0 \x5c ; REVERSE SOLIDUS \0 \x5c ; REVERSE SOLIDUS
\0 \x5d ; RIGHT SQUARE BRACKET \0 \x5d ; RIGHT SQUARE BRACKET
\0 \x5e ; CIRCUMFLEX ACCENT \0 \x5e ; CIRCUMFLEX ACCENT
\0 \x5f ; LOW LINE \0 \x5f ; LOW LINE
\0 \x60 ; CYRILLIC CAPITAL LETTER YU \0 \x60 ; CYRILLIC CAPITAL LETTER YU
\0 \x61 ; CYRILLIC CAPITAL LETTER A \0 \x61 ; CYRILLIC CAPITAL LETTER A
\0 \x62 ; CYRILLIC CAPITAL LETTER BE \0 \x62 ; CYRILLIC CAPITAL LETTER BE
\0 \x63 ; CYRILLIC CAPITAL LETTER TSE \0 \x63 ; CYRILLIC CAPITAL LETTER TSE
\0 \x64 ; CYRILLIC CAPITAL LETTER DE \0 \x64 ; CYRILLIC CAPITAL LETTER DE
\0 \x65 ; CYRILLIC CAPITAL LETTER IE \0 \x65 ; CYRILLIC CAPITAL LETTER IE
\0 \x66 ; CYRILLIC CAPITAL LETTER EF \0 \x66 ; CYRILLIC CAPITAL LETTER EF
\0 \x67 ; CYRILLIC CAPITAL LETTER GHE \0 \x67 ; CYRILLIC CAPITAL LETTER GHE
\0 \x68 ; CYRILLIC CAPITAL LETTER HA \0 \x68 ; CYRILLIC CAPITAL LETTER HA
\0 \x69 ; CYRILLIC CAPITAL LETTER I \0 \x69 ; CYRILLIC CAPITAL LETTER I
\0 \x6a ; CYRILLIC CAPITAL LETTER SHORT I \0 \x6a ; CYRILLIC CAPITAL LETTER SHORT I
\0 \x6b ; CYRILLIC CAPITAL LETTER KA \0 \x6b ; CYRILLIC CAPITAL LETTER KA
\0 \x6c ; CYRILLIC CAPITAL LETTER EL \0 \x6c ; CYRILLIC CAPITAL LETTER EL
\0 \x6d ; CYRILLIC CAPITAL LETTER EM \0 \x6d ; CYRILLIC CAPITAL LETTER EM
\0 \x6e ; CYRILLIC CAPITAL LETTER EN \0 \x6e ; CYRILLIC CAPITAL LETTER EN
\0 \x6f ; CYRILLIC CAPITAL LETTER O \0 \x6f ; CYRILLIC CAPITAL LETTER O
\0 \x70 ; CYRILLIC CAPITAL LETTER PE \0 \x70 ; CYRILLIC CAPITAL LETTER PE
\0 \x71 ; CYRILLIC CAPITAL LETTER YA \0 \x71 ; CYRILLIC CAPITAL LETTER YA
\0 \x72 ; CYRILLIC CAPITAL LETTER ER \0 \x72 ; CYRILLIC CAPITAL LETTER ER
\0 \x73 ; CYRILLIC CAPITAL LETTER ES \0 \x73 ; CYRILLIC CAPITAL LETTER ES
\0 \x74 ; CYRILLIC CAPITAL LETTER TE \0 \x74 ; CYRILLIC CAPITAL LETTER TE
\0 \x75 ; CYRILLIC CAPITAL LETTER U \0 \x75 ; CYRILLIC CAPITAL LETTER U
\0 \x76 ; CYRILLIC CAPITAL LETTER ZHE \0 \x76 ; CYRILLIC CAPITAL LETTER ZHE
\0 \x77 ; CYRILLIC CAPITAL LETTER VE \0 \x77 ; CYRILLIC CAPITAL LETTER VE
\0 \x78 ; CYRILLIC CAPITAL LETTER SOFT SIGN \0 \x78 ; CYRILLIC CAPITAL LETTER SOFT SIGN
\0 \x79 ; CYRILLIC CAPITAL LETTER YERU \0 \x79 ; CYRILLIC CAPITAL LETTER YERU
\0 \x7a ; CYRILLIC CAPITAL LETTER ZE \0 \x7a ; CYRILLIC CAPITAL LETTER ZE
\0 \x7b ; CYRILLIC CAPITAL LETTER SHA \0 \x7b ; CYRILLIC CAPITAL LETTER SHA
\0 \x7c ; CYRILLIC CAPITAL LETTER E \0 \x7c ; CYRILLIC CAPITAL LETTER E
\0 \x7d ; CYRILLIC CAPITAL LETTER SHCHA \0 \x7d ; CYRILLIC CAPITAL LETTER SHCHA
\0 \x7e ; CYRILLIC CAPITAL LETTER CHE \0 \x7e ; CYRILLIC CAPITAL LETTER CHE
\0 \x7f ; <control> \0 \x7f ; <control>
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
END END

View File

@ -1,285 +1,285 @@
; $Id$ ; $Id$
; This file is a charset conversion module for Golded+ ; This file is a charset conversion module for Golded+
; Source charset is KOI-7 (KOI7), 7-bit russian charset (unixes) ; Source charset is KOI-7 (KOI7), 7-bit russian charset (unixes)
; Destination charset is KOI-8 (KOI8), 8-bit russian charset (unixes) ; Destination charset is KOI-8 (KOI8), 8-bit russian charset (unixes)
; ;
; Copyleft (c) Stas Degteff 2:5080/102@fidonet stas_degteff@users.sourceforge.net ; Copyleft (c) Stas Degteff 2:5080/102@fidonet stas_degteff@users.sourceforge.net
; ;
; Format: ID, version, level, ; Format: ID, version, level,
; from charset, to charset, ; from charset, to charset,
; 128 entries: first & second byte ; 128 entries: first & second byte
; "END" ; "END"
; Lines beginning with a ";" or a ";" after the entries are comments ; Lines beginning with a ";" or a ";" after the entries are comments
; ;
; Unkown characters are mapped to the "?" character. ; Unkown characters are mapped to the "?" character.
; ;
; \ is the escape character: \0 means decimal zero, ; \ is the escape character: \0 means decimal zero,
; \dnnn where nnn is a decimal number is the ordinal value of the character ; \dnnn where nnn is a decimal number is the ordinal value of the character
; \xnn where nn is a hexadecimal number ; \xnn where nn is a hexadecimal number
; e.g.: \d32 is the ASCII space character ; e.g.: \d32 is the ASCII space character
; Two \\ is the character "\" itself. ; Two \\ is the character "\" itself.
; ;
0 0
0 0
; ;
1 1
KOI-7 ; from charset KOI-7 ; from charset
KOI8-R ; to charset KOI8-R ; to charset
; ;
\0 \x0 ; <control> \0 \x0 ; <control>
\0 \x1 ; <control> \0 \x1 ; <control>
\0 \x2 ; <control> \0 \x2 ; <control>
\0 \x3 ; <control> \0 \x3 ; <control>
\0 \x4 ; <control> \0 \x4 ; <control>
\0 \x5 ; <control> \0 \x5 ; <control>
\0 \x6 ; <control> \0 \x6 ; <control>
\0 \x7 ; <control> \0 \x7 ; <control>
\0 \x8 ; <control> \0 \x8 ; <control>
\0 \x9 ; <control> \0 \x9 ; <control>
\0 \xa ; <control> \0 \xa ; <control>
\0 \xb ; <control> \0 \xb ; <control>
\0 \xc ; <control> \0 \xc ; <control>
\0 \xd ; <control> \0 \xd ; <control>
\0 \xe ; <control> \0 \xe ; <control>
\0 \xf ; <control> \0 \xf ; <control>
\0 \x10 ; <control> \0 \x10 ; <control>
\0 \x11 ; <control> \0 \x11 ; <control>
\0 \x12 ; <control> \0 \x12 ; <control>
\0 \x13 ; <control> \0 \x13 ; <control>
\0 \x14 ; <control> \0 \x14 ; <control>
\0 \x15 ; <control> \0 \x15 ; <control>
\0 \x16 ; <control> \0 \x16 ; <control>
\0 \x17 ; <control> \0 \x17 ; <control>
\0 \x18 ; <control> \0 \x18 ; <control>
\0 \x19 ; <control> \0 \x19 ; <control>
\0 \x1a ; <control> \0 \x1a ; <control>
\0 \x1b ; <control> \0 \x1b ; <control>
\0 \x1c ; <control> \0 \x1c ; <control>
\0 \x1d ; <control> \0 \x1d ; <control>
\0 \x1e ; <control> \0 \x1e ; <control>
\0 \x1f ; <control> \0 \x1f ; <control>
\0 \x20 ; SPACE \0 \x20 ; SPACE
\0 \x21 ; EXCLAMATION MARK \0 \x21 ; EXCLAMATION MARK
\0 \x22 ; QUOTATION MARK \0 \x22 ; QUOTATION MARK
\0 \x23 ; NUMBER SIGN \0 \x23 ; NUMBER SIGN
\0 \x24 ; (CURRENCY SIGN -> DOLLAR SIGN) \0 \x24 ; (CURRENCY SIGN -> DOLLAR SIGN)
\0 \x25 ; PERCENT SIGN \0 \x25 ; PERCENT SIGN
\0 \x26 ; AMPERSAND \0 \x26 ; AMPERSAND
\0 \x27 ; APOSTROPHE \0 \x27 ; APOSTROPHE
\0 \x28 ; LEFT PARENTHESIS \0 \x28 ; LEFT PARENTHESIS
\0 \x29 ; RIGHT PARENTHESIS \0 \x29 ; RIGHT PARENTHESIS
\0 \x2a ; ASTERISK \0 \x2a ; ASTERISK
\0 \x2b ; PLUS SIGN \0 \x2b ; PLUS SIGN
\0 \x2c ; COMMA \0 \x2c ; COMMA
\0 \x2d ; HYPHEN-MINUS \0 \x2d ; HYPHEN-MINUS
\0 \x2e ; FULL STOP \0 \x2e ; FULL STOP
\0 \x2f ; SOLIDUS \0 \x2f ; SOLIDUS
\0 \x30 ; DIGIT ZERO \0 \x30 ; DIGIT ZERO
\0 \x31 ; DIGIT ONE \0 \x31 ; DIGIT ONE
\0 \x32 ; DIGIT TWO \0 \x32 ; DIGIT TWO
\0 \x33 ; DIGIT THREE \0 \x33 ; DIGIT THREE
\0 \x34 ; DIGIT FOUR \0 \x34 ; DIGIT FOUR
\0 \x35 ; DIGIT FIVE \0 \x35 ; DIGIT FIVE
\0 \x36 ; DIGIT SIX \0 \x36 ; DIGIT SIX
\0 \x37 ; DIGIT SEVEN \0 \x37 ; DIGIT SEVEN
\0 \x38 ; DIGIT EIGHT \0 \x38 ; DIGIT EIGHT
\0 \x39 ; DIGIT NINE \0 \x39 ; DIGIT NINE
\0 \x3a ; COLON \0 \x3a ; COLON
\0 \x3b ; SEMICOLON \0 \x3b ; SEMICOLON
\0 \x3c ; LESS-THAN SIGN \0 \x3c ; LESS-THAN SIGN
\0 \x3d ; EQUALS SIGN \0 \x3d ; EQUALS SIGN
\0 \x3e ; GREATER-THAN SIGN \0 \x3e ; GREATER-THAN SIGN
\0 \x3f ; QUESTION MARK \0 \x3f ; QUESTION MARK
\0 \x40 ; COMMERCIAL AT \0 \x40 ; COMMERCIAL AT
\0 \x41 ; LATIN CAPITAL LETTER A \0 \x41 ; LATIN CAPITAL LETTER A
\0 \x42 ; LATIN CAPITAL LETTER B \0 \x42 ; LATIN CAPITAL LETTER B
\0 \x43 ; LATIN CAPITAL LETTER C \0 \x43 ; LATIN CAPITAL LETTER C
\0 \x44 ; LATIN CAPITAL LETTER D \0 \x44 ; LATIN CAPITAL LETTER D
\0 \x45 ; LATIN CAPITAL LETTER E \0 \x45 ; LATIN CAPITAL LETTER E
\0 \x46 ; LATIN CAPITAL LETTER F \0 \x46 ; LATIN CAPITAL LETTER F
\0 \x47 ; LATIN CAPITAL LETTER G \0 \x47 ; LATIN CAPITAL LETTER G
\0 \x48 ; LATIN CAPITAL LETTER H \0 \x48 ; LATIN CAPITAL LETTER H
\0 \x49 ; LATIN CAPITAL LETTER I \0 \x49 ; LATIN CAPITAL LETTER I
\0 \x4a ; LATIN CAPITAL LETTER J \0 \x4a ; LATIN CAPITAL LETTER J
\0 \x4b ; LATIN CAPITAL LETTER K \0 \x4b ; LATIN CAPITAL LETTER K
\0 \x4c ; LATIN CAPITAL LETTER L \0 \x4c ; LATIN CAPITAL LETTER L
\0 \x4d ; LATIN CAPITAL LETTER M \0 \x4d ; LATIN CAPITAL LETTER M
\0 \x4e ; LATIN CAPITAL LETTER N \0 \x4e ; LATIN CAPITAL LETTER N
\0 \x4f ; LATIN CAPITAL LETTER O \0 \x4f ; LATIN CAPITAL LETTER O
\0 \x50 ; LATIN CAPITAL LETTER P \0 \x50 ; LATIN CAPITAL LETTER P
\0 \x51 ; LATIN CAPITAL LETTER Q \0 \x51 ; LATIN CAPITAL LETTER Q
\0 \x52 ; LATIN CAPITAL LETTER R \0 \x52 ; LATIN CAPITAL LETTER R
\0 \x53 ; LATIN CAPITAL LETTER S \0 \x53 ; LATIN CAPITAL LETTER S
\0 \x54 ; LATIN CAPITAL LETTER T \0 \x54 ; LATIN CAPITAL LETTER T
\0 \x55 ; LATIN CAPITAL LETTER U \0 \x55 ; LATIN CAPITAL LETTER U
\0 \x56 ; LATIN CAPITAL LETTER V \0 \x56 ; LATIN CAPITAL LETTER V
\0 \x57 ; LATIN CAPITAL LETTER W \0 \x57 ; LATIN CAPITAL LETTER W
\0 \x58 ; LATIN CAPITAL LETTER X \0 \x58 ; LATIN CAPITAL LETTER X
\0 \x59 ; LATIN CAPITAL LETTER Y \0 \x59 ; LATIN CAPITAL LETTER Y
\0 \x5a ; LATIN CAPITAL LETTER Z \0 \x5a ; LATIN CAPITAL LETTER Z
\0 \x5b ; LEFT SQUARE BRACKET \0 \x5b ; LEFT SQUARE BRACKET
\0 \x5c ; REVERSE SOLIDUS \0 \x5c ; REVERSE SOLIDUS
\0 \x5d ; RIGHT SQUARE BRACKET \0 \x5d ; RIGHT SQUARE BRACKET
\0 \x5e ; CIRCUMFLEX ACCENT \0 \x5e ; CIRCUMFLEX ACCENT
\0 \x5f ; LOW LINE \0 \x5f ; LOW LINE
\0 \xe0 ; CYRILLIC CAPITAL LETTER YU \0 \xe0 ; CYRILLIC CAPITAL LETTER YU
\0 \xe1 ; CYRILLIC CAPITAL LETTER A \0 \xe1 ; CYRILLIC CAPITAL LETTER A
\0 \xe2 ; CYRILLIC CAPITAL LETTER BE \0 \xe2 ; CYRILLIC CAPITAL LETTER BE
\0 \xe3 ; CYRILLIC CAPITAL LETTER TSE \0 \xe3 ; CYRILLIC CAPITAL LETTER TSE
\0 \xe4 ; CYRILLIC CAPITAL LETTER DE \0 \xe4 ; CYRILLIC CAPITAL LETTER DE
\0 \xe5 ; CYRILLIC CAPITAL LETTER IE \0 \xe5 ; CYRILLIC CAPITAL LETTER IE
\0 \xe6 ; CYRILLIC CAPITAL LETTER EF \0 \xe6 ; CYRILLIC CAPITAL LETTER EF
\0 \xe7 ; CYRILLIC CAPITAL LETTER GHE \0 \xe7 ; CYRILLIC CAPITAL LETTER GHE
\0 \xe8 ; CYRILLIC CAPITAL LETTER HA \0 \xe8 ; CYRILLIC CAPITAL LETTER HA
\0 \xe9 ; CYRILLIC CAPITAL LETTER I \0 \xe9 ; CYRILLIC CAPITAL LETTER I
\0 \xea ; CYRILLIC CAPITAL LETTER SHORT I \0 \xea ; CYRILLIC CAPITAL LETTER SHORT I
\0 \xeb ; CYRILLIC CAPITAL LETTER KA \0 \xeb ; CYRILLIC CAPITAL LETTER KA
\0 \xec ; CYRILLIC CAPITAL LETTER EL \0 \xec ; CYRILLIC CAPITAL LETTER EL
\0 \xed ; CYRILLIC CAPITAL LETTER EM \0 \xed ; CYRILLIC CAPITAL LETTER EM
\0 \xee ; CYRILLIC CAPITAL LETTER EN \0 \xee ; CYRILLIC CAPITAL LETTER EN
\0 \xef ; CYRILLIC CAPITAL LETTER O \0 \xef ; CYRILLIC CAPITAL LETTER O
\0 \xf0 ; CYRILLIC CAPITAL LETTER PE \0 \xf0 ; CYRILLIC CAPITAL LETTER PE
\0 \xf1 ; CYRILLIC CAPITAL LETTER YA \0 \xf1 ; CYRILLIC CAPITAL LETTER YA
\0 \xf2 ; CYRILLIC CAPITAL LETTER ER \0 \xf2 ; CYRILLIC CAPITAL LETTER ER
\0 \xf3 ; CYRILLIC CAPITAL LETTER ES \0 \xf3 ; CYRILLIC CAPITAL LETTER ES
\0 \xf4 ; CYRILLIC CAPITAL LETTER TE \0 \xf4 ; CYRILLIC CAPITAL LETTER TE
\0 \xf5 ; CYRILLIC CAPITAL LETTER U \0 \xf5 ; CYRILLIC CAPITAL LETTER U
\0 \xf6 ; CYRILLIC CAPITAL LETTER ZHE \0 \xf6 ; CYRILLIC CAPITAL LETTER ZHE
\0 \xf7 ; CYRILLIC CAPITAL LETTER VE \0 \xf7 ; CYRILLIC CAPITAL LETTER VE
\0 \xf8 ; CYRILLIC CAPITAL LETTER SOFT SIGN \0 \xf8 ; CYRILLIC CAPITAL LETTER SOFT SIGN
\0 \xf9 ; CYRILLIC CAPITAL LETTER YERU \0 \xf9 ; CYRILLIC CAPITAL LETTER YERU
\0 \xfa ; CYRILLIC CAPITAL LETTER ZE \0 \xfa ; CYRILLIC CAPITAL LETTER ZE
\0 \xfb ; CYRILLIC CAPITAL LETTER SHA \0 \xfb ; CYRILLIC CAPITAL LETTER SHA
\0 \xfc ; CYRILLIC CAPITAL LETTER E \0 \xfc ; CYRILLIC CAPITAL LETTER E
\0 \xfd ; CYRILLIC CAPITAL LETTER SHCHA \0 \xfd ; CYRILLIC CAPITAL LETTER SHCHA
\0 \xfe ; CYRILLIC CAPITAL LETTER CHE \0 \xfe ; CYRILLIC CAPITAL LETTER CHE
\0 \x7f ; <control> \0 \x7f ; <control>
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
\0 ? ; not defined \0 ? ; not defined
END END

View File

@ -1,285 +1,285 @@
; $Id$ ; $Id$
; This file is a charset conversion module for Golded+ ; This file is a charset conversion module for Golded+
; Source charset is KOI-8 (KOI8), 8-bit russian charset (unixes) ; Source charset is KOI-8 (KOI8), 8-bit russian charset (unixes)
; Destination charset is KOI-7 (KOI7), 7-bit russian charset (unixes) ; Destination charset is KOI-7 (KOI7), 7-bit russian charset (unixes)
; ;
; Copyleft (c) Stas Degteff 2:5080/102@fidonet stas_degteff@users.sourceforge.net ; Copyleft (c) Stas Degteff 2:5080/102@fidonet stas_degteff@users.sourceforge.net
; ;
; Format: ID, version, level, ; Format: ID, version, level,
; from charset, to charset, ; from charset, to charset,
; 128 entries: first & second byte ; 128 entries: first & second byte
; "END" ; "END"
; Lines beginning with a ";" or a ";" after the entries are comments ; Lines beginning with a ";" or a ";" after the entries are comments
; ;
; Unkown characters are mapped to the "?" character. ; Unkown characters are mapped to the "?" character.
; ;
; \ is the escape character: \0 means decimal zero, ; \ is the escape character: \0 means decimal zero,
; \dnnn where nnn is a decimal number is the ordinal value of the character ; \dnnn where nnn is a decimal number is the ordinal value of the character
; \xnn where nn is a hexadecimal number ; \xnn where nn is a hexadecimal number
; e.g.: \d32 is the ASCII space character ; e.g.: \d32 is the ASCII space character
; Two \\ is the character "\" itself. ; Two \\ is the character "\" itself.
; ;
0 0
0 0
; ;
1 1
KOI8-R ; from charset KOI8-R ; from charset
KOI-7 ; to charset KOI-7 ; to charset
; ;
\0 \x0 ; <control> \0 \x0 ; <control>
\0 \x1 ; <control> \0 \x1 ; <control>
\0 \x2 ; <control> \0 \x2 ; <control>
\0 \x3 ; <control> \0 \x3 ; <control>
\0 \x4 ; <control> \0 \x4 ; <control>
\0 \x5 ; <control> \0 \x5 ; <control>
\0 \x6 ; <control> \0 \x6 ; <control>
\0 \x7 ; <control> \0 \x7 ; <control>
\0 \x8 ; <control> \0 \x8 ; <control>
\0 \x9 ; <control> \0 \x9 ; <control>
\0 \xa ; <control> \0 \xa ; <control>
\0 \xb ; <control> \0 \xb ; <control>
\0 \xc ; <control> \0 \xc ; <control>
\0 \xd ; <control> \0 \xd ; <control>
\0 \xe ; <control> \0 \xe ; <control>
\0 \xf ; <control> \0 \xf ; <control>
\0 \x10 ; <control> \0 \x10 ; <control>
\0 \x11 ; <control> \0 \x11 ; <control>
\0 \x12 ; <control> \0 \x12 ; <control>
\0 \x13 ; <control> \0 \x13 ; <control>
\0 \x14 ; <control> \0 \x14 ; <control>
\0 \x15 ; <control> \0 \x15 ; <control>
\0 \x16 ; <control> \0 \x16 ; <control>
\0 \x17 ; <control> \0 \x17 ; <control>
\0 \x18 ; <control> \0 \x18 ; <control>
\0 \x19 ; <control> \0 \x19 ; <control>
\0 \x1a ; <control> \0 \x1a ; <control>
\0 \x1b ; <control> \0 \x1b ; <control>
\0 \x1c ; <control> \0 \x1c ; <control>
\0 \x1d ; <control> \0 \x1d ; <control>
\0 \x1e ; <control> \0 \x1e ; <control>
\0 \x1f ; <control> \0 \x1f ; <control>
\0 \x20 ; SPACE \0 \x20 ; SPACE
\0 \x21 ; EXCLAMATION MARK \0 \x21 ; EXCLAMATION MARK
\0 \x22 ; QUOTATION MARK \0 \x22 ; QUOTATION MARK
\0 \x23 ; NUMBER SIGN \0 \x23 ; NUMBER SIGN
\0 \x24 ; (DOLLAR SIGN -> CURRENCY SIGN) \0 \x24 ; (DOLLAR SIGN -> CURRENCY SIGN)
\0 \x25 ; PERCENT SIGN \0 \x25 ; PERCENT SIGN
\0 \x26 ; AMPERSAND \0 \x26 ; AMPERSAND
\0 \x27 ; APOSTROPHE \0 \x27 ; APOSTROPHE
\0 \x28 ; LEFT PARENTHESIS \0 \x28 ; LEFT PARENTHESIS
\0 \x29 ; RIGHT PARENTHESIS \0 \x29 ; RIGHT PARENTHESIS
\0 \x2a ; ASTERISK \0 \x2a ; ASTERISK
\0 \x2b ; PLUS SIGN \0 \x2b ; PLUS SIGN
\0 \x2c ; COMMA \0 \x2c ; COMMA
\0 \x2d ; HYPHEN-MINUS \0 \x2d ; HYPHEN-MINUS
\0 \x2e ; FULL STOP \0 \x2e ; FULL STOP
\0 \x2f ; SOLIDUS \0 \x2f ; SOLIDUS
\0 \x30 ; DIGIT ZERO \0 \x30 ; DIGIT ZERO
\0 \x31 ; DIGIT ONE \0 \x31 ; DIGIT ONE
\0 \x32 ; DIGIT TWO \0 \x32 ; DIGIT TWO
\0 \x33 ; DIGIT THREE \0 \x33 ; DIGIT THREE
\0 \x34 ; DIGIT FOUR \0 \x34 ; DIGIT FOUR
\0 \x35 ; DIGIT FIVE \0 \x35 ; DIGIT FIVE
\0 \x36 ; DIGIT SIX \0 \x36 ; DIGIT SIX
\0 \x37 ; DIGIT SEVEN \0 \x37 ; DIGIT SEVEN
\0 \x38 ; DIGIT EIGHT \0 \x38 ; DIGIT EIGHT
\0 \x39 ; DIGIT NINE \0 \x39 ; DIGIT NINE
\0 \x3a ; COLON \0 \x3a ; COLON
\0 \x3b ; SEMICOLON \0 \x3b ; SEMICOLON
\0 \x3c ; LESS-THAN SIGN \0 \x3c ; LESS-THAN SIGN
\0 \x3d ; EQUALS SIGN \0 \x3d ; EQUALS SIGN
\0 \x3e ; GREATER-THAN SIGN \0 \x3e ; GREATER-THAN SIGN
\0 \x3f ; QUESTION MARK \0 \x3f ; QUESTION MARK
\0 \x40 ; COMMERCIAL AT \0 \x40 ; COMMERCIAL AT
\0 \x41 ; LATIN CAPITAL LETTER A \0 \x41 ; LATIN CAPITAL LETTER A
\0 \x42 ; LATIN CAPITAL LETTER B \0 \x42 ; LATIN CAPITAL LETTER B
\0 \x43 ; LATIN CAPITAL LETTER C \0 \x43 ; LATIN CAPITAL LETTER C
\0 \x44 ; LATIN CAPITAL LETTER D \0 \x44 ; LATIN CAPITAL LETTER D
\0 \x45 ; LATIN CAPITAL LETTER E \0 \x45 ; LATIN CAPITAL LETTER E
\0 \x46 ; LATIN CAPITAL LETTER F \0 \x46 ; LATIN CAPITAL LETTER F
\0 \x47 ; LATIN CAPITAL LETTER G \0 \x47 ; LATIN CAPITAL LETTER G
\0 \x48 ; LATIN CAPITAL LETTER H \0 \x48 ; LATIN CAPITAL LETTER H
\0 \x49 ; LATIN CAPITAL LETTER I \0 \x49 ; LATIN CAPITAL LETTER I
\0 \x4a ; LATIN CAPITAL LETTER J \0 \x4a ; LATIN CAPITAL LETTER J
\0 \x4b ; LATIN CAPITAL LETTER K \0 \x4b ; LATIN CAPITAL LETTER K
\0 \x4c ; LATIN CAPITAL LETTER L \0 \x4c ; LATIN CAPITAL LETTER L
\0 \x4d ; LATIN CAPITAL LETTER M \0 \x4d ; LATIN CAPITAL LETTER M
\0 \x4e ; LATIN CAPITAL LETTER N \0 \x4e ; LATIN CAPITAL LETTER N
\0 \x4f ; LATIN CAPITAL LETTER O \0 \x4f ; LATIN CAPITAL LETTER O
\0 \x50 ; LATIN CAPITAL LETTER P \0 \x50 ; LATIN CAPITAL LETTER P
\0 \x51 ; LATIN CAPITAL LETTER Q \0 \x51 ; LATIN CAPITAL LETTER Q
\0 \x52 ; LATIN CAPITAL LETTER R \0 \x52 ; LATIN CAPITAL LETTER R
\0 \x53 ; LATIN CAPITAL LETTER S \0 \x53 ; LATIN CAPITAL LETTER S
\0 \x54 ; LATIN CAPITAL LETTER T \0 \x54 ; LATIN CAPITAL LETTER T
\0 \x55 ; LATIN CAPITAL LETTER U \0 \x55 ; LATIN CAPITAL LETTER U
\0 \x56 ; LATIN CAPITAL LETTER V \0 \x56 ; LATIN CAPITAL LETTER V
\0 \x57 ; LATIN CAPITAL LETTER W \0 \x57 ; LATIN CAPITAL LETTER W
\0 \x58 ; LATIN CAPITAL LETTER X \0 \x58 ; LATIN CAPITAL LETTER X
\0 \x59 ; LATIN CAPITAL LETTER Y \0 \x59 ; LATIN CAPITAL LETTER Y
\0 \x5a ; LATIN CAPITAL LETTER Z \0 \x5a ; LATIN CAPITAL LETTER Z
\0 \x5b ; LEFT SQUARE BRACKET \0 \x5b ; LEFT SQUARE BRACKET
\0 \x5c ; REVERSE SOLIDUS \0 \x5c ; REVERSE SOLIDUS
\0 \x5d ; RIGHT SQUARE BRACKET \0 \x5d ; RIGHT SQUARE BRACKET
\0 \x5e ; CIRCUMFLEX ACCENT \0 \x5e ; CIRCUMFLEX ACCENT
\0 \x5f ; LOW LINE \0 \x5f ; LOW LINE
\0 ? ; (GRAVE ACCENT) \0 ? ; (GRAVE ACCENT)
\0 \x41 ; (LATIN SMALL LETTER A -> LATIN CAPITAL LETTER A) \0 \x41 ; (LATIN SMALL LETTER A -> LATIN CAPITAL LETTER A)
\0 \x42 ; (LATIN SMALL LETTER B -> LATIN CAPITAL LETTER B) \0 \x42 ; (LATIN SMALL LETTER B -> LATIN CAPITAL LETTER B)
\0 \x43 ; (LATIN SMALL LETTER C -> LATIN CAPITAL LETTER C) \0 \x43 ; (LATIN SMALL LETTER C -> LATIN CAPITAL LETTER C)
\0 \x44 ; (LATIN SMALL LETTER D -> LATIN CAPITAL LETTER D) \0 \x44 ; (LATIN SMALL LETTER D -> LATIN CAPITAL LETTER D)
\0 \x45 ; (LATIN SMALL LETTER E -> LATIN CAPITAL LETTER E) \0 \x45 ; (LATIN SMALL LETTER E -> LATIN CAPITAL LETTER E)
\0 \x46 ; (LATIN SMALL LETTER F -> LATIN CAPITAL LETTER F) \0 \x46 ; (LATIN SMALL LETTER F -> LATIN CAPITAL LETTER F)
\0 \x47 ; (LATIN SMALL LETTER G -> LATIN CAPITAL LETTER G) \0 \x47 ; (LATIN SMALL LETTER G -> LATIN CAPITAL LETTER G)
\0 \x48 ; (LATIN SMALL LETTER H -> LATIN CAPITAL LETTER H) \0 \x48 ; (LATIN SMALL LETTER H -> LATIN CAPITAL LETTER H)
\0 \x49 ; (LATIN SMALL LETTER I -> LATIN CAPITAL LETTER I) \0 \x49 ; (LATIN SMALL LETTER I -> LATIN CAPITAL LETTER I)
\0 \x4a ; (LATIN SMALL LETTER J -> LATIN CAPITAL LETTER J) \0 \x4a ; (LATIN SMALL LETTER J -> LATIN CAPITAL LETTER J)
\0 \x4b ; (LATIN SMALL LETTER K -> LATIN CAPITAL LETTER K) \0 \x4b ; (LATIN SMALL LETTER K -> LATIN CAPITAL LETTER K)
\0 \x4c ; (LATIN SMALL LETTER L -> LATIN CAPITAL LETTER L) \0 \x4c ; (LATIN SMALL LETTER L -> LATIN CAPITAL LETTER L)
\0 \x4d ; (LATIN SMALL LETTER M -> LATIN CAPITAL LETTER M) \0 \x4d ; (LATIN SMALL LETTER M -> LATIN CAPITAL LETTER M)
\0 \x4e ; (LATIN SMALL LETTER N -> LATIN CAPITAL LETTER N) \0 \x4e ; (LATIN SMALL LETTER N -> LATIN CAPITAL LETTER N)
\0 \x4f ; (LATIN SMALL LETTER O -> LATIN CAPITAL LETTER O) \0 \x4f ; (LATIN SMALL LETTER O -> LATIN CAPITAL LETTER O)
\0 \x50 ; (LATIN SMALL LETTER P -> LATIN CAPITAL LETTER P) \0 \x50 ; (LATIN SMALL LETTER P -> LATIN CAPITAL LETTER P)
\0 \x51 ; (LATIN SMALL LETTER Q -> LATIN CAPITAL LETTER Q) \0 \x51 ; (LATIN SMALL LETTER Q -> LATIN CAPITAL LETTER Q)
\0 \x52 ; (LATIN SMALL LETTER R -> LATIN CAPITAL LETTER R) \0 \x52 ; (LATIN SMALL LETTER R -> LATIN CAPITAL LETTER R)
\0 \x53 ; (LATIN SMALL LETTER S -> LATIN CAPITAL LETTER S) \0 \x53 ; (LATIN SMALL LETTER S -> LATIN CAPITAL LETTER S)
\0 \x54 ; (LATIN SMALL LETTER T -> LATIN CAPITAL LETTER T) \0 \x54 ; (LATIN SMALL LETTER T -> LATIN CAPITAL LETTER T)
\0 \x55 ; (LATIN SMALL LETTER U -> LATIN CAPITAL LETTER U) \0 \x55 ; (LATIN SMALL LETTER U -> LATIN CAPITAL LETTER U)
\0 \x56 ; (LATIN SMALL LETTER V -> LATIN CAPITAL LETTER V) \0 \x56 ; (LATIN SMALL LETTER V -> LATIN CAPITAL LETTER V)
\0 \x57 ; (LATIN SMALL LETTER W -> LATIN CAPITAL LETTER W) \0 \x57 ; (LATIN SMALL LETTER W -> LATIN CAPITAL LETTER W)
\0 \x58 ; (LATIN SMALL LETTER X -> LATIN CAPITAL LETTER X) \0 \x58 ; (LATIN SMALL LETTER X -> LATIN CAPITAL LETTER X)
\0 \x59 ; (LATIN SMALL LETTER Y -> LATIN CAPITAL LETTER Y) \0 \x59 ; (LATIN SMALL LETTER Y -> LATIN CAPITAL LETTER Y)
\0 \x5a ; (LATIN SMALL LETTER Z -> LATIN CAPITAL LETTER Z) \0 \x5a ; (LATIN SMALL LETTER Z -> LATIN CAPITAL LETTER Z)
\0 [ ; (LEFT CURLY BRACKET) \0 [ ; (LEFT CURLY BRACKET)
\0 I ; (VERTICAL LINE) \0 I ; (VERTICAL LINE)
\0 ] ; (RIGHT CURLY BRACKET) \0 ] ; (RIGHT CURLY BRACKET)
\0 ? ; (TILDE) \0 ? ; (TILDE)
\0 \x7f ; <control> \0 \x7f ; <control>
\0 ? ; (BOX DRAWINGS LIGHT HORIZONTAL) \0 ? ; (BOX DRAWINGS LIGHT HORIZONTAL)
\0 ? ; (BOX DRAWINGS LIGHT VERTICAL) \0 ? ; (BOX DRAWINGS LIGHT VERTICAL)
\0 ? ; (BOX DRAWINGS LIGHT DOWN AND RIGHT) \0 ? ; (BOX DRAWINGS LIGHT DOWN AND RIGHT)
\0 ? ; (BOX DRAWINGS LIGHT DOWN AND LEFT) \0 ? ; (BOX DRAWINGS LIGHT DOWN AND LEFT)
\0 ? ; (BOX DRAWINGS LIGHT UP AND RIGHT) \0 ? ; (BOX DRAWINGS LIGHT UP AND RIGHT)
\0 ? ; (BOX DRAWINGS LIGHT UP AND LEFT) \0 ? ; (BOX DRAWINGS LIGHT UP AND LEFT)
\0 ? ; (BOX DRAWINGS LIGHT VERTICAL AND RIGHT) \0 ? ; (BOX DRAWINGS LIGHT VERTICAL AND RIGHT)
\0 ? ; (BOX DRAWINGS LIGHT VERTICAL AND LEFT) \0 ? ; (BOX DRAWINGS LIGHT VERTICAL AND LEFT)
\0 ? ; (BOX DRAWINGS LIGHT DOWN AND HORIZONTAL) \0 ? ; (BOX DRAWINGS LIGHT DOWN AND HORIZONTAL)
\0 ? ; (BOX DRAWINGS LIGHT UP AND HORIZONTAL) \0 ? ; (BOX DRAWINGS LIGHT UP AND HORIZONTAL)
\0 ? ; (BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL) \0 ? ; (BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL)
\0 ? ; (UPPER HALF BLOCK) \0 ? ; (UPPER HALF BLOCK)
\0 ? ; (LOWER HALF BLOCK) \0 ? ; (LOWER HALF BLOCK)
\0 ? ; (FULL BLOCK) \0 ? ; (FULL BLOCK)
\0 ? ; (LEFT HALF BLOCK) \0 ? ; (LEFT HALF BLOCK)
\0 ? ; (RIGHT HALF BLOCK) \0 ? ; (RIGHT HALF BLOCK)
\0 ? ; (LIGHT SHADE) \0 ? ; (LIGHT SHADE)
\0 ? ; (MEDIUM SHADE) \0 ? ; (MEDIUM SHADE)
\0 ? ; (DARK SHADE) \0 ? ; (DARK SHADE)
\0 ? ; (TOP HALF INTEGRAL) \0 ? ; (TOP HALF INTEGRAL)
\0 ? ; (BLACK SQUARE) \0 ? ; (BLACK SQUARE)
\0 ? ; (BULLET) \0 ? ; (BULLET)
\0 ? ; (SQUARE ROOT) \0 ? ; (SQUARE ROOT)
\0 ? ; (ALMOST EQUAL TO) \0 ? ; (ALMOST EQUAL TO)
\0 ? ; (LESS-THAN OR EQUAL TO) \0 ? ; (LESS-THAN OR EQUAL TO)
\x3e \x3d ; GREATER-THAN SIGN + EQUALS SIGN \x3e \x3d ; GREATER-THAN SIGN + EQUALS SIGN
\0 \x20 ; SPACE \0 \x20 ; SPACE
\0 ? ; (BOTTOM HALF INTEGRAL) \0 ? ; (BOTTOM HALF INTEGRAL)
\0 ? ; (DEGREE SIGN) \0 ? ; (DEGREE SIGN)
\0 \x32 ; DIGIT TWO \0 \x32 ; DIGIT TWO
\0 ? ; (MIDDLE DOT) \0 ? ; (MIDDLE DOT)
\0 \x2f ; SOLIDUS \0 \x2f ; SOLIDUS
\0 ? ; (BOX DRAWINGS DOUBLE HORIZONTAL) \0 ? ; (BOX DRAWINGS DOUBLE HORIZONTAL)
\0 ? ; (BOX DRAWINGS DOUBLE VERTICAL) \0 ? ; (BOX DRAWINGS DOUBLE VERTICAL)
\0 ? ; (BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE) \0 ? ; (BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE)
\0 ? ; (CYRILLIC SMALL LETTER IO) \0 ? ; (CYRILLIC SMALL LETTER IO)
\0 ? ; (BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE) \0 ? ; (BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE)
\0 ? ; (BOX DRAWINGS DOUBLE DOWN AND RIGHT) \0 ? ; (BOX DRAWINGS DOUBLE DOWN AND RIGHT)
\0 ? ; (BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE) \0 ? ; (BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE)
\0 ? ; (BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE) \0 ? ; (BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE)
\0 ? ; (BOX DRAWINGS DOUBLE DOWN AND LEFT) \0 ? ; (BOX DRAWINGS DOUBLE DOWN AND LEFT)
\0 ? ; (BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE) \0 ? ; (BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE)
\0 ? ; (BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE) \0 ? ; (BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE)
\0 ? ; (BOX DRAWINGS DOUBLE UP AND RIGHT) \0 ? ; (BOX DRAWINGS DOUBLE UP AND RIGHT)
\0 ? ; (BOX DRAWINGS UP SINGLE AND LEFT DOUBLE) \0 ? ; (BOX DRAWINGS UP SINGLE AND LEFT DOUBLE)
\0 ? ; (BOX DRAWINGS UP DOUBLE AND LEFT SINGLE) \0 ? ; (BOX DRAWINGS UP DOUBLE AND LEFT SINGLE)
\0 ? ; (BOX DRAWINGS DOUBLE UP AND LEFT) \0 ? ; (BOX DRAWINGS DOUBLE UP AND LEFT)
\0 ? ; (BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE) \0 ? ; (BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE)
\0 ? ; (BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE) \0 ? ; (BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE)
\0 ? ; (BOX DRAWINGS DOUBLE VERTICAL AND RIGHT) \0 ? ; (BOX DRAWINGS DOUBLE VERTICAL AND RIGHT)
\0 ? ; (BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE) \0 ? ; (BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE)
\0 ? ; (CYRILLIC CAPITAL LETTER IO) \0 ? ; (CYRILLIC CAPITAL LETTER IO)
\0 ? ; (BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE) \0 ? ; (BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE)
\0 ? ; (BOX DRAWINGS DOUBLE VERTICAL AND LEFT) \0 ? ; (BOX DRAWINGS DOUBLE VERTICAL AND LEFT)
\0 ? ; (BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE) \0 ? ; (BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE)
\0 ? ; (BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE) \0 ? ; (BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE)
\0 ? ; (BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL) \0 ? ; (BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL)
\0 ? ; (BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE) \0 ? ; (BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE)
\0 ? ; (BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE) \0 ? ; (BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE)
\0 ? ; (BOX DRAWINGS DOUBLE UP AND HORIZONTAL) \0 ? ; (BOX DRAWINGS DOUBLE UP AND HORIZONTAL)
\0 ? ; (BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE) \0 ? ; (BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE)
\0 ? ; (BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE) \0 ? ; (BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE)
\0 ? ; (BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL) \0 ? ; (BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL)
\x28 \x43 \x29 ; Copyrigth sign: LEFT PARENTHESIS + LATIN CAPITAL LETTER C + RIGHT PARENTHESIS \x28 \x43 \x29 ; Copyrigth sign: LEFT PARENTHESIS + LATIN CAPITAL LETTER C + RIGHT PARENTHESIS
\0 \x60 ; (CYRILLIC SMALL LETTER YU) \0 \x60 ; (CYRILLIC SMALL LETTER YU)
\0 \x61 ; (CYRILLIC SMALL LETTER A) \0 \x61 ; (CYRILLIC SMALL LETTER A)
\0 \x62 ; (CYRILLIC SMALL LETTER BE -> CYRILLIC CAPITAL LETTER BE) \0 \x62 ; (CYRILLIC SMALL LETTER BE -> CYRILLIC CAPITAL LETTER BE)
\0 \x63 ; (CYRILLIC SMALL LETTER TSE -> CYRILLIC SMALL LETTER TSE) \0 \x63 ; (CYRILLIC SMALL LETTER TSE -> CYRILLIC SMALL LETTER TSE)
\0 \x64 ; (CYRILLIC SMALL LETTER DE) \0 \x64 ; (CYRILLIC SMALL LETTER DE)
\0 \x65 ; (CYRILLIC SMALL LETTER IE) \0 \x65 ; (CYRILLIC SMALL LETTER IE)
\0 \x66 ; (CYRILLIC SMALL LETTER EF) \0 \x66 ; (CYRILLIC SMALL LETTER EF)
\0 \x67 ; (CYRILLIC SMALL LETTER GHE) \0 \x67 ; (CYRILLIC SMALL LETTER GHE)
\0 \x68 ; (CYRILLIC SMALL LETTER HA) \0 \x68 ; (CYRILLIC SMALL LETTER HA)
\0 \x69 ; (CYRILLIC SMALL LETTER I) \0 \x69 ; (CYRILLIC SMALL LETTER I)
\0 \x6a ; (CYRILLIC SMALL LETTER SHORT I) \0 \x6a ; (CYRILLIC SMALL LETTER SHORT I)
\0 \x6b ; (CYRILLIC SMALL LETTER KA) \0 \x6b ; (CYRILLIC SMALL LETTER KA)
\0 \x6c ; (CYRILLIC SMALL LETTER EL) \0 \x6c ; (CYRILLIC SMALL LETTER EL)
\0 \x6d ; (CYRILLIC SMALL LETTER EM) \0 \x6d ; (CYRILLIC SMALL LETTER EM)
\0 \x6e ; (CYRILLIC SMALL LETTER EN) \0 \x6e ; (CYRILLIC SMALL LETTER EN)
\0 \x6f ; (CYRILLIC SMALL LETTER O) \0 \x6f ; (CYRILLIC SMALL LETTER O)
\0 \x70 ; (CYRILLIC SMALL LETTER PE) \0 \x70 ; (CYRILLIC SMALL LETTER PE)
\0 \x71 ; (CYRILLIC SMALL LETTER YA) \0 \x71 ; (CYRILLIC SMALL LETTER YA)
\0 \x72 ; (CYRILLIC SMALL LETTER ER) \0 \x72 ; (CYRILLIC SMALL LETTER ER)
\0 \x73 ; (CYRILLIC SMALL LETTER ES) \0 \x73 ; (CYRILLIC SMALL LETTER ES)
\0 \x74 ; (CYRILLIC SMALL LETTER TE) \0 \x74 ; (CYRILLIC SMALL LETTER TE)
\0 \x75 ; (CYRILLIC SMALL LETTER U) \0 \x75 ; (CYRILLIC SMALL LETTER U)
\0 \x76 ; (CYRILLIC SMALL LETTER ZHE) \0 \x76 ; (CYRILLIC SMALL LETTER ZHE)
\0 \x77 ; (CYRILLIC SMALL LETTER VE) \0 \x77 ; (CYRILLIC SMALL LETTER VE)
\0 \x78 ; (CYRILLIC SMALL LETTER SOFT SIGN) \0 \x78 ; (CYRILLIC SMALL LETTER SOFT SIGN)
\0 \x79 ; (CYRILLIC SMALL LETTER YERU) \0 \x79 ; (CYRILLIC SMALL LETTER YERU)
\0 \x7a ; (CYRILLIC SMALL LETTER ZE) \0 \x7a ; (CYRILLIC SMALL LETTER ZE)
\0 \x7b ; (CYRILLIC SMALL LETTER SHA) \0 \x7b ; (CYRILLIC SMALL LETTER SHA)
\0 \x7c ; (CYRILLIC SMALL LETTER E) \0 \x7c ; (CYRILLIC SMALL LETTER E)
\0 \x7d ; (CYRILLIC SMALL LETTER SHCHA) \0 \x7d ; (CYRILLIC SMALL LETTER SHCHA)
\0 \x7e ; (CYRILLIC SMALL LETTER CHE) \0 \x7e ; (CYRILLIC SMALL LETTER CHE)
\0 ? ; (CYRILLIC SMALL LETTER HARD SIGN) \0 ? ; (CYRILLIC SMALL LETTER HARD SIGN)
\0 \x60 ; CYRILLIC CAPITAL LETTER YU \0 \x60 ; CYRILLIC CAPITAL LETTER YU
\0 \x61 ; CYRILLIC CAPITAL LETTER A \0 \x61 ; CYRILLIC CAPITAL LETTER A
\0 \x62 ; CYRILLIC CAPITAL LETTER BE \0 \x62 ; CYRILLIC CAPITAL LETTER BE
\0 \x63 ; CYRILLIC CAPITAL LETTER TSE \0 \x63 ; CYRILLIC CAPITAL LETTER TSE
\0 \x64 ; CYRILLIC CAPITAL LETTER DE \0 \x64 ; CYRILLIC CAPITAL LETTER DE
\0 \x65 ; CYRILLIC CAPITAL LETTER IE \0 \x65 ; CYRILLIC CAPITAL LETTER IE
\0 \x66 ; CYRILLIC CAPITAL LETTER EF \0 \x66 ; CYRILLIC CAPITAL LETTER EF
\0 \x67 ; CYRILLIC CAPITAL LETTER GHE \0 \x67 ; CYRILLIC CAPITAL LETTER GHE
\0 \x68 ; CYRILLIC CAPITAL LETTER HA \0 \x68 ; CYRILLIC CAPITAL LETTER HA
\0 \x69 ; CYRILLIC CAPITAL LETTER I \0 \x69 ; CYRILLIC CAPITAL LETTER I
\0 \x6a ; CYRILLIC CAPITAL LETTER SHORT I \0 \x6a ; CYRILLIC CAPITAL LETTER SHORT I
\0 \x6b ; CYRILLIC CAPITAL LETTER KA \0 \x6b ; CYRILLIC CAPITAL LETTER KA
\0 \x6c ; CYRILLIC CAPITAL LETTER EL \0 \x6c ; CYRILLIC CAPITAL LETTER EL
\0 \x6d ; CYRILLIC CAPITAL LETTER EM \0 \x6d ; CYRILLIC CAPITAL LETTER EM
\0 \x6e ; CYRILLIC CAPITAL LETTER EN \0 \x6e ; CYRILLIC CAPITAL LETTER EN
\0 \x6f ; CYRILLIC CAPITAL LETTER O \0 \x6f ; CYRILLIC CAPITAL LETTER O
\0 \x70 ; CYRILLIC CAPITAL LETTER PE \0 \x70 ; CYRILLIC CAPITAL LETTER PE
\0 \x71 ; CYRILLIC CAPITAL LETTER YA \0 \x71 ; CYRILLIC CAPITAL LETTER YA
\0 \x72 ; CYRILLIC CAPITAL LETTER ER \0 \x72 ; CYRILLIC CAPITAL LETTER ER
\0 \x73 ; CYRILLIC CAPITAL LETTER ES \0 \x73 ; CYRILLIC CAPITAL LETTER ES
\0 \x74 ; CYRILLIC CAPITAL LETTER TE \0 \x74 ; CYRILLIC CAPITAL LETTER TE
\0 \x75 ; CYRILLIC CAPITAL LETTER U \0 \x75 ; CYRILLIC CAPITAL LETTER U
\0 \x76 ; CYRILLIC CAPITAL LETTER ZHE \0 \x76 ; CYRILLIC CAPITAL LETTER ZHE
\0 \x77 ; CYRILLIC CAPITAL LETTER VE \0 \x77 ; CYRILLIC CAPITAL LETTER VE
\0 \x78 ; CYRILLIC CAPITAL LETTER SOFT SIGN \0 \x78 ; CYRILLIC CAPITAL LETTER SOFT SIGN
\0 \x79 ; CYRILLIC CAPITAL LETTER YERU \0 \x79 ; CYRILLIC CAPITAL LETTER YERU
\0 \x7a ; CYRILLIC CAPITAL LETTER ZE \0 \x7a ; CYRILLIC CAPITAL LETTER ZE
\0 \x7b ; CYRILLIC CAPITAL LETTER SHA \0 \x7b ; CYRILLIC CAPITAL LETTER SHA
\0 \x7c ; CYRILLIC CAPITAL LETTER E \0 \x7c ; CYRILLIC CAPITAL LETTER E
\0 \x7d ; CYRILLIC CAPITAL LETTER SHCHA \0 \x7d ; CYRILLIC CAPITAL LETTER SHCHA
\0 \x7e ; CYRILLIC CAPITAL LETTER CHE \0 \x7e ; CYRILLIC CAPITAL LETTER CHE
\0 ? ; (CYRILLIC CAPITAL LETTER HARD SIGN) \0 ? ; (CYRILLIC CAPITAL LETTER HARD SIGN)
END END