xref: /third_party/python/Lib/encodings/cp437.py (revision 7db96d56)
17db96d56Sopenharmony_ci""" Python Character Mapping Codec cp437 generated from 'VENDORS/MICSFT/PC/CP437.TXT' with gencodec.py.
27db96d56Sopenharmony_ci
37db96d56Sopenharmony_ci"""#"
47db96d56Sopenharmony_ci
57db96d56Sopenharmony_ciimport codecs
67db96d56Sopenharmony_ci
77db96d56Sopenharmony_ci### Codec APIs
87db96d56Sopenharmony_ci
97db96d56Sopenharmony_ciclass Codec(codecs.Codec):
107db96d56Sopenharmony_ci
117db96d56Sopenharmony_ci    def encode(self,input,errors='strict'):
127db96d56Sopenharmony_ci        return codecs.charmap_encode(input,errors,encoding_map)
137db96d56Sopenharmony_ci
147db96d56Sopenharmony_ci    def decode(self,input,errors='strict'):
157db96d56Sopenharmony_ci        return codecs.charmap_decode(input,errors,decoding_table)
167db96d56Sopenharmony_ci
177db96d56Sopenharmony_ciclass IncrementalEncoder(codecs.IncrementalEncoder):
187db96d56Sopenharmony_ci    def encode(self, input, final=False):
197db96d56Sopenharmony_ci        return codecs.charmap_encode(input,self.errors,encoding_map)[0]
207db96d56Sopenharmony_ci
217db96d56Sopenharmony_ciclass IncrementalDecoder(codecs.IncrementalDecoder):
227db96d56Sopenharmony_ci    def decode(self, input, final=False):
237db96d56Sopenharmony_ci        return codecs.charmap_decode(input,self.errors,decoding_table)[0]
247db96d56Sopenharmony_ci
257db96d56Sopenharmony_ciclass StreamWriter(Codec,codecs.StreamWriter):
267db96d56Sopenharmony_ci    pass
277db96d56Sopenharmony_ci
287db96d56Sopenharmony_ciclass StreamReader(Codec,codecs.StreamReader):
297db96d56Sopenharmony_ci    pass
307db96d56Sopenharmony_ci
317db96d56Sopenharmony_ci### encodings module API
327db96d56Sopenharmony_ci
337db96d56Sopenharmony_cidef getregentry():
347db96d56Sopenharmony_ci    return codecs.CodecInfo(
357db96d56Sopenharmony_ci        name='cp437',
367db96d56Sopenharmony_ci        encode=Codec().encode,
377db96d56Sopenharmony_ci        decode=Codec().decode,
387db96d56Sopenharmony_ci        incrementalencoder=IncrementalEncoder,
397db96d56Sopenharmony_ci        incrementaldecoder=IncrementalDecoder,
407db96d56Sopenharmony_ci        streamreader=StreamReader,
417db96d56Sopenharmony_ci        streamwriter=StreamWriter,
427db96d56Sopenharmony_ci    )
437db96d56Sopenharmony_ci
447db96d56Sopenharmony_ci### Decoding Map
457db96d56Sopenharmony_ci
467db96d56Sopenharmony_cidecoding_map = codecs.make_identity_dict(range(256))
477db96d56Sopenharmony_cidecoding_map.update({
487db96d56Sopenharmony_ci    0x0080: 0x00c7,     #  LATIN CAPITAL LETTER C WITH CEDILLA
497db96d56Sopenharmony_ci    0x0081: 0x00fc,     #  LATIN SMALL LETTER U WITH DIAERESIS
507db96d56Sopenharmony_ci    0x0082: 0x00e9,     #  LATIN SMALL LETTER E WITH ACUTE
517db96d56Sopenharmony_ci    0x0083: 0x00e2,     #  LATIN SMALL LETTER A WITH CIRCUMFLEX
527db96d56Sopenharmony_ci    0x0084: 0x00e4,     #  LATIN SMALL LETTER A WITH DIAERESIS
537db96d56Sopenharmony_ci    0x0085: 0x00e0,     #  LATIN SMALL LETTER A WITH GRAVE
547db96d56Sopenharmony_ci    0x0086: 0x00e5,     #  LATIN SMALL LETTER A WITH RING ABOVE
557db96d56Sopenharmony_ci    0x0087: 0x00e7,     #  LATIN SMALL LETTER C WITH CEDILLA
567db96d56Sopenharmony_ci    0x0088: 0x00ea,     #  LATIN SMALL LETTER E WITH CIRCUMFLEX
577db96d56Sopenharmony_ci    0x0089: 0x00eb,     #  LATIN SMALL LETTER E WITH DIAERESIS
587db96d56Sopenharmony_ci    0x008a: 0x00e8,     #  LATIN SMALL LETTER E WITH GRAVE
597db96d56Sopenharmony_ci    0x008b: 0x00ef,     #  LATIN SMALL LETTER I WITH DIAERESIS
607db96d56Sopenharmony_ci    0x008c: 0x00ee,     #  LATIN SMALL LETTER I WITH CIRCUMFLEX
617db96d56Sopenharmony_ci    0x008d: 0x00ec,     #  LATIN SMALL LETTER I WITH GRAVE
627db96d56Sopenharmony_ci    0x008e: 0x00c4,     #  LATIN CAPITAL LETTER A WITH DIAERESIS
637db96d56Sopenharmony_ci    0x008f: 0x00c5,     #  LATIN CAPITAL LETTER A WITH RING ABOVE
647db96d56Sopenharmony_ci    0x0090: 0x00c9,     #  LATIN CAPITAL LETTER E WITH ACUTE
657db96d56Sopenharmony_ci    0x0091: 0x00e6,     #  LATIN SMALL LIGATURE AE
667db96d56Sopenharmony_ci    0x0092: 0x00c6,     #  LATIN CAPITAL LIGATURE AE
677db96d56Sopenharmony_ci    0x0093: 0x00f4,     #  LATIN SMALL LETTER O WITH CIRCUMFLEX
687db96d56Sopenharmony_ci    0x0094: 0x00f6,     #  LATIN SMALL LETTER O WITH DIAERESIS
697db96d56Sopenharmony_ci    0x0095: 0x00f2,     #  LATIN SMALL LETTER O WITH GRAVE
707db96d56Sopenharmony_ci    0x0096: 0x00fb,     #  LATIN SMALL LETTER U WITH CIRCUMFLEX
717db96d56Sopenharmony_ci    0x0097: 0x00f9,     #  LATIN SMALL LETTER U WITH GRAVE
727db96d56Sopenharmony_ci    0x0098: 0x00ff,     #  LATIN SMALL LETTER Y WITH DIAERESIS
737db96d56Sopenharmony_ci    0x0099: 0x00d6,     #  LATIN CAPITAL LETTER O WITH DIAERESIS
747db96d56Sopenharmony_ci    0x009a: 0x00dc,     #  LATIN CAPITAL LETTER U WITH DIAERESIS
757db96d56Sopenharmony_ci    0x009b: 0x00a2,     #  CENT SIGN
767db96d56Sopenharmony_ci    0x009c: 0x00a3,     #  POUND SIGN
777db96d56Sopenharmony_ci    0x009d: 0x00a5,     #  YEN SIGN
787db96d56Sopenharmony_ci    0x009e: 0x20a7,     #  PESETA SIGN
797db96d56Sopenharmony_ci    0x009f: 0x0192,     #  LATIN SMALL LETTER F WITH HOOK
807db96d56Sopenharmony_ci    0x00a0: 0x00e1,     #  LATIN SMALL LETTER A WITH ACUTE
817db96d56Sopenharmony_ci    0x00a1: 0x00ed,     #  LATIN SMALL LETTER I WITH ACUTE
827db96d56Sopenharmony_ci    0x00a2: 0x00f3,     #  LATIN SMALL LETTER O WITH ACUTE
837db96d56Sopenharmony_ci    0x00a3: 0x00fa,     #  LATIN SMALL LETTER U WITH ACUTE
847db96d56Sopenharmony_ci    0x00a4: 0x00f1,     #  LATIN SMALL LETTER N WITH TILDE
857db96d56Sopenharmony_ci    0x00a5: 0x00d1,     #  LATIN CAPITAL LETTER N WITH TILDE
867db96d56Sopenharmony_ci    0x00a6: 0x00aa,     #  FEMININE ORDINAL INDICATOR
877db96d56Sopenharmony_ci    0x00a7: 0x00ba,     #  MASCULINE ORDINAL INDICATOR
887db96d56Sopenharmony_ci    0x00a8: 0x00bf,     #  INVERTED QUESTION MARK
897db96d56Sopenharmony_ci    0x00a9: 0x2310,     #  REVERSED NOT SIGN
907db96d56Sopenharmony_ci    0x00aa: 0x00ac,     #  NOT SIGN
917db96d56Sopenharmony_ci    0x00ab: 0x00bd,     #  VULGAR FRACTION ONE HALF
927db96d56Sopenharmony_ci    0x00ac: 0x00bc,     #  VULGAR FRACTION ONE QUARTER
937db96d56Sopenharmony_ci    0x00ad: 0x00a1,     #  INVERTED EXCLAMATION MARK
947db96d56Sopenharmony_ci    0x00ae: 0x00ab,     #  LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
957db96d56Sopenharmony_ci    0x00af: 0x00bb,     #  RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
967db96d56Sopenharmony_ci    0x00b0: 0x2591,     #  LIGHT SHADE
977db96d56Sopenharmony_ci    0x00b1: 0x2592,     #  MEDIUM SHADE
987db96d56Sopenharmony_ci    0x00b2: 0x2593,     #  DARK SHADE
997db96d56Sopenharmony_ci    0x00b3: 0x2502,     #  BOX DRAWINGS LIGHT VERTICAL
1007db96d56Sopenharmony_ci    0x00b4: 0x2524,     #  BOX DRAWINGS LIGHT VERTICAL AND LEFT
1017db96d56Sopenharmony_ci    0x00b5: 0x2561,     #  BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE
1027db96d56Sopenharmony_ci    0x00b6: 0x2562,     #  BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE
1037db96d56Sopenharmony_ci    0x00b7: 0x2556,     #  BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE
1047db96d56Sopenharmony_ci    0x00b8: 0x2555,     #  BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE
1057db96d56Sopenharmony_ci    0x00b9: 0x2563,     #  BOX DRAWINGS DOUBLE VERTICAL AND LEFT
1067db96d56Sopenharmony_ci    0x00ba: 0x2551,     #  BOX DRAWINGS DOUBLE VERTICAL
1077db96d56Sopenharmony_ci    0x00bb: 0x2557,     #  BOX DRAWINGS DOUBLE DOWN AND LEFT
1087db96d56Sopenharmony_ci    0x00bc: 0x255d,     #  BOX DRAWINGS DOUBLE UP AND LEFT
1097db96d56Sopenharmony_ci    0x00bd: 0x255c,     #  BOX DRAWINGS UP DOUBLE AND LEFT SINGLE
1107db96d56Sopenharmony_ci    0x00be: 0x255b,     #  BOX DRAWINGS UP SINGLE AND LEFT DOUBLE
1117db96d56Sopenharmony_ci    0x00bf: 0x2510,     #  BOX DRAWINGS LIGHT DOWN AND LEFT
1127db96d56Sopenharmony_ci    0x00c0: 0x2514,     #  BOX DRAWINGS LIGHT UP AND RIGHT
1137db96d56Sopenharmony_ci    0x00c1: 0x2534,     #  BOX DRAWINGS LIGHT UP AND HORIZONTAL
1147db96d56Sopenharmony_ci    0x00c2: 0x252c,     #  BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
1157db96d56Sopenharmony_ci    0x00c3: 0x251c,     #  BOX DRAWINGS LIGHT VERTICAL AND RIGHT
1167db96d56Sopenharmony_ci    0x00c4: 0x2500,     #  BOX DRAWINGS LIGHT HORIZONTAL
1177db96d56Sopenharmony_ci    0x00c5: 0x253c,     #  BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
1187db96d56Sopenharmony_ci    0x00c6: 0x255e,     #  BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE
1197db96d56Sopenharmony_ci    0x00c7: 0x255f,     #  BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE
1207db96d56Sopenharmony_ci    0x00c8: 0x255a,     #  BOX DRAWINGS DOUBLE UP AND RIGHT
1217db96d56Sopenharmony_ci    0x00c9: 0x2554,     #  BOX DRAWINGS DOUBLE DOWN AND RIGHT
1227db96d56Sopenharmony_ci    0x00ca: 0x2569,     #  BOX DRAWINGS DOUBLE UP AND HORIZONTAL
1237db96d56Sopenharmony_ci    0x00cb: 0x2566,     #  BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL
1247db96d56Sopenharmony_ci    0x00cc: 0x2560,     #  BOX DRAWINGS DOUBLE VERTICAL AND RIGHT
1257db96d56Sopenharmony_ci    0x00cd: 0x2550,     #  BOX DRAWINGS DOUBLE HORIZONTAL
1267db96d56Sopenharmony_ci    0x00ce: 0x256c,     #  BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL
1277db96d56Sopenharmony_ci    0x00cf: 0x2567,     #  BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE
1287db96d56Sopenharmony_ci    0x00d0: 0x2568,     #  BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE
1297db96d56Sopenharmony_ci    0x00d1: 0x2564,     #  BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE
1307db96d56Sopenharmony_ci    0x00d2: 0x2565,     #  BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE
1317db96d56Sopenharmony_ci    0x00d3: 0x2559,     #  BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE
1327db96d56Sopenharmony_ci    0x00d4: 0x2558,     #  BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE
1337db96d56Sopenharmony_ci    0x00d5: 0x2552,     #  BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE
1347db96d56Sopenharmony_ci    0x00d6: 0x2553,     #  BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE
1357db96d56Sopenharmony_ci    0x00d7: 0x256b,     #  BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE
1367db96d56Sopenharmony_ci    0x00d8: 0x256a,     #  BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE
1377db96d56Sopenharmony_ci    0x00d9: 0x2518,     #  BOX DRAWINGS LIGHT UP AND LEFT
1387db96d56Sopenharmony_ci    0x00da: 0x250c,     #  BOX DRAWINGS LIGHT DOWN AND RIGHT
1397db96d56Sopenharmony_ci    0x00db: 0x2588,     #  FULL BLOCK
1407db96d56Sopenharmony_ci    0x00dc: 0x2584,     #  LOWER HALF BLOCK
1417db96d56Sopenharmony_ci    0x00dd: 0x258c,     #  LEFT HALF BLOCK
1427db96d56Sopenharmony_ci    0x00de: 0x2590,     #  RIGHT HALF BLOCK
1437db96d56Sopenharmony_ci    0x00df: 0x2580,     #  UPPER HALF BLOCK
1447db96d56Sopenharmony_ci    0x00e0: 0x03b1,     #  GREEK SMALL LETTER ALPHA
1457db96d56Sopenharmony_ci    0x00e1: 0x00df,     #  LATIN SMALL LETTER SHARP S
1467db96d56Sopenharmony_ci    0x00e2: 0x0393,     #  GREEK CAPITAL LETTER GAMMA
1477db96d56Sopenharmony_ci    0x00e3: 0x03c0,     #  GREEK SMALL LETTER PI
1487db96d56Sopenharmony_ci    0x00e4: 0x03a3,     #  GREEK CAPITAL LETTER SIGMA
1497db96d56Sopenharmony_ci    0x00e5: 0x03c3,     #  GREEK SMALL LETTER SIGMA
1507db96d56Sopenharmony_ci    0x00e6: 0x00b5,     #  MICRO SIGN
1517db96d56Sopenharmony_ci    0x00e7: 0x03c4,     #  GREEK SMALL LETTER TAU
1527db96d56Sopenharmony_ci    0x00e8: 0x03a6,     #  GREEK CAPITAL LETTER PHI
1537db96d56Sopenharmony_ci    0x00e9: 0x0398,     #  GREEK CAPITAL LETTER THETA
1547db96d56Sopenharmony_ci    0x00ea: 0x03a9,     #  GREEK CAPITAL LETTER OMEGA
1557db96d56Sopenharmony_ci    0x00eb: 0x03b4,     #  GREEK SMALL LETTER DELTA
1567db96d56Sopenharmony_ci    0x00ec: 0x221e,     #  INFINITY
1577db96d56Sopenharmony_ci    0x00ed: 0x03c6,     #  GREEK SMALL LETTER PHI
1587db96d56Sopenharmony_ci    0x00ee: 0x03b5,     #  GREEK SMALL LETTER EPSILON
1597db96d56Sopenharmony_ci    0x00ef: 0x2229,     #  INTERSECTION
1607db96d56Sopenharmony_ci    0x00f0: 0x2261,     #  IDENTICAL TO
1617db96d56Sopenharmony_ci    0x00f1: 0x00b1,     #  PLUS-MINUS SIGN
1627db96d56Sopenharmony_ci    0x00f2: 0x2265,     #  GREATER-THAN OR EQUAL TO
1637db96d56Sopenharmony_ci    0x00f3: 0x2264,     #  LESS-THAN OR EQUAL TO
1647db96d56Sopenharmony_ci    0x00f4: 0x2320,     #  TOP HALF INTEGRAL
1657db96d56Sopenharmony_ci    0x00f5: 0x2321,     #  BOTTOM HALF INTEGRAL
1667db96d56Sopenharmony_ci    0x00f6: 0x00f7,     #  DIVISION SIGN
1677db96d56Sopenharmony_ci    0x00f7: 0x2248,     #  ALMOST EQUAL TO
1687db96d56Sopenharmony_ci    0x00f8: 0x00b0,     #  DEGREE SIGN
1697db96d56Sopenharmony_ci    0x00f9: 0x2219,     #  BULLET OPERATOR
1707db96d56Sopenharmony_ci    0x00fa: 0x00b7,     #  MIDDLE DOT
1717db96d56Sopenharmony_ci    0x00fb: 0x221a,     #  SQUARE ROOT
1727db96d56Sopenharmony_ci    0x00fc: 0x207f,     #  SUPERSCRIPT LATIN SMALL LETTER N
1737db96d56Sopenharmony_ci    0x00fd: 0x00b2,     #  SUPERSCRIPT TWO
1747db96d56Sopenharmony_ci    0x00fe: 0x25a0,     #  BLACK SQUARE
1757db96d56Sopenharmony_ci    0x00ff: 0x00a0,     #  NO-BREAK SPACE
1767db96d56Sopenharmony_ci})
1777db96d56Sopenharmony_ci
1787db96d56Sopenharmony_ci### Decoding Table
1797db96d56Sopenharmony_ci
1807db96d56Sopenharmony_cidecoding_table = (
1817db96d56Sopenharmony_ci    '\x00'     #  0x0000 -> NULL
1827db96d56Sopenharmony_ci    '\x01'     #  0x0001 -> START OF HEADING
1837db96d56Sopenharmony_ci    '\x02'     #  0x0002 -> START OF TEXT
1847db96d56Sopenharmony_ci    '\x03'     #  0x0003 -> END OF TEXT
1857db96d56Sopenharmony_ci    '\x04'     #  0x0004 -> END OF TRANSMISSION
1867db96d56Sopenharmony_ci    '\x05'     #  0x0005 -> ENQUIRY
1877db96d56Sopenharmony_ci    '\x06'     #  0x0006 -> ACKNOWLEDGE
1887db96d56Sopenharmony_ci    '\x07'     #  0x0007 -> BELL
1897db96d56Sopenharmony_ci    '\x08'     #  0x0008 -> BACKSPACE
1907db96d56Sopenharmony_ci    '\t'       #  0x0009 -> HORIZONTAL TABULATION
1917db96d56Sopenharmony_ci    '\n'       #  0x000a -> LINE FEED
1927db96d56Sopenharmony_ci    '\x0b'     #  0x000b -> VERTICAL TABULATION
1937db96d56Sopenharmony_ci    '\x0c'     #  0x000c -> FORM FEED
1947db96d56Sopenharmony_ci    '\r'       #  0x000d -> CARRIAGE RETURN
1957db96d56Sopenharmony_ci    '\x0e'     #  0x000e -> SHIFT OUT
1967db96d56Sopenharmony_ci    '\x0f'     #  0x000f -> SHIFT IN
1977db96d56Sopenharmony_ci    '\x10'     #  0x0010 -> DATA LINK ESCAPE
1987db96d56Sopenharmony_ci    '\x11'     #  0x0011 -> DEVICE CONTROL ONE
1997db96d56Sopenharmony_ci    '\x12'     #  0x0012 -> DEVICE CONTROL TWO
2007db96d56Sopenharmony_ci    '\x13'     #  0x0013 -> DEVICE CONTROL THREE
2017db96d56Sopenharmony_ci    '\x14'     #  0x0014 -> DEVICE CONTROL FOUR
2027db96d56Sopenharmony_ci    '\x15'     #  0x0015 -> NEGATIVE ACKNOWLEDGE
2037db96d56Sopenharmony_ci    '\x16'     #  0x0016 -> SYNCHRONOUS IDLE
2047db96d56Sopenharmony_ci    '\x17'     #  0x0017 -> END OF TRANSMISSION BLOCK
2057db96d56Sopenharmony_ci    '\x18'     #  0x0018 -> CANCEL
2067db96d56Sopenharmony_ci    '\x19'     #  0x0019 -> END OF MEDIUM
2077db96d56Sopenharmony_ci    '\x1a'     #  0x001a -> SUBSTITUTE
2087db96d56Sopenharmony_ci    '\x1b'     #  0x001b -> ESCAPE
2097db96d56Sopenharmony_ci    '\x1c'     #  0x001c -> FILE SEPARATOR
2107db96d56Sopenharmony_ci    '\x1d'     #  0x001d -> GROUP SEPARATOR
2117db96d56Sopenharmony_ci    '\x1e'     #  0x001e -> RECORD SEPARATOR
2127db96d56Sopenharmony_ci    '\x1f'     #  0x001f -> UNIT SEPARATOR
2137db96d56Sopenharmony_ci    ' '        #  0x0020 -> SPACE
2147db96d56Sopenharmony_ci    '!'        #  0x0021 -> EXCLAMATION MARK
2157db96d56Sopenharmony_ci    '"'        #  0x0022 -> QUOTATION MARK
2167db96d56Sopenharmony_ci    '#'        #  0x0023 -> NUMBER SIGN
2177db96d56Sopenharmony_ci    '$'        #  0x0024 -> DOLLAR SIGN
2187db96d56Sopenharmony_ci    '%'        #  0x0025 -> PERCENT SIGN
2197db96d56Sopenharmony_ci    '&'        #  0x0026 -> AMPERSAND
2207db96d56Sopenharmony_ci    "'"        #  0x0027 -> APOSTROPHE
2217db96d56Sopenharmony_ci    '('        #  0x0028 -> LEFT PARENTHESIS
2227db96d56Sopenharmony_ci    ')'        #  0x0029 -> RIGHT PARENTHESIS
2237db96d56Sopenharmony_ci    '*'        #  0x002a -> ASTERISK
2247db96d56Sopenharmony_ci    '+'        #  0x002b -> PLUS SIGN
2257db96d56Sopenharmony_ci    ','        #  0x002c -> COMMA
2267db96d56Sopenharmony_ci    '-'        #  0x002d -> HYPHEN-MINUS
2277db96d56Sopenharmony_ci    '.'        #  0x002e -> FULL STOP
2287db96d56Sopenharmony_ci    '/'        #  0x002f -> SOLIDUS
2297db96d56Sopenharmony_ci    '0'        #  0x0030 -> DIGIT ZERO
2307db96d56Sopenharmony_ci    '1'        #  0x0031 -> DIGIT ONE
2317db96d56Sopenharmony_ci    '2'        #  0x0032 -> DIGIT TWO
2327db96d56Sopenharmony_ci    '3'        #  0x0033 -> DIGIT THREE
2337db96d56Sopenharmony_ci    '4'        #  0x0034 -> DIGIT FOUR
2347db96d56Sopenharmony_ci    '5'        #  0x0035 -> DIGIT FIVE
2357db96d56Sopenharmony_ci    '6'        #  0x0036 -> DIGIT SIX
2367db96d56Sopenharmony_ci    '7'        #  0x0037 -> DIGIT SEVEN
2377db96d56Sopenharmony_ci    '8'        #  0x0038 -> DIGIT EIGHT
2387db96d56Sopenharmony_ci    '9'        #  0x0039 -> DIGIT NINE
2397db96d56Sopenharmony_ci    ':'        #  0x003a -> COLON
2407db96d56Sopenharmony_ci    ';'        #  0x003b -> SEMICOLON
2417db96d56Sopenharmony_ci    '<'        #  0x003c -> LESS-THAN SIGN
2427db96d56Sopenharmony_ci    '='        #  0x003d -> EQUALS SIGN
2437db96d56Sopenharmony_ci    '>'        #  0x003e -> GREATER-THAN SIGN
2447db96d56Sopenharmony_ci    '?'        #  0x003f -> QUESTION MARK
2457db96d56Sopenharmony_ci    '@'        #  0x0040 -> COMMERCIAL AT
2467db96d56Sopenharmony_ci    'A'        #  0x0041 -> LATIN CAPITAL LETTER A
2477db96d56Sopenharmony_ci    'B'        #  0x0042 -> LATIN CAPITAL LETTER B
2487db96d56Sopenharmony_ci    'C'        #  0x0043 -> LATIN CAPITAL LETTER C
2497db96d56Sopenharmony_ci    'D'        #  0x0044 -> LATIN CAPITAL LETTER D
2507db96d56Sopenharmony_ci    'E'        #  0x0045 -> LATIN CAPITAL LETTER E
2517db96d56Sopenharmony_ci    'F'        #  0x0046 -> LATIN CAPITAL LETTER F
2527db96d56Sopenharmony_ci    'G'        #  0x0047 -> LATIN CAPITAL LETTER G
2537db96d56Sopenharmony_ci    'H'        #  0x0048 -> LATIN CAPITAL LETTER H
2547db96d56Sopenharmony_ci    'I'        #  0x0049 -> LATIN CAPITAL LETTER I
2557db96d56Sopenharmony_ci    'J'        #  0x004a -> LATIN CAPITAL LETTER J
2567db96d56Sopenharmony_ci    'K'        #  0x004b -> LATIN CAPITAL LETTER K
2577db96d56Sopenharmony_ci    'L'        #  0x004c -> LATIN CAPITAL LETTER L
2587db96d56Sopenharmony_ci    'M'        #  0x004d -> LATIN CAPITAL LETTER M
2597db96d56Sopenharmony_ci    'N'        #  0x004e -> LATIN CAPITAL LETTER N
2607db96d56Sopenharmony_ci    'O'        #  0x004f -> LATIN CAPITAL LETTER O
2617db96d56Sopenharmony_ci    'P'        #  0x0050 -> LATIN CAPITAL LETTER P
2627db96d56Sopenharmony_ci    'Q'        #  0x0051 -> LATIN CAPITAL LETTER Q
2637db96d56Sopenharmony_ci    'R'        #  0x0052 -> LATIN CAPITAL LETTER R
2647db96d56Sopenharmony_ci    'S'        #  0x0053 -> LATIN CAPITAL LETTER S
2657db96d56Sopenharmony_ci    'T'        #  0x0054 -> LATIN CAPITAL LETTER T
2667db96d56Sopenharmony_ci    'U'        #  0x0055 -> LATIN CAPITAL LETTER U
2677db96d56Sopenharmony_ci    'V'        #  0x0056 -> LATIN CAPITAL LETTER V
2687db96d56Sopenharmony_ci    'W'        #  0x0057 -> LATIN CAPITAL LETTER W
2697db96d56Sopenharmony_ci    'X'        #  0x0058 -> LATIN CAPITAL LETTER X
2707db96d56Sopenharmony_ci    'Y'        #  0x0059 -> LATIN CAPITAL LETTER Y
2717db96d56Sopenharmony_ci    'Z'        #  0x005a -> LATIN CAPITAL LETTER Z
2727db96d56Sopenharmony_ci    '['        #  0x005b -> LEFT SQUARE BRACKET
2737db96d56Sopenharmony_ci    '\\'       #  0x005c -> REVERSE SOLIDUS
2747db96d56Sopenharmony_ci    ']'        #  0x005d -> RIGHT SQUARE BRACKET
2757db96d56Sopenharmony_ci    '^'        #  0x005e -> CIRCUMFLEX ACCENT
2767db96d56Sopenharmony_ci    '_'        #  0x005f -> LOW LINE
2777db96d56Sopenharmony_ci    '`'        #  0x0060 -> GRAVE ACCENT
2787db96d56Sopenharmony_ci    'a'        #  0x0061 -> LATIN SMALL LETTER A
2797db96d56Sopenharmony_ci    'b'        #  0x0062 -> LATIN SMALL LETTER B
2807db96d56Sopenharmony_ci    'c'        #  0x0063 -> LATIN SMALL LETTER C
2817db96d56Sopenharmony_ci    'd'        #  0x0064 -> LATIN SMALL LETTER D
2827db96d56Sopenharmony_ci    'e'        #  0x0065 -> LATIN SMALL LETTER E
2837db96d56Sopenharmony_ci    'f'        #  0x0066 -> LATIN SMALL LETTER F
2847db96d56Sopenharmony_ci    'g'        #  0x0067 -> LATIN SMALL LETTER G
2857db96d56Sopenharmony_ci    'h'        #  0x0068 -> LATIN SMALL LETTER H
2867db96d56Sopenharmony_ci    'i'        #  0x0069 -> LATIN SMALL LETTER I
2877db96d56Sopenharmony_ci    'j'        #  0x006a -> LATIN SMALL LETTER J
2887db96d56Sopenharmony_ci    'k'        #  0x006b -> LATIN SMALL LETTER K
2897db96d56Sopenharmony_ci    'l'        #  0x006c -> LATIN SMALL LETTER L
2907db96d56Sopenharmony_ci    'm'        #  0x006d -> LATIN SMALL LETTER M
2917db96d56Sopenharmony_ci    'n'        #  0x006e -> LATIN SMALL LETTER N
2927db96d56Sopenharmony_ci    'o'        #  0x006f -> LATIN SMALL LETTER O
2937db96d56Sopenharmony_ci    'p'        #  0x0070 -> LATIN SMALL LETTER P
2947db96d56Sopenharmony_ci    'q'        #  0x0071 -> LATIN SMALL LETTER Q
2957db96d56Sopenharmony_ci    'r'        #  0x0072 -> LATIN SMALL LETTER R
2967db96d56Sopenharmony_ci    's'        #  0x0073 -> LATIN SMALL LETTER S
2977db96d56Sopenharmony_ci    't'        #  0x0074 -> LATIN SMALL LETTER T
2987db96d56Sopenharmony_ci    'u'        #  0x0075 -> LATIN SMALL LETTER U
2997db96d56Sopenharmony_ci    'v'        #  0x0076 -> LATIN SMALL LETTER V
3007db96d56Sopenharmony_ci    'w'        #  0x0077 -> LATIN SMALL LETTER W
3017db96d56Sopenharmony_ci    'x'        #  0x0078 -> LATIN SMALL LETTER X
3027db96d56Sopenharmony_ci    'y'        #  0x0079 -> LATIN SMALL LETTER Y
3037db96d56Sopenharmony_ci    'z'        #  0x007a -> LATIN SMALL LETTER Z
3047db96d56Sopenharmony_ci    '{'        #  0x007b -> LEFT CURLY BRACKET
3057db96d56Sopenharmony_ci    '|'        #  0x007c -> VERTICAL LINE
3067db96d56Sopenharmony_ci    '}'        #  0x007d -> RIGHT CURLY BRACKET
3077db96d56Sopenharmony_ci    '~'        #  0x007e -> TILDE
3087db96d56Sopenharmony_ci    '\x7f'     #  0x007f -> DELETE
3097db96d56Sopenharmony_ci    '\xc7'     #  0x0080 -> LATIN CAPITAL LETTER C WITH CEDILLA
3107db96d56Sopenharmony_ci    '\xfc'     #  0x0081 -> LATIN SMALL LETTER U WITH DIAERESIS
3117db96d56Sopenharmony_ci    '\xe9'     #  0x0082 -> LATIN SMALL LETTER E WITH ACUTE
3127db96d56Sopenharmony_ci    '\xe2'     #  0x0083 -> LATIN SMALL LETTER A WITH CIRCUMFLEX
3137db96d56Sopenharmony_ci    '\xe4'     #  0x0084 -> LATIN SMALL LETTER A WITH DIAERESIS
3147db96d56Sopenharmony_ci    '\xe0'     #  0x0085 -> LATIN SMALL LETTER A WITH GRAVE
3157db96d56Sopenharmony_ci    '\xe5'     #  0x0086 -> LATIN SMALL LETTER A WITH RING ABOVE
3167db96d56Sopenharmony_ci    '\xe7'     #  0x0087 -> LATIN SMALL LETTER C WITH CEDILLA
3177db96d56Sopenharmony_ci    '\xea'     #  0x0088 -> LATIN SMALL LETTER E WITH CIRCUMFLEX
3187db96d56Sopenharmony_ci    '\xeb'     #  0x0089 -> LATIN SMALL LETTER E WITH DIAERESIS
3197db96d56Sopenharmony_ci    '\xe8'     #  0x008a -> LATIN SMALL LETTER E WITH GRAVE
3207db96d56Sopenharmony_ci    '\xef'     #  0x008b -> LATIN SMALL LETTER I WITH DIAERESIS
3217db96d56Sopenharmony_ci    '\xee'     #  0x008c -> LATIN SMALL LETTER I WITH CIRCUMFLEX
3227db96d56Sopenharmony_ci    '\xec'     #  0x008d -> LATIN SMALL LETTER I WITH GRAVE
3237db96d56Sopenharmony_ci    '\xc4'     #  0x008e -> LATIN CAPITAL LETTER A WITH DIAERESIS
3247db96d56Sopenharmony_ci    '\xc5'     #  0x008f -> LATIN CAPITAL LETTER A WITH RING ABOVE
3257db96d56Sopenharmony_ci    '\xc9'     #  0x0090 -> LATIN CAPITAL LETTER E WITH ACUTE
3267db96d56Sopenharmony_ci    '\xe6'     #  0x0091 -> LATIN SMALL LIGATURE AE
3277db96d56Sopenharmony_ci    '\xc6'     #  0x0092 -> LATIN CAPITAL LIGATURE AE
3287db96d56Sopenharmony_ci    '\xf4'     #  0x0093 -> LATIN SMALL LETTER O WITH CIRCUMFLEX
3297db96d56Sopenharmony_ci    '\xf6'     #  0x0094 -> LATIN SMALL LETTER O WITH DIAERESIS
3307db96d56Sopenharmony_ci    '\xf2'     #  0x0095 -> LATIN SMALL LETTER O WITH GRAVE
3317db96d56Sopenharmony_ci    '\xfb'     #  0x0096 -> LATIN SMALL LETTER U WITH CIRCUMFLEX
3327db96d56Sopenharmony_ci    '\xf9'     #  0x0097 -> LATIN SMALL LETTER U WITH GRAVE
3337db96d56Sopenharmony_ci    '\xff'     #  0x0098 -> LATIN SMALL LETTER Y WITH DIAERESIS
3347db96d56Sopenharmony_ci    '\xd6'     #  0x0099 -> LATIN CAPITAL LETTER O WITH DIAERESIS
3357db96d56Sopenharmony_ci    '\xdc'     #  0x009a -> LATIN CAPITAL LETTER U WITH DIAERESIS
3367db96d56Sopenharmony_ci    '\xa2'     #  0x009b -> CENT SIGN
3377db96d56Sopenharmony_ci    '\xa3'     #  0x009c -> POUND SIGN
3387db96d56Sopenharmony_ci    '\xa5'     #  0x009d -> YEN SIGN
3397db96d56Sopenharmony_ci    '\u20a7'   #  0x009e -> PESETA SIGN
3407db96d56Sopenharmony_ci    '\u0192'   #  0x009f -> LATIN SMALL LETTER F WITH HOOK
3417db96d56Sopenharmony_ci    '\xe1'     #  0x00a0 -> LATIN SMALL LETTER A WITH ACUTE
3427db96d56Sopenharmony_ci    '\xed'     #  0x00a1 -> LATIN SMALL LETTER I WITH ACUTE
3437db96d56Sopenharmony_ci    '\xf3'     #  0x00a2 -> LATIN SMALL LETTER O WITH ACUTE
3447db96d56Sopenharmony_ci    '\xfa'     #  0x00a3 -> LATIN SMALL LETTER U WITH ACUTE
3457db96d56Sopenharmony_ci    '\xf1'     #  0x00a4 -> LATIN SMALL LETTER N WITH TILDE
3467db96d56Sopenharmony_ci    '\xd1'     #  0x00a5 -> LATIN CAPITAL LETTER N WITH TILDE
3477db96d56Sopenharmony_ci    '\xaa'     #  0x00a6 -> FEMININE ORDINAL INDICATOR
3487db96d56Sopenharmony_ci    '\xba'     #  0x00a7 -> MASCULINE ORDINAL INDICATOR
3497db96d56Sopenharmony_ci    '\xbf'     #  0x00a8 -> INVERTED QUESTION MARK
3507db96d56Sopenharmony_ci    '\u2310'   #  0x00a9 -> REVERSED NOT SIGN
3517db96d56Sopenharmony_ci    '\xac'     #  0x00aa -> NOT SIGN
3527db96d56Sopenharmony_ci    '\xbd'     #  0x00ab -> VULGAR FRACTION ONE HALF
3537db96d56Sopenharmony_ci    '\xbc'     #  0x00ac -> VULGAR FRACTION ONE QUARTER
3547db96d56Sopenharmony_ci    '\xa1'     #  0x00ad -> INVERTED EXCLAMATION MARK
3557db96d56Sopenharmony_ci    '\xab'     #  0x00ae -> LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
3567db96d56Sopenharmony_ci    '\xbb'     #  0x00af -> RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
3577db96d56Sopenharmony_ci    '\u2591'   #  0x00b0 -> LIGHT SHADE
3587db96d56Sopenharmony_ci    '\u2592'   #  0x00b1 -> MEDIUM SHADE
3597db96d56Sopenharmony_ci    '\u2593'   #  0x00b2 -> DARK SHADE
3607db96d56Sopenharmony_ci    '\u2502'   #  0x00b3 -> BOX DRAWINGS LIGHT VERTICAL
3617db96d56Sopenharmony_ci    '\u2524'   #  0x00b4 -> BOX DRAWINGS LIGHT VERTICAL AND LEFT
3627db96d56Sopenharmony_ci    '\u2561'   #  0x00b5 -> BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE
3637db96d56Sopenharmony_ci    '\u2562'   #  0x00b6 -> BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE
3647db96d56Sopenharmony_ci    '\u2556'   #  0x00b7 -> BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE
3657db96d56Sopenharmony_ci    '\u2555'   #  0x00b8 -> BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE
3667db96d56Sopenharmony_ci    '\u2563'   #  0x00b9 -> BOX DRAWINGS DOUBLE VERTICAL AND LEFT
3677db96d56Sopenharmony_ci    '\u2551'   #  0x00ba -> BOX DRAWINGS DOUBLE VERTICAL
3687db96d56Sopenharmony_ci    '\u2557'   #  0x00bb -> BOX DRAWINGS DOUBLE DOWN AND LEFT
3697db96d56Sopenharmony_ci    '\u255d'   #  0x00bc -> BOX DRAWINGS DOUBLE UP AND LEFT
3707db96d56Sopenharmony_ci    '\u255c'   #  0x00bd -> BOX DRAWINGS UP DOUBLE AND LEFT SINGLE
3717db96d56Sopenharmony_ci    '\u255b'   #  0x00be -> BOX DRAWINGS UP SINGLE AND LEFT DOUBLE
3727db96d56Sopenharmony_ci    '\u2510'   #  0x00bf -> BOX DRAWINGS LIGHT DOWN AND LEFT
3737db96d56Sopenharmony_ci    '\u2514'   #  0x00c0 -> BOX DRAWINGS LIGHT UP AND RIGHT
3747db96d56Sopenharmony_ci    '\u2534'   #  0x00c1 -> BOX DRAWINGS LIGHT UP AND HORIZONTAL
3757db96d56Sopenharmony_ci    '\u252c'   #  0x00c2 -> BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
3767db96d56Sopenharmony_ci    '\u251c'   #  0x00c3 -> BOX DRAWINGS LIGHT VERTICAL AND RIGHT
3777db96d56Sopenharmony_ci    '\u2500'   #  0x00c4 -> BOX DRAWINGS LIGHT HORIZONTAL
3787db96d56Sopenharmony_ci    '\u253c'   #  0x00c5 -> BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
3797db96d56Sopenharmony_ci    '\u255e'   #  0x00c6 -> BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE
3807db96d56Sopenharmony_ci    '\u255f'   #  0x00c7 -> BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE
3817db96d56Sopenharmony_ci    '\u255a'   #  0x00c8 -> BOX DRAWINGS DOUBLE UP AND RIGHT
3827db96d56Sopenharmony_ci    '\u2554'   #  0x00c9 -> BOX DRAWINGS DOUBLE DOWN AND RIGHT
3837db96d56Sopenharmony_ci    '\u2569'   #  0x00ca -> BOX DRAWINGS DOUBLE UP AND HORIZONTAL
3847db96d56Sopenharmony_ci    '\u2566'   #  0x00cb -> BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL
3857db96d56Sopenharmony_ci    '\u2560'   #  0x00cc -> BOX DRAWINGS DOUBLE VERTICAL AND RIGHT
3867db96d56Sopenharmony_ci    '\u2550'   #  0x00cd -> BOX DRAWINGS DOUBLE HORIZONTAL
3877db96d56Sopenharmony_ci    '\u256c'   #  0x00ce -> BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL
3887db96d56Sopenharmony_ci    '\u2567'   #  0x00cf -> BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE
3897db96d56Sopenharmony_ci    '\u2568'   #  0x00d0 -> BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE
3907db96d56Sopenharmony_ci    '\u2564'   #  0x00d1 -> BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE
3917db96d56Sopenharmony_ci    '\u2565'   #  0x00d2 -> BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE
3927db96d56Sopenharmony_ci    '\u2559'   #  0x00d3 -> BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE
3937db96d56Sopenharmony_ci    '\u2558'   #  0x00d4 -> BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE
3947db96d56Sopenharmony_ci    '\u2552'   #  0x00d5 -> BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE
3957db96d56Sopenharmony_ci    '\u2553'   #  0x00d6 -> BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE
3967db96d56Sopenharmony_ci    '\u256b'   #  0x00d7 -> BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE
3977db96d56Sopenharmony_ci    '\u256a'   #  0x00d8 -> BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE
3987db96d56Sopenharmony_ci    '\u2518'   #  0x00d9 -> BOX DRAWINGS LIGHT UP AND LEFT
3997db96d56Sopenharmony_ci    '\u250c'   #  0x00da -> BOX DRAWINGS LIGHT DOWN AND RIGHT
4007db96d56Sopenharmony_ci    '\u2588'   #  0x00db -> FULL BLOCK
4017db96d56Sopenharmony_ci    '\u2584'   #  0x00dc -> LOWER HALF BLOCK
4027db96d56Sopenharmony_ci    '\u258c'   #  0x00dd -> LEFT HALF BLOCK
4037db96d56Sopenharmony_ci    '\u2590'   #  0x00de -> RIGHT HALF BLOCK
4047db96d56Sopenharmony_ci    '\u2580'   #  0x00df -> UPPER HALF BLOCK
4057db96d56Sopenharmony_ci    '\u03b1'   #  0x00e0 -> GREEK SMALL LETTER ALPHA
4067db96d56Sopenharmony_ci    '\xdf'     #  0x00e1 -> LATIN SMALL LETTER SHARP S
4077db96d56Sopenharmony_ci    '\u0393'   #  0x00e2 -> GREEK CAPITAL LETTER GAMMA
4087db96d56Sopenharmony_ci    '\u03c0'   #  0x00e3 -> GREEK SMALL LETTER PI
4097db96d56Sopenharmony_ci    '\u03a3'   #  0x00e4 -> GREEK CAPITAL LETTER SIGMA
4107db96d56Sopenharmony_ci    '\u03c3'   #  0x00e5 -> GREEK SMALL LETTER SIGMA
4117db96d56Sopenharmony_ci    '\xb5'     #  0x00e6 -> MICRO SIGN
4127db96d56Sopenharmony_ci    '\u03c4'   #  0x00e7 -> GREEK SMALL LETTER TAU
4137db96d56Sopenharmony_ci    '\u03a6'   #  0x00e8 -> GREEK CAPITAL LETTER PHI
4147db96d56Sopenharmony_ci    '\u0398'   #  0x00e9 -> GREEK CAPITAL LETTER THETA
4157db96d56Sopenharmony_ci    '\u03a9'   #  0x00ea -> GREEK CAPITAL LETTER OMEGA
4167db96d56Sopenharmony_ci    '\u03b4'   #  0x00eb -> GREEK SMALL LETTER DELTA
4177db96d56Sopenharmony_ci    '\u221e'   #  0x00ec -> INFINITY
4187db96d56Sopenharmony_ci    '\u03c6'   #  0x00ed -> GREEK SMALL LETTER PHI
4197db96d56Sopenharmony_ci    '\u03b5'   #  0x00ee -> GREEK SMALL LETTER EPSILON
4207db96d56Sopenharmony_ci    '\u2229'   #  0x00ef -> INTERSECTION
4217db96d56Sopenharmony_ci    '\u2261'   #  0x00f0 -> IDENTICAL TO
4227db96d56Sopenharmony_ci    '\xb1'     #  0x00f1 -> PLUS-MINUS SIGN
4237db96d56Sopenharmony_ci    '\u2265'   #  0x00f2 -> GREATER-THAN OR EQUAL TO
4247db96d56Sopenharmony_ci    '\u2264'   #  0x00f3 -> LESS-THAN OR EQUAL TO
4257db96d56Sopenharmony_ci    '\u2320'   #  0x00f4 -> TOP HALF INTEGRAL
4267db96d56Sopenharmony_ci    '\u2321'   #  0x00f5 -> BOTTOM HALF INTEGRAL
4277db96d56Sopenharmony_ci    '\xf7'     #  0x00f6 -> DIVISION SIGN
4287db96d56Sopenharmony_ci    '\u2248'   #  0x00f7 -> ALMOST EQUAL TO
4297db96d56Sopenharmony_ci    '\xb0'     #  0x00f8 -> DEGREE SIGN
4307db96d56Sopenharmony_ci    '\u2219'   #  0x00f9 -> BULLET OPERATOR
4317db96d56Sopenharmony_ci    '\xb7'     #  0x00fa -> MIDDLE DOT
4327db96d56Sopenharmony_ci    '\u221a'   #  0x00fb -> SQUARE ROOT
4337db96d56Sopenharmony_ci    '\u207f'   #  0x00fc -> SUPERSCRIPT LATIN SMALL LETTER N
4347db96d56Sopenharmony_ci    '\xb2'     #  0x00fd -> SUPERSCRIPT TWO
4357db96d56Sopenharmony_ci    '\u25a0'   #  0x00fe -> BLACK SQUARE
4367db96d56Sopenharmony_ci    '\xa0'     #  0x00ff -> NO-BREAK SPACE
4377db96d56Sopenharmony_ci)
4387db96d56Sopenharmony_ci
4397db96d56Sopenharmony_ci### Encoding Map
4407db96d56Sopenharmony_ci
4417db96d56Sopenharmony_ciencoding_map = {
4427db96d56Sopenharmony_ci    0x0000: 0x0000,     #  NULL
4437db96d56Sopenharmony_ci    0x0001: 0x0001,     #  START OF HEADING
4447db96d56Sopenharmony_ci    0x0002: 0x0002,     #  START OF TEXT
4457db96d56Sopenharmony_ci    0x0003: 0x0003,     #  END OF TEXT
4467db96d56Sopenharmony_ci    0x0004: 0x0004,     #  END OF TRANSMISSION
4477db96d56Sopenharmony_ci    0x0005: 0x0005,     #  ENQUIRY
4487db96d56Sopenharmony_ci    0x0006: 0x0006,     #  ACKNOWLEDGE
4497db96d56Sopenharmony_ci    0x0007: 0x0007,     #  BELL
4507db96d56Sopenharmony_ci    0x0008: 0x0008,     #  BACKSPACE
4517db96d56Sopenharmony_ci    0x0009: 0x0009,     #  HORIZONTAL TABULATION
4527db96d56Sopenharmony_ci    0x000a: 0x000a,     #  LINE FEED
4537db96d56Sopenharmony_ci    0x000b: 0x000b,     #  VERTICAL TABULATION
4547db96d56Sopenharmony_ci    0x000c: 0x000c,     #  FORM FEED
4557db96d56Sopenharmony_ci    0x000d: 0x000d,     #  CARRIAGE RETURN
4567db96d56Sopenharmony_ci    0x000e: 0x000e,     #  SHIFT OUT
4577db96d56Sopenharmony_ci    0x000f: 0x000f,     #  SHIFT IN
4587db96d56Sopenharmony_ci    0x0010: 0x0010,     #  DATA LINK ESCAPE
4597db96d56Sopenharmony_ci    0x0011: 0x0011,     #  DEVICE CONTROL ONE
4607db96d56Sopenharmony_ci    0x0012: 0x0012,     #  DEVICE CONTROL TWO
4617db96d56Sopenharmony_ci    0x0013: 0x0013,     #  DEVICE CONTROL THREE
4627db96d56Sopenharmony_ci    0x0014: 0x0014,     #  DEVICE CONTROL FOUR
4637db96d56Sopenharmony_ci    0x0015: 0x0015,     #  NEGATIVE ACKNOWLEDGE
4647db96d56Sopenharmony_ci    0x0016: 0x0016,     #  SYNCHRONOUS IDLE
4657db96d56Sopenharmony_ci    0x0017: 0x0017,     #  END OF TRANSMISSION BLOCK
4667db96d56Sopenharmony_ci    0x0018: 0x0018,     #  CANCEL
4677db96d56Sopenharmony_ci    0x0019: 0x0019,     #  END OF MEDIUM
4687db96d56Sopenharmony_ci    0x001a: 0x001a,     #  SUBSTITUTE
4697db96d56Sopenharmony_ci    0x001b: 0x001b,     #  ESCAPE
4707db96d56Sopenharmony_ci    0x001c: 0x001c,     #  FILE SEPARATOR
4717db96d56Sopenharmony_ci    0x001d: 0x001d,     #  GROUP SEPARATOR
4727db96d56Sopenharmony_ci    0x001e: 0x001e,     #  RECORD SEPARATOR
4737db96d56Sopenharmony_ci    0x001f: 0x001f,     #  UNIT SEPARATOR
4747db96d56Sopenharmony_ci    0x0020: 0x0020,     #  SPACE
4757db96d56Sopenharmony_ci    0x0021: 0x0021,     #  EXCLAMATION MARK
4767db96d56Sopenharmony_ci    0x0022: 0x0022,     #  QUOTATION MARK
4777db96d56Sopenharmony_ci    0x0023: 0x0023,     #  NUMBER SIGN
4787db96d56Sopenharmony_ci    0x0024: 0x0024,     #  DOLLAR SIGN
4797db96d56Sopenharmony_ci    0x0025: 0x0025,     #  PERCENT SIGN
4807db96d56Sopenharmony_ci    0x0026: 0x0026,     #  AMPERSAND
4817db96d56Sopenharmony_ci    0x0027: 0x0027,     #  APOSTROPHE
4827db96d56Sopenharmony_ci    0x0028: 0x0028,     #  LEFT PARENTHESIS
4837db96d56Sopenharmony_ci    0x0029: 0x0029,     #  RIGHT PARENTHESIS
4847db96d56Sopenharmony_ci    0x002a: 0x002a,     #  ASTERISK
4857db96d56Sopenharmony_ci    0x002b: 0x002b,     #  PLUS SIGN
4867db96d56Sopenharmony_ci    0x002c: 0x002c,     #  COMMA
4877db96d56Sopenharmony_ci    0x002d: 0x002d,     #  HYPHEN-MINUS
4887db96d56Sopenharmony_ci    0x002e: 0x002e,     #  FULL STOP
4897db96d56Sopenharmony_ci    0x002f: 0x002f,     #  SOLIDUS
4907db96d56Sopenharmony_ci    0x0030: 0x0030,     #  DIGIT ZERO
4917db96d56Sopenharmony_ci    0x0031: 0x0031,     #  DIGIT ONE
4927db96d56Sopenharmony_ci    0x0032: 0x0032,     #  DIGIT TWO
4937db96d56Sopenharmony_ci    0x0033: 0x0033,     #  DIGIT THREE
4947db96d56Sopenharmony_ci    0x0034: 0x0034,     #  DIGIT FOUR
4957db96d56Sopenharmony_ci    0x0035: 0x0035,     #  DIGIT FIVE
4967db96d56Sopenharmony_ci    0x0036: 0x0036,     #  DIGIT SIX
4977db96d56Sopenharmony_ci    0x0037: 0x0037,     #  DIGIT SEVEN
4987db96d56Sopenharmony_ci    0x0038: 0x0038,     #  DIGIT EIGHT
4997db96d56Sopenharmony_ci    0x0039: 0x0039,     #  DIGIT NINE
5007db96d56Sopenharmony_ci    0x003a: 0x003a,     #  COLON
5017db96d56Sopenharmony_ci    0x003b: 0x003b,     #  SEMICOLON
5027db96d56Sopenharmony_ci    0x003c: 0x003c,     #  LESS-THAN SIGN
5037db96d56Sopenharmony_ci    0x003d: 0x003d,     #  EQUALS SIGN
5047db96d56Sopenharmony_ci    0x003e: 0x003e,     #  GREATER-THAN SIGN
5057db96d56Sopenharmony_ci    0x003f: 0x003f,     #  QUESTION MARK
5067db96d56Sopenharmony_ci    0x0040: 0x0040,     #  COMMERCIAL AT
5077db96d56Sopenharmony_ci    0x0041: 0x0041,     #  LATIN CAPITAL LETTER A
5087db96d56Sopenharmony_ci    0x0042: 0x0042,     #  LATIN CAPITAL LETTER B
5097db96d56Sopenharmony_ci    0x0043: 0x0043,     #  LATIN CAPITAL LETTER C
5107db96d56Sopenharmony_ci    0x0044: 0x0044,     #  LATIN CAPITAL LETTER D
5117db96d56Sopenharmony_ci    0x0045: 0x0045,     #  LATIN CAPITAL LETTER E
5127db96d56Sopenharmony_ci    0x0046: 0x0046,     #  LATIN CAPITAL LETTER F
5137db96d56Sopenharmony_ci    0x0047: 0x0047,     #  LATIN CAPITAL LETTER G
5147db96d56Sopenharmony_ci    0x0048: 0x0048,     #  LATIN CAPITAL LETTER H
5157db96d56Sopenharmony_ci    0x0049: 0x0049,     #  LATIN CAPITAL LETTER I
5167db96d56Sopenharmony_ci    0x004a: 0x004a,     #  LATIN CAPITAL LETTER J
5177db96d56Sopenharmony_ci    0x004b: 0x004b,     #  LATIN CAPITAL LETTER K
5187db96d56Sopenharmony_ci    0x004c: 0x004c,     #  LATIN CAPITAL LETTER L
5197db96d56Sopenharmony_ci    0x004d: 0x004d,     #  LATIN CAPITAL LETTER M
5207db96d56Sopenharmony_ci    0x004e: 0x004e,     #  LATIN CAPITAL LETTER N
5217db96d56Sopenharmony_ci    0x004f: 0x004f,     #  LATIN CAPITAL LETTER O
5227db96d56Sopenharmony_ci    0x0050: 0x0050,     #  LATIN CAPITAL LETTER P
5237db96d56Sopenharmony_ci    0x0051: 0x0051,     #  LATIN CAPITAL LETTER Q
5247db96d56Sopenharmony_ci    0x0052: 0x0052,     #  LATIN CAPITAL LETTER R
5257db96d56Sopenharmony_ci    0x0053: 0x0053,     #  LATIN CAPITAL LETTER S
5267db96d56Sopenharmony_ci    0x0054: 0x0054,     #  LATIN CAPITAL LETTER T
5277db96d56Sopenharmony_ci    0x0055: 0x0055,     #  LATIN CAPITAL LETTER U
5287db96d56Sopenharmony_ci    0x0056: 0x0056,     #  LATIN CAPITAL LETTER V
5297db96d56Sopenharmony_ci    0x0057: 0x0057,     #  LATIN CAPITAL LETTER W
5307db96d56Sopenharmony_ci    0x0058: 0x0058,     #  LATIN CAPITAL LETTER X
5317db96d56Sopenharmony_ci    0x0059: 0x0059,     #  LATIN CAPITAL LETTER Y
5327db96d56Sopenharmony_ci    0x005a: 0x005a,     #  LATIN CAPITAL LETTER Z
5337db96d56Sopenharmony_ci    0x005b: 0x005b,     #  LEFT SQUARE BRACKET
5347db96d56Sopenharmony_ci    0x005c: 0x005c,     #  REVERSE SOLIDUS
5357db96d56Sopenharmony_ci    0x005d: 0x005d,     #  RIGHT SQUARE BRACKET
5367db96d56Sopenharmony_ci    0x005e: 0x005e,     #  CIRCUMFLEX ACCENT
5377db96d56Sopenharmony_ci    0x005f: 0x005f,     #  LOW LINE
5387db96d56Sopenharmony_ci    0x0060: 0x0060,     #  GRAVE ACCENT
5397db96d56Sopenharmony_ci    0x0061: 0x0061,     #  LATIN SMALL LETTER A
5407db96d56Sopenharmony_ci    0x0062: 0x0062,     #  LATIN SMALL LETTER B
5417db96d56Sopenharmony_ci    0x0063: 0x0063,     #  LATIN SMALL LETTER C
5427db96d56Sopenharmony_ci    0x0064: 0x0064,     #  LATIN SMALL LETTER D
5437db96d56Sopenharmony_ci    0x0065: 0x0065,     #  LATIN SMALL LETTER E
5447db96d56Sopenharmony_ci    0x0066: 0x0066,     #  LATIN SMALL LETTER F
5457db96d56Sopenharmony_ci    0x0067: 0x0067,     #  LATIN SMALL LETTER G
5467db96d56Sopenharmony_ci    0x0068: 0x0068,     #  LATIN SMALL LETTER H
5477db96d56Sopenharmony_ci    0x0069: 0x0069,     #  LATIN SMALL LETTER I
5487db96d56Sopenharmony_ci    0x006a: 0x006a,     #  LATIN SMALL LETTER J
5497db96d56Sopenharmony_ci    0x006b: 0x006b,     #  LATIN SMALL LETTER K
5507db96d56Sopenharmony_ci    0x006c: 0x006c,     #  LATIN SMALL LETTER L
5517db96d56Sopenharmony_ci    0x006d: 0x006d,     #  LATIN SMALL LETTER M
5527db96d56Sopenharmony_ci    0x006e: 0x006e,     #  LATIN SMALL LETTER N
5537db96d56Sopenharmony_ci    0x006f: 0x006f,     #  LATIN SMALL LETTER O
5547db96d56Sopenharmony_ci    0x0070: 0x0070,     #  LATIN SMALL LETTER P
5557db96d56Sopenharmony_ci    0x0071: 0x0071,     #  LATIN SMALL LETTER Q
5567db96d56Sopenharmony_ci    0x0072: 0x0072,     #  LATIN SMALL LETTER R
5577db96d56Sopenharmony_ci    0x0073: 0x0073,     #  LATIN SMALL LETTER S
5587db96d56Sopenharmony_ci    0x0074: 0x0074,     #  LATIN SMALL LETTER T
5597db96d56Sopenharmony_ci    0x0075: 0x0075,     #  LATIN SMALL LETTER U
5607db96d56Sopenharmony_ci    0x0076: 0x0076,     #  LATIN SMALL LETTER V
5617db96d56Sopenharmony_ci    0x0077: 0x0077,     #  LATIN SMALL LETTER W
5627db96d56Sopenharmony_ci    0x0078: 0x0078,     #  LATIN SMALL LETTER X
5637db96d56Sopenharmony_ci    0x0079: 0x0079,     #  LATIN SMALL LETTER Y
5647db96d56Sopenharmony_ci    0x007a: 0x007a,     #  LATIN SMALL LETTER Z
5657db96d56Sopenharmony_ci    0x007b: 0x007b,     #  LEFT CURLY BRACKET
5667db96d56Sopenharmony_ci    0x007c: 0x007c,     #  VERTICAL LINE
5677db96d56Sopenharmony_ci    0x007d: 0x007d,     #  RIGHT CURLY BRACKET
5687db96d56Sopenharmony_ci    0x007e: 0x007e,     #  TILDE
5697db96d56Sopenharmony_ci    0x007f: 0x007f,     #  DELETE
5707db96d56Sopenharmony_ci    0x00a0: 0x00ff,     #  NO-BREAK SPACE
5717db96d56Sopenharmony_ci    0x00a1: 0x00ad,     #  INVERTED EXCLAMATION MARK
5727db96d56Sopenharmony_ci    0x00a2: 0x009b,     #  CENT SIGN
5737db96d56Sopenharmony_ci    0x00a3: 0x009c,     #  POUND SIGN
5747db96d56Sopenharmony_ci    0x00a5: 0x009d,     #  YEN SIGN
5757db96d56Sopenharmony_ci    0x00aa: 0x00a6,     #  FEMININE ORDINAL INDICATOR
5767db96d56Sopenharmony_ci    0x00ab: 0x00ae,     #  LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
5777db96d56Sopenharmony_ci    0x00ac: 0x00aa,     #  NOT SIGN
5787db96d56Sopenharmony_ci    0x00b0: 0x00f8,     #  DEGREE SIGN
5797db96d56Sopenharmony_ci    0x00b1: 0x00f1,     #  PLUS-MINUS SIGN
5807db96d56Sopenharmony_ci    0x00b2: 0x00fd,     #  SUPERSCRIPT TWO
5817db96d56Sopenharmony_ci    0x00b5: 0x00e6,     #  MICRO SIGN
5827db96d56Sopenharmony_ci    0x00b7: 0x00fa,     #  MIDDLE DOT
5837db96d56Sopenharmony_ci    0x00ba: 0x00a7,     #  MASCULINE ORDINAL INDICATOR
5847db96d56Sopenharmony_ci    0x00bb: 0x00af,     #  RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
5857db96d56Sopenharmony_ci    0x00bc: 0x00ac,     #  VULGAR FRACTION ONE QUARTER
5867db96d56Sopenharmony_ci    0x00bd: 0x00ab,     #  VULGAR FRACTION ONE HALF
5877db96d56Sopenharmony_ci    0x00bf: 0x00a8,     #  INVERTED QUESTION MARK
5887db96d56Sopenharmony_ci    0x00c4: 0x008e,     #  LATIN CAPITAL LETTER A WITH DIAERESIS
5897db96d56Sopenharmony_ci    0x00c5: 0x008f,     #  LATIN CAPITAL LETTER A WITH RING ABOVE
5907db96d56Sopenharmony_ci    0x00c6: 0x0092,     #  LATIN CAPITAL LIGATURE AE
5917db96d56Sopenharmony_ci    0x00c7: 0x0080,     #  LATIN CAPITAL LETTER C WITH CEDILLA
5927db96d56Sopenharmony_ci    0x00c9: 0x0090,     #  LATIN CAPITAL LETTER E WITH ACUTE
5937db96d56Sopenharmony_ci    0x00d1: 0x00a5,     #  LATIN CAPITAL LETTER N WITH TILDE
5947db96d56Sopenharmony_ci    0x00d6: 0x0099,     #  LATIN CAPITAL LETTER O WITH DIAERESIS
5957db96d56Sopenharmony_ci    0x00dc: 0x009a,     #  LATIN CAPITAL LETTER U WITH DIAERESIS
5967db96d56Sopenharmony_ci    0x00df: 0x00e1,     #  LATIN SMALL LETTER SHARP S
5977db96d56Sopenharmony_ci    0x00e0: 0x0085,     #  LATIN SMALL LETTER A WITH GRAVE
5987db96d56Sopenharmony_ci    0x00e1: 0x00a0,     #  LATIN SMALL LETTER A WITH ACUTE
5997db96d56Sopenharmony_ci    0x00e2: 0x0083,     #  LATIN SMALL LETTER A WITH CIRCUMFLEX
6007db96d56Sopenharmony_ci    0x00e4: 0x0084,     #  LATIN SMALL LETTER A WITH DIAERESIS
6017db96d56Sopenharmony_ci    0x00e5: 0x0086,     #  LATIN SMALL LETTER A WITH RING ABOVE
6027db96d56Sopenharmony_ci    0x00e6: 0x0091,     #  LATIN SMALL LIGATURE AE
6037db96d56Sopenharmony_ci    0x00e7: 0x0087,     #  LATIN SMALL LETTER C WITH CEDILLA
6047db96d56Sopenharmony_ci    0x00e8: 0x008a,     #  LATIN SMALL LETTER E WITH GRAVE
6057db96d56Sopenharmony_ci    0x00e9: 0x0082,     #  LATIN SMALL LETTER E WITH ACUTE
6067db96d56Sopenharmony_ci    0x00ea: 0x0088,     #  LATIN SMALL LETTER E WITH CIRCUMFLEX
6077db96d56Sopenharmony_ci    0x00eb: 0x0089,     #  LATIN SMALL LETTER E WITH DIAERESIS
6087db96d56Sopenharmony_ci    0x00ec: 0x008d,     #  LATIN SMALL LETTER I WITH GRAVE
6097db96d56Sopenharmony_ci    0x00ed: 0x00a1,     #  LATIN SMALL LETTER I WITH ACUTE
6107db96d56Sopenharmony_ci    0x00ee: 0x008c,     #  LATIN SMALL LETTER I WITH CIRCUMFLEX
6117db96d56Sopenharmony_ci    0x00ef: 0x008b,     #  LATIN SMALL LETTER I WITH DIAERESIS
6127db96d56Sopenharmony_ci    0x00f1: 0x00a4,     #  LATIN SMALL LETTER N WITH TILDE
6137db96d56Sopenharmony_ci    0x00f2: 0x0095,     #  LATIN SMALL LETTER O WITH GRAVE
6147db96d56Sopenharmony_ci    0x00f3: 0x00a2,     #  LATIN SMALL LETTER O WITH ACUTE
6157db96d56Sopenharmony_ci    0x00f4: 0x0093,     #  LATIN SMALL LETTER O WITH CIRCUMFLEX
6167db96d56Sopenharmony_ci    0x00f6: 0x0094,     #  LATIN SMALL LETTER O WITH DIAERESIS
6177db96d56Sopenharmony_ci    0x00f7: 0x00f6,     #  DIVISION SIGN
6187db96d56Sopenharmony_ci    0x00f9: 0x0097,     #  LATIN SMALL LETTER U WITH GRAVE
6197db96d56Sopenharmony_ci    0x00fa: 0x00a3,     #  LATIN SMALL LETTER U WITH ACUTE
6207db96d56Sopenharmony_ci    0x00fb: 0x0096,     #  LATIN SMALL LETTER U WITH CIRCUMFLEX
6217db96d56Sopenharmony_ci    0x00fc: 0x0081,     #  LATIN SMALL LETTER U WITH DIAERESIS
6227db96d56Sopenharmony_ci    0x00ff: 0x0098,     #  LATIN SMALL LETTER Y WITH DIAERESIS
6237db96d56Sopenharmony_ci    0x0192: 0x009f,     #  LATIN SMALL LETTER F WITH HOOK
6247db96d56Sopenharmony_ci    0x0393: 0x00e2,     #  GREEK CAPITAL LETTER GAMMA
6257db96d56Sopenharmony_ci    0x0398: 0x00e9,     #  GREEK CAPITAL LETTER THETA
6267db96d56Sopenharmony_ci    0x03a3: 0x00e4,     #  GREEK CAPITAL LETTER SIGMA
6277db96d56Sopenharmony_ci    0x03a6: 0x00e8,     #  GREEK CAPITAL LETTER PHI
6287db96d56Sopenharmony_ci    0x03a9: 0x00ea,     #  GREEK CAPITAL LETTER OMEGA
6297db96d56Sopenharmony_ci    0x03b1: 0x00e0,     #  GREEK SMALL LETTER ALPHA
6307db96d56Sopenharmony_ci    0x03b4: 0x00eb,     #  GREEK SMALL LETTER DELTA
6317db96d56Sopenharmony_ci    0x03b5: 0x00ee,     #  GREEK SMALL LETTER EPSILON
6327db96d56Sopenharmony_ci    0x03c0: 0x00e3,     #  GREEK SMALL LETTER PI
6337db96d56Sopenharmony_ci    0x03c3: 0x00e5,     #  GREEK SMALL LETTER SIGMA
6347db96d56Sopenharmony_ci    0x03c4: 0x00e7,     #  GREEK SMALL LETTER TAU
6357db96d56Sopenharmony_ci    0x03c6: 0x00ed,     #  GREEK SMALL LETTER PHI
6367db96d56Sopenharmony_ci    0x207f: 0x00fc,     #  SUPERSCRIPT LATIN SMALL LETTER N
6377db96d56Sopenharmony_ci    0x20a7: 0x009e,     #  PESETA SIGN
6387db96d56Sopenharmony_ci    0x2219: 0x00f9,     #  BULLET OPERATOR
6397db96d56Sopenharmony_ci    0x221a: 0x00fb,     #  SQUARE ROOT
6407db96d56Sopenharmony_ci    0x221e: 0x00ec,     #  INFINITY
6417db96d56Sopenharmony_ci    0x2229: 0x00ef,     #  INTERSECTION
6427db96d56Sopenharmony_ci    0x2248: 0x00f7,     #  ALMOST EQUAL TO
6437db96d56Sopenharmony_ci    0x2261: 0x00f0,     #  IDENTICAL TO
6447db96d56Sopenharmony_ci    0x2264: 0x00f3,     #  LESS-THAN OR EQUAL TO
6457db96d56Sopenharmony_ci    0x2265: 0x00f2,     #  GREATER-THAN OR EQUAL TO
6467db96d56Sopenharmony_ci    0x2310: 0x00a9,     #  REVERSED NOT SIGN
6477db96d56Sopenharmony_ci    0x2320: 0x00f4,     #  TOP HALF INTEGRAL
6487db96d56Sopenharmony_ci    0x2321: 0x00f5,     #  BOTTOM HALF INTEGRAL
6497db96d56Sopenharmony_ci    0x2500: 0x00c4,     #  BOX DRAWINGS LIGHT HORIZONTAL
6507db96d56Sopenharmony_ci    0x2502: 0x00b3,     #  BOX DRAWINGS LIGHT VERTICAL
6517db96d56Sopenharmony_ci    0x250c: 0x00da,     #  BOX DRAWINGS LIGHT DOWN AND RIGHT
6527db96d56Sopenharmony_ci    0x2510: 0x00bf,     #  BOX DRAWINGS LIGHT DOWN AND LEFT
6537db96d56Sopenharmony_ci    0x2514: 0x00c0,     #  BOX DRAWINGS LIGHT UP AND RIGHT
6547db96d56Sopenharmony_ci    0x2518: 0x00d9,     #  BOX DRAWINGS LIGHT UP AND LEFT
6557db96d56Sopenharmony_ci    0x251c: 0x00c3,     #  BOX DRAWINGS LIGHT VERTICAL AND RIGHT
6567db96d56Sopenharmony_ci    0x2524: 0x00b4,     #  BOX DRAWINGS LIGHT VERTICAL AND LEFT
6577db96d56Sopenharmony_ci    0x252c: 0x00c2,     #  BOX DRAWINGS LIGHT DOWN AND HORIZONTAL
6587db96d56Sopenharmony_ci    0x2534: 0x00c1,     #  BOX DRAWINGS LIGHT UP AND HORIZONTAL
6597db96d56Sopenharmony_ci    0x253c: 0x00c5,     #  BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL
6607db96d56Sopenharmony_ci    0x2550: 0x00cd,     #  BOX DRAWINGS DOUBLE HORIZONTAL
6617db96d56Sopenharmony_ci    0x2551: 0x00ba,     #  BOX DRAWINGS DOUBLE VERTICAL
6627db96d56Sopenharmony_ci    0x2552: 0x00d5,     #  BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE
6637db96d56Sopenharmony_ci    0x2553: 0x00d6,     #  BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE
6647db96d56Sopenharmony_ci    0x2554: 0x00c9,     #  BOX DRAWINGS DOUBLE DOWN AND RIGHT
6657db96d56Sopenharmony_ci    0x2555: 0x00b8,     #  BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE
6667db96d56Sopenharmony_ci    0x2556: 0x00b7,     #  BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE
6677db96d56Sopenharmony_ci    0x2557: 0x00bb,     #  BOX DRAWINGS DOUBLE DOWN AND LEFT
6687db96d56Sopenharmony_ci    0x2558: 0x00d4,     #  BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE
6697db96d56Sopenharmony_ci    0x2559: 0x00d3,     #  BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE
6707db96d56Sopenharmony_ci    0x255a: 0x00c8,     #  BOX DRAWINGS DOUBLE UP AND RIGHT
6717db96d56Sopenharmony_ci    0x255b: 0x00be,     #  BOX DRAWINGS UP SINGLE AND LEFT DOUBLE
6727db96d56Sopenharmony_ci    0x255c: 0x00bd,     #  BOX DRAWINGS UP DOUBLE AND LEFT SINGLE
6737db96d56Sopenharmony_ci    0x255d: 0x00bc,     #  BOX DRAWINGS DOUBLE UP AND LEFT
6747db96d56Sopenharmony_ci    0x255e: 0x00c6,     #  BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE
6757db96d56Sopenharmony_ci    0x255f: 0x00c7,     #  BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE
6767db96d56Sopenharmony_ci    0x2560: 0x00cc,     #  BOX DRAWINGS DOUBLE VERTICAL AND RIGHT
6777db96d56Sopenharmony_ci    0x2561: 0x00b5,     #  BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE
6787db96d56Sopenharmony_ci    0x2562: 0x00b6,     #  BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE
6797db96d56Sopenharmony_ci    0x2563: 0x00b9,     #  BOX DRAWINGS DOUBLE VERTICAL AND LEFT
6807db96d56Sopenharmony_ci    0x2564: 0x00d1,     #  BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE
6817db96d56Sopenharmony_ci    0x2565: 0x00d2,     #  BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE
6827db96d56Sopenharmony_ci    0x2566: 0x00cb,     #  BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL
6837db96d56Sopenharmony_ci    0x2567: 0x00cf,     #  BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE
6847db96d56Sopenharmony_ci    0x2568: 0x00d0,     #  BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE
6857db96d56Sopenharmony_ci    0x2569: 0x00ca,     #  BOX DRAWINGS DOUBLE UP AND HORIZONTAL
6867db96d56Sopenharmony_ci    0x256a: 0x00d8,     #  BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE
6877db96d56Sopenharmony_ci    0x256b: 0x00d7,     #  BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE
6887db96d56Sopenharmony_ci    0x256c: 0x00ce,     #  BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL
6897db96d56Sopenharmony_ci    0x2580: 0x00df,     #  UPPER HALF BLOCK
6907db96d56Sopenharmony_ci    0x2584: 0x00dc,     #  LOWER HALF BLOCK
6917db96d56Sopenharmony_ci    0x2588: 0x00db,     #  FULL BLOCK
6927db96d56Sopenharmony_ci    0x258c: 0x00dd,     #  LEFT HALF BLOCK
6937db96d56Sopenharmony_ci    0x2590: 0x00de,     #  RIGHT HALF BLOCK
6947db96d56Sopenharmony_ci    0x2591: 0x00b0,     #  LIGHT SHADE
6957db96d56Sopenharmony_ci    0x2592: 0x00b1,     #  MEDIUM SHADE
6967db96d56Sopenharmony_ci    0x2593: 0x00b2,     #  DARK SHADE
6977db96d56Sopenharmony_ci    0x25a0: 0x00fe,     #  BLACK SQUARE
6987db96d56Sopenharmony_ci}
699