17db96d56Sopenharmony_ci""" Python Character Mapping Codec cp775 generated from 'VENDORS/MICSFT/PC/CP775.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='cp775', 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### Decoding Map 447db96d56Sopenharmony_ci 457db96d56Sopenharmony_cidecoding_map = codecs.make_identity_dict(range(256)) 467db96d56Sopenharmony_cidecoding_map.update({ 477db96d56Sopenharmony_ci 0x0080: 0x0106, # LATIN CAPITAL LETTER C WITH ACUTE 487db96d56Sopenharmony_ci 0x0081: 0x00fc, # LATIN SMALL LETTER U WITH DIAERESIS 497db96d56Sopenharmony_ci 0x0082: 0x00e9, # LATIN SMALL LETTER E WITH ACUTE 507db96d56Sopenharmony_ci 0x0083: 0x0101, # LATIN SMALL LETTER A WITH MACRON 517db96d56Sopenharmony_ci 0x0084: 0x00e4, # LATIN SMALL LETTER A WITH DIAERESIS 527db96d56Sopenharmony_ci 0x0085: 0x0123, # LATIN SMALL LETTER G WITH CEDILLA 537db96d56Sopenharmony_ci 0x0086: 0x00e5, # LATIN SMALL LETTER A WITH RING ABOVE 547db96d56Sopenharmony_ci 0x0087: 0x0107, # LATIN SMALL LETTER C WITH ACUTE 557db96d56Sopenharmony_ci 0x0088: 0x0142, # LATIN SMALL LETTER L WITH STROKE 567db96d56Sopenharmony_ci 0x0089: 0x0113, # LATIN SMALL LETTER E WITH MACRON 577db96d56Sopenharmony_ci 0x008a: 0x0156, # LATIN CAPITAL LETTER R WITH CEDILLA 587db96d56Sopenharmony_ci 0x008b: 0x0157, # LATIN SMALL LETTER R WITH CEDILLA 597db96d56Sopenharmony_ci 0x008c: 0x012b, # LATIN SMALL LETTER I WITH MACRON 607db96d56Sopenharmony_ci 0x008d: 0x0179, # LATIN CAPITAL LETTER Z WITH ACUTE 617db96d56Sopenharmony_ci 0x008e: 0x00c4, # LATIN CAPITAL LETTER A WITH DIAERESIS 627db96d56Sopenharmony_ci 0x008f: 0x00c5, # LATIN CAPITAL LETTER A WITH RING ABOVE 637db96d56Sopenharmony_ci 0x0090: 0x00c9, # LATIN CAPITAL LETTER E WITH ACUTE 647db96d56Sopenharmony_ci 0x0091: 0x00e6, # LATIN SMALL LIGATURE AE 657db96d56Sopenharmony_ci 0x0092: 0x00c6, # LATIN CAPITAL LIGATURE AE 667db96d56Sopenharmony_ci 0x0093: 0x014d, # LATIN SMALL LETTER O WITH MACRON 677db96d56Sopenharmony_ci 0x0094: 0x00f6, # LATIN SMALL LETTER O WITH DIAERESIS 687db96d56Sopenharmony_ci 0x0095: 0x0122, # LATIN CAPITAL LETTER G WITH CEDILLA 697db96d56Sopenharmony_ci 0x0096: 0x00a2, # CENT SIGN 707db96d56Sopenharmony_ci 0x0097: 0x015a, # LATIN CAPITAL LETTER S WITH ACUTE 717db96d56Sopenharmony_ci 0x0098: 0x015b, # LATIN SMALL LETTER S WITH ACUTE 727db96d56Sopenharmony_ci 0x0099: 0x00d6, # LATIN CAPITAL LETTER O WITH DIAERESIS 737db96d56Sopenharmony_ci 0x009a: 0x00dc, # LATIN CAPITAL LETTER U WITH DIAERESIS 747db96d56Sopenharmony_ci 0x009b: 0x00f8, # LATIN SMALL LETTER O WITH STROKE 757db96d56Sopenharmony_ci 0x009c: 0x00a3, # POUND SIGN 767db96d56Sopenharmony_ci 0x009d: 0x00d8, # LATIN CAPITAL LETTER O WITH STROKE 777db96d56Sopenharmony_ci 0x009e: 0x00d7, # MULTIPLICATION SIGN 787db96d56Sopenharmony_ci 0x009f: 0x00a4, # CURRENCY SIGN 797db96d56Sopenharmony_ci 0x00a0: 0x0100, # LATIN CAPITAL LETTER A WITH MACRON 807db96d56Sopenharmony_ci 0x00a1: 0x012a, # LATIN CAPITAL LETTER I WITH MACRON 817db96d56Sopenharmony_ci 0x00a2: 0x00f3, # LATIN SMALL LETTER O WITH ACUTE 827db96d56Sopenharmony_ci 0x00a3: 0x017b, # LATIN CAPITAL LETTER Z WITH DOT ABOVE 837db96d56Sopenharmony_ci 0x00a4: 0x017c, # LATIN SMALL LETTER Z WITH DOT ABOVE 847db96d56Sopenharmony_ci 0x00a5: 0x017a, # LATIN SMALL LETTER Z WITH ACUTE 857db96d56Sopenharmony_ci 0x00a6: 0x201d, # RIGHT DOUBLE QUOTATION MARK 867db96d56Sopenharmony_ci 0x00a7: 0x00a6, # BROKEN BAR 877db96d56Sopenharmony_ci 0x00a8: 0x00a9, # COPYRIGHT SIGN 887db96d56Sopenharmony_ci 0x00a9: 0x00ae, # REGISTERED SIGN 897db96d56Sopenharmony_ci 0x00aa: 0x00ac, # NOT SIGN 907db96d56Sopenharmony_ci 0x00ab: 0x00bd, # VULGAR FRACTION ONE HALF 917db96d56Sopenharmony_ci 0x00ac: 0x00bc, # VULGAR FRACTION ONE QUARTER 927db96d56Sopenharmony_ci 0x00ad: 0x0141, # LATIN CAPITAL LETTER L WITH STROKE 937db96d56Sopenharmony_ci 0x00ae: 0x00ab, # LEFT-POINTING DOUBLE ANGLE QUOTATION MARK 947db96d56Sopenharmony_ci 0x00af: 0x00bb, # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK 957db96d56Sopenharmony_ci 0x00b0: 0x2591, # LIGHT SHADE 967db96d56Sopenharmony_ci 0x00b1: 0x2592, # MEDIUM SHADE 977db96d56Sopenharmony_ci 0x00b2: 0x2593, # DARK SHADE 987db96d56Sopenharmony_ci 0x00b3: 0x2502, # BOX DRAWINGS LIGHT VERTICAL 997db96d56Sopenharmony_ci 0x00b4: 0x2524, # BOX DRAWINGS LIGHT VERTICAL AND LEFT 1007db96d56Sopenharmony_ci 0x00b5: 0x0104, # LATIN CAPITAL LETTER A WITH OGONEK 1017db96d56Sopenharmony_ci 0x00b6: 0x010c, # LATIN CAPITAL LETTER C WITH CARON 1027db96d56Sopenharmony_ci 0x00b7: 0x0118, # LATIN CAPITAL LETTER E WITH OGONEK 1037db96d56Sopenharmony_ci 0x00b8: 0x0116, # LATIN CAPITAL LETTER E WITH DOT ABOVE 1047db96d56Sopenharmony_ci 0x00b9: 0x2563, # BOX DRAWINGS DOUBLE VERTICAL AND LEFT 1057db96d56Sopenharmony_ci 0x00ba: 0x2551, # BOX DRAWINGS DOUBLE VERTICAL 1067db96d56Sopenharmony_ci 0x00bb: 0x2557, # BOX DRAWINGS DOUBLE DOWN AND LEFT 1077db96d56Sopenharmony_ci 0x00bc: 0x255d, # BOX DRAWINGS DOUBLE UP AND LEFT 1087db96d56Sopenharmony_ci 0x00bd: 0x012e, # LATIN CAPITAL LETTER I WITH OGONEK 1097db96d56Sopenharmony_ci 0x00be: 0x0160, # LATIN CAPITAL LETTER S WITH CARON 1107db96d56Sopenharmony_ci 0x00bf: 0x2510, # BOX DRAWINGS LIGHT DOWN AND LEFT 1117db96d56Sopenharmony_ci 0x00c0: 0x2514, # BOX DRAWINGS LIGHT UP AND RIGHT 1127db96d56Sopenharmony_ci 0x00c1: 0x2534, # BOX DRAWINGS LIGHT UP AND HORIZONTAL 1137db96d56Sopenharmony_ci 0x00c2: 0x252c, # BOX DRAWINGS LIGHT DOWN AND HORIZONTAL 1147db96d56Sopenharmony_ci 0x00c3: 0x251c, # BOX DRAWINGS LIGHT VERTICAL AND RIGHT 1157db96d56Sopenharmony_ci 0x00c4: 0x2500, # BOX DRAWINGS LIGHT HORIZONTAL 1167db96d56Sopenharmony_ci 0x00c5: 0x253c, # BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL 1177db96d56Sopenharmony_ci 0x00c6: 0x0172, # LATIN CAPITAL LETTER U WITH OGONEK 1187db96d56Sopenharmony_ci 0x00c7: 0x016a, # LATIN CAPITAL LETTER U WITH MACRON 1197db96d56Sopenharmony_ci 0x00c8: 0x255a, # BOX DRAWINGS DOUBLE UP AND RIGHT 1207db96d56Sopenharmony_ci 0x00c9: 0x2554, # BOX DRAWINGS DOUBLE DOWN AND RIGHT 1217db96d56Sopenharmony_ci 0x00ca: 0x2569, # BOX DRAWINGS DOUBLE UP AND HORIZONTAL 1227db96d56Sopenharmony_ci 0x00cb: 0x2566, # BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL 1237db96d56Sopenharmony_ci 0x00cc: 0x2560, # BOX DRAWINGS DOUBLE VERTICAL AND RIGHT 1247db96d56Sopenharmony_ci 0x00cd: 0x2550, # BOX DRAWINGS DOUBLE HORIZONTAL 1257db96d56Sopenharmony_ci 0x00ce: 0x256c, # BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL 1267db96d56Sopenharmony_ci 0x00cf: 0x017d, # LATIN CAPITAL LETTER Z WITH CARON 1277db96d56Sopenharmony_ci 0x00d0: 0x0105, # LATIN SMALL LETTER A WITH OGONEK 1287db96d56Sopenharmony_ci 0x00d1: 0x010d, # LATIN SMALL LETTER C WITH CARON 1297db96d56Sopenharmony_ci 0x00d2: 0x0119, # LATIN SMALL LETTER E WITH OGONEK 1307db96d56Sopenharmony_ci 0x00d3: 0x0117, # LATIN SMALL LETTER E WITH DOT ABOVE 1317db96d56Sopenharmony_ci 0x00d4: 0x012f, # LATIN SMALL LETTER I WITH OGONEK 1327db96d56Sopenharmony_ci 0x00d5: 0x0161, # LATIN SMALL LETTER S WITH CARON 1337db96d56Sopenharmony_ci 0x00d6: 0x0173, # LATIN SMALL LETTER U WITH OGONEK 1347db96d56Sopenharmony_ci 0x00d7: 0x016b, # LATIN SMALL LETTER U WITH MACRON 1357db96d56Sopenharmony_ci 0x00d8: 0x017e, # LATIN SMALL LETTER Z WITH CARON 1367db96d56Sopenharmony_ci 0x00d9: 0x2518, # BOX DRAWINGS LIGHT UP AND LEFT 1377db96d56Sopenharmony_ci 0x00da: 0x250c, # BOX DRAWINGS LIGHT DOWN AND RIGHT 1387db96d56Sopenharmony_ci 0x00db: 0x2588, # FULL BLOCK 1397db96d56Sopenharmony_ci 0x00dc: 0x2584, # LOWER HALF BLOCK 1407db96d56Sopenharmony_ci 0x00dd: 0x258c, # LEFT HALF BLOCK 1417db96d56Sopenharmony_ci 0x00de: 0x2590, # RIGHT HALF BLOCK 1427db96d56Sopenharmony_ci 0x00df: 0x2580, # UPPER HALF BLOCK 1437db96d56Sopenharmony_ci 0x00e0: 0x00d3, # LATIN CAPITAL LETTER O WITH ACUTE 1447db96d56Sopenharmony_ci 0x00e1: 0x00df, # LATIN SMALL LETTER SHARP S (GERMAN) 1457db96d56Sopenharmony_ci 0x00e2: 0x014c, # LATIN CAPITAL LETTER O WITH MACRON 1467db96d56Sopenharmony_ci 0x00e3: 0x0143, # LATIN CAPITAL LETTER N WITH ACUTE 1477db96d56Sopenharmony_ci 0x00e4: 0x00f5, # LATIN SMALL LETTER O WITH TILDE 1487db96d56Sopenharmony_ci 0x00e5: 0x00d5, # LATIN CAPITAL LETTER O WITH TILDE 1497db96d56Sopenharmony_ci 0x00e6: 0x00b5, # MICRO SIGN 1507db96d56Sopenharmony_ci 0x00e7: 0x0144, # LATIN SMALL LETTER N WITH ACUTE 1517db96d56Sopenharmony_ci 0x00e8: 0x0136, # LATIN CAPITAL LETTER K WITH CEDILLA 1527db96d56Sopenharmony_ci 0x00e9: 0x0137, # LATIN SMALL LETTER K WITH CEDILLA 1537db96d56Sopenharmony_ci 0x00ea: 0x013b, # LATIN CAPITAL LETTER L WITH CEDILLA 1547db96d56Sopenharmony_ci 0x00eb: 0x013c, # LATIN SMALL LETTER L WITH CEDILLA 1557db96d56Sopenharmony_ci 0x00ec: 0x0146, # LATIN SMALL LETTER N WITH CEDILLA 1567db96d56Sopenharmony_ci 0x00ed: 0x0112, # LATIN CAPITAL LETTER E WITH MACRON 1577db96d56Sopenharmony_ci 0x00ee: 0x0145, # LATIN CAPITAL LETTER N WITH CEDILLA 1587db96d56Sopenharmony_ci 0x00ef: 0x2019, # RIGHT SINGLE QUOTATION MARK 1597db96d56Sopenharmony_ci 0x00f0: 0x00ad, # SOFT HYPHEN 1607db96d56Sopenharmony_ci 0x00f1: 0x00b1, # PLUS-MINUS SIGN 1617db96d56Sopenharmony_ci 0x00f2: 0x201c, # LEFT DOUBLE QUOTATION MARK 1627db96d56Sopenharmony_ci 0x00f3: 0x00be, # VULGAR FRACTION THREE QUARTERS 1637db96d56Sopenharmony_ci 0x00f4: 0x00b6, # PILCROW SIGN 1647db96d56Sopenharmony_ci 0x00f5: 0x00a7, # SECTION SIGN 1657db96d56Sopenharmony_ci 0x00f6: 0x00f7, # DIVISION SIGN 1667db96d56Sopenharmony_ci 0x00f7: 0x201e, # DOUBLE LOW-9 QUOTATION MARK 1677db96d56Sopenharmony_ci 0x00f8: 0x00b0, # DEGREE SIGN 1687db96d56Sopenharmony_ci 0x00f9: 0x2219, # BULLET OPERATOR 1697db96d56Sopenharmony_ci 0x00fa: 0x00b7, # MIDDLE DOT 1707db96d56Sopenharmony_ci 0x00fb: 0x00b9, # SUPERSCRIPT ONE 1717db96d56Sopenharmony_ci 0x00fc: 0x00b3, # SUPERSCRIPT THREE 1727db96d56Sopenharmony_ci 0x00fd: 0x00b2, # SUPERSCRIPT TWO 1737db96d56Sopenharmony_ci 0x00fe: 0x25a0, # BLACK SQUARE 1747db96d56Sopenharmony_ci 0x00ff: 0x00a0, # NO-BREAK SPACE 1757db96d56Sopenharmony_ci}) 1767db96d56Sopenharmony_ci 1777db96d56Sopenharmony_ci### Decoding Table 1787db96d56Sopenharmony_ci 1797db96d56Sopenharmony_cidecoding_table = ( 1807db96d56Sopenharmony_ci '\x00' # 0x0000 -> NULL 1817db96d56Sopenharmony_ci '\x01' # 0x0001 -> START OF HEADING 1827db96d56Sopenharmony_ci '\x02' # 0x0002 -> START OF TEXT 1837db96d56Sopenharmony_ci '\x03' # 0x0003 -> END OF TEXT 1847db96d56Sopenharmony_ci '\x04' # 0x0004 -> END OF TRANSMISSION 1857db96d56Sopenharmony_ci '\x05' # 0x0005 -> ENQUIRY 1867db96d56Sopenharmony_ci '\x06' # 0x0006 -> ACKNOWLEDGE 1877db96d56Sopenharmony_ci '\x07' # 0x0007 -> BELL 1887db96d56Sopenharmony_ci '\x08' # 0x0008 -> BACKSPACE 1897db96d56Sopenharmony_ci '\t' # 0x0009 -> HORIZONTAL TABULATION 1907db96d56Sopenharmony_ci '\n' # 0x000a -> LINE FEED 1917db96d56Sopenharmony_ci '\x0b' # 0x000b -> VERTICAL TABULATION 1927db96d56Sopenharmony_ci '\x0c' # 0x000c -> FORM FEED 1937db96d56Sopenharmony_ci '\r' # 0x000d -> CARRIAGE RETURN 1947db96d56Sopenharmony_ci '\x0e' # 0x000e -> SHIFT OUT 1957db96d56Sopenharmony_ci '\x0f' # 0x000f -> SHIFT IN 1967db96d56Sopenharmony_ci '\x10' # 0x0010 -> DATA LINK ESCAPE 1977db96d56Sopenharmony_ci '\x11' # 0x0011 -> DEVICE CONTROL ONE 1987db96d56Sopenharmony_ci '\x12' # 0x0012 -> DEVICE CONTROL TWO 1997db96d56Sopenharmony_ci '\x13' # 0x0013 -> DEVICE CONTROL THREE 2007db96d56Sopenharmony_ci '\x14' # 0x0014 -> DEVICE CONTROL FOUR 2017db96d56Sopenharmony_ci '\x15' # 0x0015 -> NEGATIVE ACKNOWLEDGE 2027db96d56Sopenharmony_ci '\x16' # 0x0016 -> SYNCHRONOUS IDLE 2037db96d56Sopenharmony_ci '\x17' # 0x0017 -> END OF TRANSMISSION BLOCK 2047db96d56Sopenharmony_ci '\x18' # 0x0018 -> CANCEL 2057db96d56Sopenharmony_ci '\x19' # 0x0019 -> END OF MEDIUM 2067db96d56Sopenharmony_ci '\x1a' # 0x001a -> SUBSTITUTE 2077db96d56Sopenharmony_ci '\x1b' # 0x001b -> ESCAPE 2087db96d56Sopenharmony_ci '\x1c' # 0x001c -> FILE SEPARATOR 2097db96d56Sopenharmony_ci '\x1d' # 0x001d -> GROUP SEPARATOR 2107db96d56Sopenharmony_ci '\x1e' # 0x001e -> RECORD SEPARATOR 2117db96d56Sopenharmony_ci '\x1f' # 0x001f -> UNIT SEPARATOR 2127db96d56Sopenharmony_ci ' ' # 0x0020 -> SPACE 2137db96d56Sopenharmony_ci '!' # 0x0021 -> EXCLAMATION MARK 2147db96d56Sopenharmony_ci '"' # 0x0022 -> QUOTATION MARK 2157db96d56Sopenharmony_ci '#' # 0x0023 -> NUMBER SIGN 2167db96d56Sopenharmony_ci '$' # 0x0024 -> DOLLAR SIGN 2177db96d56Sopenharmony_ci '%' # 0x0025 -> PERCENT SIGN 2187db96d56Sopenharmony_ci '&' # 0x0026 -> AMPERSAND 2197db96d56Sopenharmony_ci "'" # 0x0027 -> APOSTROPHE 2207db96d56Sopenharmony_ci '(' # 0x0028 -> LEFT PARENTHESIS 2217db96d56Sopenharmony_ci ')' # 0x0029 -> RIGHT PARENTHESIS 2227db96d56Sopenharmony_ci '*' # 0x002a -> ASTERISK 2237db96d56Sopenharmony_ci '+' # 0x002b -> PLUS SIGN 2247db96d56Sopenharmony_ci ',' # 0x002c -> COMMA 2257db96d56Sopenharmony_ci '-' # 0x002d -> HYPHEN-MINUS 2267db96d56Sopenharmony_ci '.' # 0x002e -> FULL STOP 2277db96d56Sopenharmony_ci '/' # 0x002f -> SOLIDUS 2287db96d56Sopenharmony_ci '0' # 0x0030 -> DIGIT ZERO 2297db96d56Sopenharmony_ci '1' # 0x0031 -> DIGIT ONE 2307db96d56Sopenharmony_ci '2' # 0x0032 -> DIGIT TWO 2317db96d56Sopenharmony_ci '3' # 0x0033 -> DIGIT THREE 2327db96d56Sopenharmony_ci '4' # 0x0034 -> DIGIT FOUR 2337db96d56Sopenharmony_ci '5' # 0x0035 -> DIGIT FIVE 2347db96d56Sopenharmony_ci '6' # 0x0036 -> DIGIT SIX 2357db96d56Sopenharmony_ci '7' # 0x0037 -> DIGIT SEVEN 2367db96d56Sopenharmony_ci '8' # 0x0038 -> DIGIT EIGHT 2377db96d56Sopenharmony_ci '9' # 0x0039 -> DIGIT NINE 2387db96d56Sopenharmony_ci ':' # 0x003a -> COLON 2397db96d56Sopenharmony_ci ';' # 0x003b -> SEMICOLON 2407db96d56Sopenharmony_ci '<' # 0x003c -> LESS-THAN SIGN 2417db96d56Sopenharmony_ci '=' # 0x003d -> EQUALS SIGN 2427db96d56Sopenharmony_ci '>' # 0x003e -> GREATER-THAN SIGN 2437db96d56Sopenharmony_ci '?' # 0x003f -> QUESTION MARK 2447db96d56Sopenharmony_ci '@' # 0x0040 -> COMMERCIAL AT 2457db96d56Sopenharmony_ci 'A' # 0x0041 -> LATIN CAPITAL LETTER A 2467db96d56Sopenharmony_ci 'B' # 0x0042 -> LATIN CAPITAL LETTER B 2477db96d56Sopenharmony_ci 'C' # 0x0043 -> LATIN CAPITAL LETTER C 2487db96d56Sopenharmony_ci 'D' # 0x0044 -> LATIN CAPITAL LETTER D 2497db96d56Sopenharmony_ci 'E' # 0x0045 -> LATIN CAPITAL LETTER E 2507db96d56Sopenharmony_ci 'F' # 0x0046 -> LATIN CAPITAL LETTER F 2517db96d56Sopenharmony_ci 'G' # 0x0047 -> LATIN CAPITAL LETTER G 2527db96d56Sopenharmony_ci 'H' # 0x0048 -> LATIN CAPITAL LETTER H 2537db96d56Sopenharmony_ci 'I' # 0x0049 -> LATIN CAPITAL LETTER I 2547db96d56Sopenharmony_ci 'J' # 0x004a -> LATIN CAPITAL LETTER J 2557db96d56Sopenharmony_ci 'K' # 0x004b -> LATIN CAPITAL LETTER K 2567db96d56Sopenharmony_ci 'L' # 0x004c -> LATIN CAPITAL LETTER L 2577db96d56Sopenharmony_ci 'M' # 0x004d -> LATIN CAPITAL LETTER M 2587db96d56Sopenharmony_ci 'N' # 0x004e -> LATIN CAPITAL LETTER N 2597db96d56Sopenharmony_ci 'O' # 0x004f -> LATIN CAPITAL LETTER O 2607db96d56Sopenharmony_ci 'P' # 0x0050 -> LATIN CAPITAL LETTER P 2617db96d56Sopenharmony_ci 'Q' # 0x0051 -> LATIN CAPITAL LETTER Q 2627db96d56Sopenharmony_ci 'R' # 0x0052 -> LATIN CAPITAL LETTER R 2637db96d56Sopenharmony_ci 'S' # 0x0053 -> LATIN CAPITAL LETTER S 2647db96d56Sopenharmony_ci 'T' # 0x0054 -> LATIN CAPITAL LETTER T 2657db96d56Sopenharmony_ci 'U' # 0x0055 -> LATIN CAPITAL LETTER U 2667db96d56Sopenharmony_ci 'V' # 0x0056 -> LATIN CAPITAL LETTER V 2677db96d56Sopenharmony_ci 'W' # 0x0057 -> LATIN CAPITAL LETTER W 2687db96d56Sopenharmony_ci 'X' # 0x0058 -> LATIN CAPITAL LETTER X 2697db96d56Sopenharmony_ci 'Y' # 0x0059 -> LATIN CAPITAL LETTER Y 2707db96d56Sopenharmony_ci 'Z' # 0x005a -> LATIN CAPITAL LETTER Z 2717db96d56Sopenharmony_ci '[' # 0x005b -> LEFT SQUARE BRACKET 2727db96d56Sopenharmony_ci '\\' # 0x005c -> REVERSE SOLIDUS 2737db96d56Sopenharmony_ci ']' # 0x005d -> RIGHT SQUARE BRACKET 2747db96d56Sopenharmony_ci '^' # 0x005e -> CIRCUMFLEX ACCENT 2757db96d56Sopenharmony_ci '_' # 0x005f -> LOW LINE 2767db96d56Sopenharmony_ci '`' # 0x0060 -> GRAVE ACCENT 2777db96d56Sopenharmony_ci 'a' # 0x0061 -> LATIN SMALL LETTER A 2787db96d56Sopenharmony_ci 'b' # 0x0062 -> LATIN SMALL LETTER B 2797db96d56Sopenharmony_ci 'c' # 0x0063 -> LATIN SMALL LETTER C 2807db96d56Sopenharmony_ci 'd' # 0x0064 -> LATIN SMALL LETTER D 2817db96d56Sopenharmony_ci 'e' # 0x0065 -> LATIN SMALL LETTER E 2827db96d56Sopenharmony_ci 'f' # 0x0066 -> LATIN SMALL LETTER F 2837db96d56Sopenharmony_ci 'g' # 0x0067 -> LATIN SMALL LETTER G 2847db96d56Sopenharmony_ci 'h' # 0x0068 -> LATIN SMALL LETTER H 2857db96d56Sopenharmony_ci 'i' # 0x0069 -> LATIN SMALL LETTER I 2867db96d56Sopenharmony_ci 'j' # 0x006a -> LATIN SMALL LETTER J 2877db96d56Sopenharmony_ci 'k' # 0x006b -> LATIN SMALL LETTER K 2887db96d56Sopenharmony_ci 'l' # 0x006c -> LATIN SMALL LETTER L 2897db96d56Sopenharmony_ci 'm' # 0x006d -> LATIN SMALL LETTER M 2907db96d56Sopenharmony_ci 'n' # 0x006e -> LATIN SMALL LETTER N 2917db96d56Sopenharmony_ci 'o' # 0x006f -> LATIN SMALL LETTER O 2927db96d56Sopenharmony_ci 'p' # 0x0070 -> LATIN SMALL LETTER P 2937db96d56Sopenharmony_ci 'q' # 0x0071 -> LATIN SMALL LETTER Q 2947db96d56Sopenharmony_ci 'r' # 0x0072 -> LATIN SMALL LETTER R 2957db96d56Sopenharmony_ci 's' # 0x0073 -> LATIN SMALL LETTER S 2967db96d56Sopenharmony_ci 't' # 0x0074 -> LATIN SMALL LETTER T 2977db96d56Sopenharmony_ci 'u' # 0x0075 -> LATIN SMALL LETTER U 2987db96d56Sopenharmony_ci 'v' # 0x0076 -> LATIN SMALL LETTER V 2997db96d56Sopenharmony_ci 'w' # 0x0077 -> LATIN SMALL LETTER W 3007db96d56Sopenharmony_ci 'x' # 0x0078 -> LATIN SMALL LETTER X 3017db96d56Sopenharmony_ci 'y' # 0x0079 -> LATIN SMALL LETTER Y 3027db96d56Sopenharmony_ci 'z' # 0x007a -> LATIN SMALL LETTER Z 3037db96d56Sopenharmony_ci '{' # 0x007b -> LEFT CURLY BRACKET 3047db96d56Sopenharmony_ci '|' # 0x007c -> VERTICAL LINE 3057db96d56Sopenharmony_ci '}' # 0x007d -> RIGHT CURLY BRACKET 3067db96d56Sopenharmony_ci '~' # 0x007e -> TILDE 3077db96d56Sopenharmony_ci '\x7f' # 0x007f -> DELETE 3087db96d56Sopenharmony_ci '\u0106' # 0x0080 -> LATIN CAPITAL LETTER C WITH ACUTE 3097db96d56Sopenharmony_ci '\xfc' # 0x0081 -> LATIN SMALL LETTER U WITH DIAERESIS 3107db96d56Sopenharmony_ci '\xe9' # 0x0082 -> LATIN SMALL LETTER E WITH ACUTE 3117db96d56Sopenharmony_ci '\u0101' # 0x0083 -> LATIN SMALL LETTER A WITH MACRON 3127db96d56Sopenharmony_ci '\xe4' # 0x0084 -> LATIN SMALL LETTER A WITH DIAERESIS 3137db96d56Sopenharmony_ci '\u0123' # 0x0085 -> LATIN SMALL LETTER G WITH CEDILLA 3147db96d56Sopenharmony_ci '\xe5' # 0x0086 -> LATIN SMALL LETTER A WITH RING ABOVE 3157db96d56Sopenharmony_ci '\u0107' # 0x0087 -> LATIN SMALL LETTER C WITH ACUTE 3167db96d56Sopenharmony_ci '\u0142' # 0x0088 -> LATIN SMALL LETTER L WITH STROKE 3177db96d56Sopenharmony_ci '\u0113' # 0x0089 -> LATIN SMALL LETTER E WITH MACRON 3187db96d56Sopenharmony_ci '\u0156' # 0x008a -> LATIN CAPITAL LETTER R WITH CEDILLA 3197db96d56Sopenharmony_ci '\u0157' # 0x008b -> LATIN SMALL LETTER R WITH CEDILLA 3207db96d56Sopenharmony_ci '\u012b' # 0x008c -> LATIN SMALL LETTER I WITH MACRON 3217db96d56Sopenharmony_ci '\u0179' # 0x008d -> LATIN CAPITAL LETTER Z WITH ACUTE 3227db96d56Sopenharmony_ci '\xc4' # 0x008e -> LATIN CAPITAL LETTER A WITH DIAERESIS 3237db96d56Sopenharmony_ci '\xc5' # 0x008f -> LATIN CAPITAL LETTER A WITH RING ABOVE 3247db96d56Sopenharmony_ci '\xc9' # 0x0090 -> LATIN CAPITAL LETTER E WITH ACUTE 3257db96d56Sopenharmony_ci '\xe6' # 0x0091 -> LATIN SMALL LIGATURE AE 3267db96d56Sopenharmony_ci '\xc6' # 0x0092 -> LATIN CAPITAL LIGATURE AE 3277db96d56Sopenharmony_ci '\u014d' # 0x0093 -> LATIN SMALL LETTER O WITH MACRON 3287db96d56Sopenharmony_ci '\xf6' # 0x0094 -> LATIN SMALL LETTER O WITH DIAERESIS 3297db96d56Sopenharmony_ci '\u0122' # 0x0095 -> LATIN CAPITAL LETTER G WITH CEDILLA 3307db96d56Sopenharmony_ci '\xa2' # 0x0096 -> CENT SIGN 3317db96d56Sopenharmony_ci '\u015a' # 0x0097 -> LATIN CAPITAL LETTER S WITH ACUTE 3327db96d56Sopenharmony_ci '\u015b' # 0x0098 -> LATIN SMALL LETTER S WITH ACUTE 3337db96d56Sopenharmony_ci '\xd6' # 0x0099 -> LATIN CAPITAL LETTER O WITH DIAERESIS 3347db96d56Sopenharmony_ci '\xdc' # 0x009a -> LATIN CAPITAL LETTER U WITH DIAERESIS 3357db96d56Sopenharmony_ci '\xf8' # 0x009b -> LATIN SMALL LETTER O WITH STROKE 3367db96d56Sopenharmony_ci '\xa3' # 0x009c -> POUND SIGN 3377db96d56Sopenharmony_ci '\xd8' # 0x009d -> LATIN CAPITAL LETTER O WITH STROKE 3387db96d56Sopenharmony_ci '\xd7' # 0x009e -> MULTIPLICATION SIGN 3397db96d56Sopenharmony_ci '\xa4' # 0x009f -> CURRENCY SIGN 3407db96d56Sopenharmony_ci '\u0100' # 0x00a0 -> LATIN CAPITAL LETTER A WITH MACRON 3417db96d56Sopenharmony_ci '\u012a' # 0x00a1 -> LATIN CAPITAL LETTER I WITH MACRON 3427db96d56Sopenharmony_ci '\xf3' # 0x00a2 -> LATIN SMALL LETTER O WITH ACUTE 3437db96d56Sopenharmony_ci '\u017b' # 0x00a3 -> LATIN CAPITAL LETTER Z WITH DOT ABOVE 3447db96d56Sopenharmony_ci '\u017c' # 0x00a4 -> LATIN SMALL LETTER Z WITH DOT ABOVE 3457db96d56Sopenharmony_ci '\u017a' # 0x00a5 -> LATIN SMALL LETTER Z WITH ACUTE 3467db96d56Sopenharmony_ci '\u201d' # 0x00a6 -> RIGHT DOUBLE QUOTATION MARK 3477db96d56Sopenharmony_ci '\xa6' # 0x00a7 -> BROKEN BAR 3487db96d56Sopenharmony_ci '\xa9' # 0x00a8 -> COPYRIGHT SIGN 3497db96d56Sopenharmony_ci '\xae' # 0x00a9 -> REGISTERED SIGN 3507db96d56Sopenharmony_ci '\xac' # 0x00aa -> NOT SIGN 3517db96d56Sopenharmony_ci '\xbd' # 0x00ab -> VULGAR FRACTION ONE HALF 3527db96d56Sopenharmony_ci '\xbc' # 0x00ac -> VULGAR FRACTION ONE QUARTER 3537db96d56Sopenharmony_ci '\u0141' # 0x00ad -> LATIN CAPITAL LETTER L WITH STROKE 3547db96d56Sopenharmony_ci '\xab' # 0x00ae -> LEFT-POINTING DOUBLE ANGLE QUOTATION MARK 3557db96d56Sopenharmony_ci '\xbb' # 0x00af -> RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK 3567db96d56Sopenharmony_ci '\u2591' # 0x00b0 -> LIGHT SHADE 3577db96d56Sopenharmony_ci '\u2592' # 0x00b1 -> MEDIUM SHADE 3587db96d56Sopenharmony_ci '\u2593' # 0x00b2 -> DARK SHADE 3597db96d56Sopenharmony_ci '\u2502' # 0x00b3 -> BOX DRAWINGS LIGHT VERTICAL 3607db96d56Sopenharmony_ci '\u2524' # 0x00b4 -> BOX DRAWINGS LIGHT VERTICAL AND LEFT 3617db96d56Sopenharmony_ci '\u0104' # 0x00b5 -> LATIN CAPITAL LETTER A WITH OGONEK 3627db96d56Sopenharmony_ci '\u010c' # 0x00b6 -> LATIN CAPITAL LETTER C WITH CARON 3637db96d56Sopenharmony_ci '\u0118' # 0x00b7 -> LATIN CAPITAL LETTER E WITH OGONEK 3647db96d56Sopenharmony_ci '\u0116' # 0x00b8 -> LATIN CAPITAL LETTER E WITH DOT ABOVE 3657db96d56Sopenharmony_ci '\u2563' # 0x00b9 -> BOX DRAWINGS DOUBLE VERTICAL AND LEFT 3667db96d56Sopenharmony_ci '\u2551' # 0x00ba -> BOX DRAWINGS DOUBLE VERTICAL 3677db96d56Sopenharmony_ci '\u2557' # 0x00bb -> BOX DRAWINGS DOUBLE DOWN AND LEFT 3687db96d56Sopenharmony_ci '\u255d' # 0x00bc -> BOX DRAWINGS DOUBLE UP AND LEFT 3697db96d56Sopenharmony_ci '\u012e' # 0x00bd -> LATIN CAPITAL LETTER I WITH OGONEK 3707db96d56Sopenharmony_ci '\u0160' # 0x00be -> LATIN CAPITAL LETTER S WITH CARON 3717db96d56Sopenharmony_ci '\u2510' # 0x00bf -> BOX DRAWINGS LIGHT DOWN AND LEFT 3727db96d56Sopenharmony_ci '\u2514' # 0x00c0 -> BOX DRAWINGS LIGHT UP AND RIGHT 3737db96d56Sopenharmony_ci '\u2534' # 0x00c1 -> BOX DRAWINGS LIGHT UP AND HORIZONTAL 3747db96d56Sopenharmony_ci '\u252c' # 0x00c2 -> BOX DRAWINGS LIGHT DOWN AND HORIZONTAL 3757db96d56Sopenharmony_ci '\u251c' # 0x00c3 -> BOX DRAWINGS LIGHT VERTICAL AND RIGHT 3767db96d56Sopenharmony_ci '\u2500' # 0x00c4 -> BOX DRAWINGS LIGHT HORIZONTAL 3777db96d56Sopenharmony_ci '\u253c' # 0x00c5 -> BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL 3787db96d56Sopenharmony_ci '\u0172' # 0x00c6 -> LATIN CAPITAL LETTER U WITH OGONEK 3797db96d56Sopenharmony_ci '\u016a' # 0x00c7 -> LATIN CAPITAL LETTER U WITH MACRON 3807db96d56Sopenharmony_ci '\u255a' # 0x00c8 -> BOX DRAWINGS DOUBLE UP AND RIGHT 3817db96d56Sopenharmony_ci '\u2554' # 0x00c9 -> BOX DRAWINGS DOUBLE DOWN AND RIGHT 3827db96d56Sopenharmony_ci '\u2569' # 0x00ca -> BOX DRAWINGS DOUBLE UP AND HORIZONTAL 3837db96d56Sopenharmony_ci '\u2566' # 0x00cb -> BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL 3847db96d56Sopenharmony_ci '\u2560' # 0x00cc -> BOX DRAWINGS DOUBLE VERTICAL AND RIGHT 3857db96d56Sopenharmony_ci '\u2550' # 0x00cd -> BOX DRAWINGS DOUBLE HORIZONTAL 3867db96d56Sopenharmony_ci '\u256c' # 0x00ce -> BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL 3877db96d56Sopenharmony_ci '\u017d' # 0x00cf -> LATIN CAPITAL LETTER Z WITH CARON 3887db96d56Sopenharmony_ci '\u0105' # 0x00d0 -> LATIN SMALL LETTER A WITH OGONEK 3897db96d56Sopenharmony_ci '\u010d' # 0x00d1 -> LATIN SMALL LETTER C WITH CARON 3907db96d56Sopenharmony_ci '\u0119' # 0x00d2 -> LATIN SMALL LETTER E WITH OGONEK 3917db96d56Sopenharmony_ci '\u0117' # 0x00d3 -> LATIN SMALL LETTER E WITH DOT ABOVE 3927db96d56Sopenharmony_ci '\u012f' # 0x00d4 -> LATIN SMALL LETTER I WITH OGONEK 3937db96d56Sopenharmony_ci '\u0161' # 0x00d5 -> LATIN SMALL LETTER S WITH CARON 3947db96d56Sopenharmony_ci '\u0173' # 0x00d6 -> LATIN SMALL LETTER U WITH OGONEK 3957db96d56Sopenharmony_ci '\u016b' # 0x00d7 -> LATIN SMALL LETTER U WITH MACRON 3967db96d56Sopenharmony_ci '\u017e' # 0x00d8 -> LATIN SMALL LETTER Z WITH CARON 3977db96d56Sopenharmony_ci '\u2518' # 0x00d9 -> BOX DRAWINGS LIGHT UP AND LEFT 3987db96d56Sopenharmony_ci '\u250c' # 0x00da -> BOX DRAWINGS LIGHT DOWN AND RIGHT 3997db96d56Sopenharmony_ci '\u2588' # 0x00db -> FULL BLOCK 4007db96d56Sopenharmony_ci '\u2584' # 0x00dc -> LOWER HALF BLOCK 4017db96d56Sopenharmony_ci '\u258c' # 0x00dd -> LEFT HALF BLOCK 4027db96d56Sopenharmony_ci '\u2590' # 0x00de -> RIGHT HALF BLOCK 4037db96d56Sopenharmony_ci '\u2580' # 0x00df -> UPPER HALF BLOCK 4047db96d56Sopenharmony_ci '\xd3' # 0x00e0 -> LATIN CAPITAL LETTER O WITH ACUTE 4057db96d56Sopenharmony_ci '\xdf' # 0x00e1 -> LATIN SMALL LETTER SHARP S (GERMAN) 4067db96d56Sopenharmony_ci '\u014c' # 0x00e2 -> LATIN CAPITAL LETTER O WITH MACRON 4077db96d56Sopenharmony_ci '\u0143' # 0x00e3 -> LATIN CAPITAL LETTER N WITH ACUTE 4087db96d56Sopenharmony_ci '\xf5' # 0x00e4 -> LATIN SMALL LETTER O WITH TILDE 4097db96d56Sopenharmony_ci '\xd5' # 0x00e5 -> LATIN CAPITAL LETTER O WITH TILDE 4107db96d56Sopenharmony_ci '\xb5' # 0x00e6 -> MICRO SIGN 4117db96d56Sopenharmony_ci '\u0144' # 0x00e7 -> LATIN SMALL LETTER N WITH ACUTE 4127db96d56Sopenharmony_ci '\u0136' # 0x00e8 -> LATIN CAPITAL LETTER K WITH CEDILLA 4137db96d56Sopenharmony_ci '\u0137' # 0x00e9 -> LATIN SMALL LETTER K WITH CEDILLA 4147db96d56Sopenharmony_ci '\u013b' # 0x00ea -> LATIN CAPITAL LETTER L WITH CEDILLA 4157db96d56Sopenharmony_ci '\u013c' # 0x00eb -> LATIN SMALL LETTER L WITH CEDILLA 4167db96d56Sopenharmony_ci '\u0146' # 0x00ec -> LATIN SMALL LETTER N WITH CEDILLA 4177db96d56Sopenharmony_ci '\u0112' # 0x00ed -> LATIN CAPITAL LETTER E WITH MACRON 4187db96d56Sopenharmony_ci '\u0145' # 0x00ee -> LATIN CAPITAL LETTER N WITH CEDILLA 4197db96d56Sopenharmony_ci '\u2019' # 0x00ef -> RIGHT SINGLE QUOTATION MARK 4207db96d56Sopenharmony_ci '\xad' # 0x00f0 -> SOFT HYPHEN 4217db96d56Sopenharmony_ci '\xb1' # 0x00f1 -> PLUS-MINUS SIGN 4227db96d56Sopenharmony_ci '\u201c' # 0x00f2 -> LEFT DOUBLE QUOTATION MARK 4237db96d56Sopenharmony_ci '\xbe' # 0x00f3 -> VULGAR FRACTION THREE QUARTERS 4247db96d56Sopenharmony_ci '\xb6' # 0x00f4 -> PILCROW SIGN 4257db96d56Sopenharmony_ci '\xa7' # 0x00f5 -> SECTION SIGN 4267db96d56Sopenharmony_ci '\xf7' # 0x00f6 -> DIVISION SIGN 4277db96d56Sopenharmony_ci '\u201e' # 0x00f7 -> DOUBLE LOW-9 QUOTATION MARK 4287db96d56Sopenharmony_ci '\xb0' # 0x00f8 -> DEGREE SIGN 4297db96d56Sopenharmony_ci '\u2219' # 0x00f9 -> BULLET OPERATOR 4307db96d56Sopenharmony_ci '\xb7' # 0x00fa -> MIDDLE DOT 4317db96d56Sopenharmony_ci '\xb9' # 0x00fb -> SUPERSCRIPT ONE 4327db96d56Sopenharmony_ci '\xb3' # 0x00fc -> SUPERSCRIPT THREE 4337db96d56Sopenharmony_ci '\xb2' # 0x00fd -> SUPERSCRIPT TWO 4347db96d56Sopenharmony_ci '\u25a0' # 0x00fe -> BLACK SQUARE 4357db96d56Sopenharmony_ci '\xa0' # 0x00ff -> NO-BREAK SPACE 4367db96d56Sopenharmony_ci) 4377db96d56Sopenharmony_ci 4387db96d56Sopenharmony_ci### Encoding Map 4397db96d56Sopenharmony_ci 4407db96d56Sopenharmony_ciencoding_map = { 4417db96d56Sopenharmony_ci 0x0000: 0x0000, # NULL 4427db96d56Sopenharmony_ci 0x0001: 0x0001, # START OF HEADING 4437db96d56Sopenharmony_ci 0x0002: 0x0002, # START OF TEXT 4447db96d56Sopenharmony_ci 0x0003: 0x0003, # END OF TEXT 4457db96d56Sopenharmony_ci 0x0004: 0x0004, # END OF TRANSMISSION 4467db96d56Sopenharmony_ci 0x0005: 0x0005, # ENQUIRY 4477db96d56Sopenharmony_ci 0x0006: 0x0006, # ACKNOWLEDGE 4487db96d56Sopenharmony_ci 0x0007: 0x0007, # BELL 4497db96d56Sopenharmony_ci 0x0008: 0x0008, # BACKSPACE 4507db96d56Sopenharmony_ci 0x0009: 0x0009, # HORIZONTAL TABULATION 4517db96d56Sopenharmony_ci 0x000a: 0x000a, # LINE FEED 4527db96d56Sopenharmony_ci 0x000b: 0x000b, # VERTICAL TABULATION 4537db96d56Sopenharmony_ci 0x000c: 0x000c, # FORM FEED 4547db96d56Sopenharmony_ci 0x000d: 0x000d, # CARRIAGE RETURN 4557db96d56Sopenharmony_ci 0x000e: 0x000e, # SHIFT OUT 4567db96d56Sopenharmony_ci 0x000f: 0x000f, # SHIFT IN 4577db96d56Sopenharmony_ci 0x0010: 0x0010, # DATA LINK ESCAPE 4587db96d56Sopenharmony_ci 0x0011: 0x0011, # DEVICE CONTROL ONE 4597db96d56Sopenharmony_ci 0x0012: 0x0012, # DEVICE CONTROL TWO 4607db96d56Sopenharmony_ci 0x0013: 0x0013, # DEVICE CONTROL THREE 4617db96d56Sopenharmony_ci 0x0014: 0x0014, # DEVICE CONTROL FOUR 4627db96d56Sopenharmony_ci 0x0015: 0x0015, # NEGATIVE ACKNOWLEDGE 4637db96d56Sopenharmony_ci 0x0016: 0x0016, # SYNCHRONOUS IDLE 4647db96d56Sopenharmony_ci 0x0017: 0x0017, # END OF TRANSMISSION BLOCK 4657db96d56Sopenharmony_ci 0x0018: 0x0018, # CANCEL 4667db96d56Sopenharmony_ci 0x0019: 0x0019, # END OF MEDIUM 4677db96d56Sopenharmony_ci 0x001a: 0x001a, # SUBSTITUTE 4687db96d56Sopenharmony_ci 0x001b: 0x001b, # ESCAPE 4697db96d56Sopenharmony_ci 0x001c: 0x001c, # FILE SEPARATOR 4707db96d56Sopenharmony_ci 0x001d: 0x001d, # GROUP SEPARATOR 4717db96d56Sopenharmony_ci 0x001e: 0x001e, # RECORD SEPARATOR 4727db96d56Sopenharmony_ci 0x001f: 0x001f, # UNIT SEPARATOR 4737db96d56Sopenharmony_ci 0x0020: 0x0020, # SPACE 4747db96d56Sopenharmony_ci 0x0021: 0x0021, # EXCLAMATION MARK 4757db96d56Sopenharmony_ci 0x0022: 0x0022, # QUOTATION MARK 4767db96d56Sopenharmony_ci 0x0023: 0x0023, # NUMBER SIGN 4777db96d56Sopenharmony_ci 0x0024: 0x0024, # DOLLAR SIGN 4787db96d56Sopenharmony_ci 0x0025: 0x0025, # PERCENT SIGN 4797db96d56Sopenharmony_ci 0x0026: 0x0026, # AMPERSAND 4807db96d56Sopenharmony_ci 0x0027: 0x0027, # APOSTROPHE 4817db96d56Sopenharmony_ci 0x0028: 0x0028, # LEFT PARENTHESIS 4827db96d56Sopenharmony_ci 0x0029: 0x0029, # RIGHT PARENTHESIS 4837db96d56Sopenharmony_ci 0x002a: 0x002a, # ASTERISK 4847db96d56Sopenharmony_ci 0x002b: 0x002b, # PLUS SIGN 4857db96d56Sopenharmony_ci 0x002c: 0x002c, # COMMA 4867db96d56Sopenharmony_ci 0x002d: 0x002d, # HYPHEN-MINUS 4877db96d56Sopenharmony_ci 0x002e: 0x002e, # FULL STOP 4887db96d56Sopenharmony_ci 0x002f: 0x002f, # SOLIDUS 4897db96d56Sopenharmony_ci 0x0030: 0x0030, # DIGIT ZERO 4907db96d56Sopenharmony_ci 0x0031: 0x0031, # DIGIT ONE 4917db96d56Sopenharmony_ci 0x0032: 0x0032, # DIGIT TWO 4927db96d56Sopenharmony_ci 0x0033: 0x0033, # DIGIT THREE 4937db96d56Sopenharmony_ci 0x0034: 0x0034, # DIGIT FOUR 4947db96d56Sopenharmony_ci 0x0035: 0x0035, # DIGIT FIVE 4957db96d56Sopenharmony_ci 0x0036: 0x0036, # DIGIT SIX 4967db96d56Sopenharmony_ci 0x0037: 0x0037, # DIGIT SEVEN 4977db96d56Sopenharmony_ci 0x0038: 0x0038, # DIGIT EIGHT 4987db96d56Sopenharmony_ci 0x0039: 0x0039, # DIGIT NINE 4997db96d56Sopenharmony_ci 0x003a: 0x003a, # COLON 5007db96d56Sopenharmony_ci 0x003b: 0x003b, # SEMICOLON 5017db96d56Sopenharmony_ci 0x003c: 0x003c, # LESS-THAN SIGN 5027db96d56Sopenharmony_ci 0x003d: 0x003d, # EQUALS SIGN 5037db96d56Sopenharmony_ci 0x003e: 0x003e, # GREATER-THAN SIGN 5047db96d56Sopenharmony_ci 0x003f: 0x003f, # QUESTION MARK 5057db96d56Sopenharmony_ci 0x0040: 0x0040, # COMMERCIAL AT 5067db96d56Sopenharmony_ci 0x0041: 0x0041, # LATIN CAPITAL LETTER A 5077db96d56Sopenharmony_ci 0x0042: 0x0042, # LATIN CAPITAL LETTER B 5087db96d56Sopenharmony_ci 0x0043: 0x0043, # LATIN CAPITAL LETTER C 5097db96d56Sopenharmony_ci 0x0044: 0x0044, # LATIN CAPITAL LETTER D 5107db96d56Sopenharmony_ci 0x0045: 0x0045, # LATIN CAPITAL LETTER E 5117db96d56Sopenharmony_ci 0x0046: 0x0046, # LATIN CAPITAL LETTER F 5127db96d56Sopenharmony_ci 0x0047: 0x0047, # LATIN CAPITAL LETTER G 5137db96d56Sopenharmony_ci 0x0048: 0x0048, # LATIN CAPITAL LETTER H 5147db96d56Sopenharmony_ci 0x0049: 0x0049, # LATIN CAPITAL LETTER I 5157db96d56Sopenharmony_ci 0x004a: 0x004a, # LATIN CAPITAL LETTER J 5167db96d56Sopenharmony_ci 0x004b: 0x004b, # LATIN CAPITAL LETTER K 5177db96d56Sopenharmony_ci 0x004c: 0x004c, # LATIN CAPITAL LETTER L 5187db96d56Sopenharmony_ci 0x004d: 0x004d, # LATIN CAPITAL LETTER M 5197db96d56Sopenharmony_ci 0x004e: 0x004e, # LATIN CAPITAL LETTER N 5207db96d56Sopenharmony_ci 0x004f: 0x004f, # LATIN CAPITAL LETTER O 5217db96d56Sopenharmony_ci 0x0050: 0x0050, # LATIN CAPITAL LETTER P 5227db96d56Sopenharmony_ci 0x0051: 0x0051, # LATIN CAPITAL LETTER Q 5237db96d56Sopenharmony_ci 0x0052: 0x0052, # LATIN CAPITAL LETTER R 5247db96d56Sopenharmony_ci 0x0053: 0x0053, # LATIN CAPITAL LETTER S 5257db96d56Sopenharmony_ci 0x0054: 0x0054, # LATIN CAPITAL LETTER T 5267db96d56Sopenharmony_ci 0x0055: 0x0055, # LATIN CAPITAL LETTER U 5277db96d56Sopenharmony_ci 0x0056: 0x0056, # LATIN CAPITAL LETTER V 5287db96d56Sopenharmony_ci 0x0057: 0x0057, # LATIN CAPITAL LETTER W 5297db96d56Sopenharmony_ci 0x0058: 0x0058, # LATIN CAPITAL LETTER X 5307db96d56Sopenharmony_ci 0x0059: 0x0059, # LATIN CAPITAL LETTER Y 5317db96d56Sopenharmony_ci 0x005a: 0x005a, # LATIN CAPITAL LETTER Z 5327db96d56Sopenharmony_ci 0x005b: 0x005b, # LEFT SQUARE BRACKET 5337db96d56Sopenharmony_ci 0x005c: 0x005c, # REVERSE SOLIDUS 5347db96d56Sopenharmony_ci 0x005d: 0x005d, # RIGHT SQUARE BRACKET 5357db96d56Sopenharmony_ci 0x005e: 0x005e, # CIRCUMFLEX ACCENT 5367db96d56Sopenharmony_ci 0x005f: 0x005f, # LOW LINE 5377db96d56Sopenharmony_ci 0x0060: 0x0060, # GRAVE ACCENT 5387db96d56Sopenharmony_ci 0x0061: 0x0061, # LATIN SMALL LETTER A 5397db96d56Sopenharmony_ci 0x0062: 0x0062, # LATIN SMALL LETTER B 5407db96d56Sopenharmony_ci 0x0063: 0x0063, # LATIN SMALL LETTER C 5417db96d56Sopenharmony_ci 0x0064: 0x0064, # LATIN SMALL LETTER D 5427db96d56Sopenharmony_ci 0x0065: 0x0065, # LATIN SMALL LETTER E 5437db96d56Sopenharmony_ci 0x0066: 0x0066, # LATIN SMALL LETTER F 5447db96d56Sopenharmony_ci 0x0067: 0x0067, # LATIN SMALL LETTER G 5457db96d56Sopenharmony_ci 0x0068: 0x0068, # LATIN SMALL LETTER H 5467db96d56Sopenharmony_ci 0x0069: 0x0069, # LATIN SMALL LETTER I 5477db96d56Sopenharmony_ci 0x006a: 0x006a, # LATIN SMALL LETTER J 5487db96d56Sopenharmony_ci 0x006b: 0x006b, # LATIN SMALL LETTER K 5497db96d56Sopenharmony_ci 0x006c: 0x006c, # LATIN SMALL LETTER L 5507db96d56Sopenharmony_ci 0x006d: 0x006d, # LATIN SMALL LETTER M 5517db96d56Sopenharmony_ci 0x006e: 0x006e, # LATIN SMALL LETTER N 5527db96d56Sopenharmony_ci 0x006f: 0x006f, # LATIN SMALL LETTER O 5537db96d56Sopenharmony_ci 0x0070: 0x0070, # LATIN SMALL LETTER P 5547db96d56Sopenharmony_ci 0x0071: 0x0071, # LATIN SMALL LETTER Q 5557db96d56Sopenharmony_ci 0x0072: 0x0072, # LATIN SMALL LETTER R 5567db96d56Sopenharmony_ci 0x0073: 0x0073, # LATIN SMALL LETTER S 5577db96d56Sopenharmony_ci 0x0074: 0x0074, # LATIN SMALL LETTER T 5587db96d56Sopenharmony_ci 0x0075: 0x0075, # LATIN SMALL LETTER U 5597db96d56Sopenharmony_ci 0x0076: 0x0076, # LATIN SMALL LETTER V 5607db96d56Sopenharmony_ci 0x0077: 0x0077, # LATIN SMALL LETTER W 5617db96d56Sopenharmony_ci 0x0078: 0x0078, # LATIN SMALL LETTER X 5627db96d56Sopenharmony_ci 0x0079: 0x0079, # LATIN SMALL LETTER Y 5637db96d56Sopenharmony_ci 0x007a: 0x007a, # LATIN SMALL LETTER Z 5647db96d56Sopenharmony_ci 0x007b: 0x007b, # LEFT CURLY BRACKET 5657db96d56Sopenharmony_ci 0x007c: 0x007c, # VERTICAL LINE 5667db96d56Sopenharmony_ci 0x007d: 0x007d, # RIGHT CURLY BRACKET 5677db96d56Sopenharmony_ci 0x007e: 0x007e, # TILDE 5687db96d56Sopenharmony_ci 0x007f: 0x007f, # DELETE 5697db96d56Sopenharmony_ci 0x00a0: 0x00ff, # NO-BREAK SPACE 5707db96d56Sopenharmony_ci 0x00a2: 0x0096, # CENT SIGN 5717db96d56Sopenharmony_ci 0x00a3: 0x009c, # POUND SIGN 5727db96d56Sopenharmony_ci 0x00a4: 0x009f, # CURRENCY SIGN 5737db96d56Sopenharmony_ci 0x00a6: 0x00a7, # BROKEN BAR 5747db96d56Sopenharmony_ci 0x00a7: 0x00f5, # SECTION SIGN 5757db96d56Sopenharmony_ci 0x00a9: 0x00a8, # COPYRIGHT SIGN 5767db96d56Sopenharmony_ci 0x00ab: 0x00ae, # LEFT-POINTING DOUBLE ANGLE QUOTATION MARK 5777db96d56Sopenharmony_ci 0x00ac: 0x00aa, # NOT SIGN 5787db96d56Sopenharmony_ci 0x00ad: 0x00f0, # SOFT HYPHEN 5797db96d56Sopenharmony_ci 0x00ae: 0x00a9, # REGISTERED SIGN 5807db96d56Sopenharmony_ci 0x00b0: 0x00f8, # DEGREE SIGN 5817db96d56Sopenharmony_ci 0x00b1: 0x00f1, # PLUS-MINUS SIGN 5827db96d56Sopenharmony_ci 0x00b2: 0x00fd, # SUPERSCRIPT TWO 5837db96d56Sopenharmony_ci 0x00b3: 0x00fc, # SUPERSCRIPT THREE 5847db96d56Sopenharmony_ci 0x00b5: 0x00e6, # MICRO SIGN 5857db96d56Sopenharmony_ci 0x00b6: 0x00f4, # PILCROW SIGN 5867db96d56Sopenharmony_ci 0x00b7: 0x00fa, # MIDDLE DOT 5877db96d56Sopenharmony_ci 0x00b9: 0x00fb, # SUPERSCRIPT ONE 5887db96d56Sopenharmony_ci 0x00bb: 0x00af, # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK 5897db96d56Sopenharmony_ci 0x00bc: 0x00ac, # VULGAR FRACTION ONE QUARTER 5907db96d56Sopenharmony_ci 0x00bd: 0x00ab, # VULGAR FRACTION ONE HALF 5917db96d56Sopenharmony_ci 0x00be: 0x00f3, # VULGAR FRACTION THREE QUARTERS 5927db96d56Sopenharmony_ci 0x00c4: 0x008e, # LATIN CAPITAL LETTER A WITH DIAERESIS 5937db96d56Sopenharmony_ci 0x00c5: 0x008f, # LATIN CAPITAL LETTER A WITH RING ABOVE 5947db96d56Sopenharmony_ci 0x00c6: 0x0092, # LATIN CAPITAL LIGATURE AE 5957db96d56Sopenharmony_ci 0x00c9: 0x0090, # LATIN CAPITAL LETTER E WITH ACUTE 5967db96d56Sopenharmony_ci 0x00d3: 0x00e0, # LATIN CAPITAL LETTER O WITH ACUTE 5977db96d56Sopenharmony_ci 0x00d5: 0x00e5, # LATIN CAPITAL LETTER O WITH TILDE 5987db96d56Sopenharmony_ci 0x00d6: 0x0099, # LATIN CAPITAL LETTER O WITH DIAERESIS 5997db96d56Sopenharmony_ci 0x00d7: 0x009e, # MULTIPLICATION SIGN 6007db96d56Sopenharmony_ci 0x00d8: 0x009d, # LATIN CAPITAL LETTER O WITH STROKE 6017db96d56Sopenharmony_ci 0x00dc: 0x009a, # LATIN CAPITAL LETTER U WITH DIAERESIS 6027db96d56Sopenharmony_ci 0x00df: 0x00e1, # LATIN SMALL LETTER SHARP S (GERMAN) 6037db96d56Sopenharmony_ci 0x00e4: 0x0084, # LATIN SMALL LETTER A WITH DIAERESIS 6047db96d56Sopenharmony_ci 0x00e5: 0x0086, # LATIN SMALL LETTER A WITH RING ABOVE 6057db96d56Sopenharmony_ci 0x00e6: 0x0091, # LATIN SMALL LIGATURE AE 6067db96d56Sopenharmony_ci 0x00e9: 0x0082, # LATIN SMALL LETTER E WITH ACUTE 6077db96d56Sopenharmony_ci 0x00f3: 0x00a2, # LATIN SMALL LETTER O WITH ACUTE 6087db96d56Sopenharmony_ci 0x00f5: 0x00e4, # LATIN SMALL LETTER O WITH TILDE 6097db96d56Sopenharmony_ci 0x00f6: 0x0094, # LATIN SMALL LETTER O WITH DIAERESIS 6107db96d56Sopenharmony_ci 0x00f7: 0x00f6, # DIVISION SIGN 6117db96d56Sopenharmony_ci 0x00f8: 0x009b, # LATIN SMALL LETTER O WITH STROKE 6127db96d56Sopenharmony_ci 0x00fc: 0x0081, # LATIN SMALL LETTER U WITH DIAERESIS 6137db96d56Sopenharmony_ci 0x0100: 0x00a0, # LATIN CAPITAL LETTER A WITH MACRON 6147db96d56Sopenharmony_ci 0x0101: 0x0083, # LATIN SMALL LETTER A WITH MACRON 6157db96d56Sopenharmony_ci 0x0104: 0x00b5, # LATIN CAPITAL LETTER A WITH OGONEK 6167db96d56Sopenharmony_ci 0x0105: 0x00d0, # LATIN SMALL LETTER A WITH OGONEK 6177db96d56Sopenharmony_ci 0x0106: 0x0080, # LATIN CAPITAL LETTER C WITH ACUTE 6187db96d56Sopenharmony_ci 0x0107: 0x0087, # LATIN SMALL LETTER C WITH ACUTE 6197db96d56Sopenharmony_ci 0x010c: 0x00b6, # LATIN CAPITAL LETTER C WITH CARON 6207db96d56Sopenharmony_ci 0x010d: 0x00d1, # LATIN SMALL LETTER C WITH CARON 6217db96d56Sopenharmony_ci 0x0112: 0x00ed, # LATIN CAPITAL LETTER E WITH MACRON 6227db96d56Sopenharmony_ci 0x0113: 0x0089, # LATIN SMALL LETTER E WITH MACRON 6237db96d56Sopenharmony_ci 0x0116: 0x00b8, # LATIN CAPITAL LETTER E WITH DOT ABOVE 6247db96d56Sopenharmony_ci 0x0117: 0x00d3, # LATIN SMALL LETTER E WITH DOT ABOVE 6257db96d56Sopenharmony_ci 0x0118: 0x00b7, # LATIN CAPITAL LETTER E WITH OGONEK 6267db96d56Sopenharmony_ci 0x0119: 0x00d2, # LATIN SMALL LETTER E WITH OGONEK 6277db96d56Sopenharmony_ci 0x0122: 0x0095, # LATIN CAPITAL LETTER G WITH CEDILLA 6287db96d56Sopenharmony_ci 0x0123: 0x0085, # LATIN SMALL LETTER G WITH CEDILLA 6297db96d56Sopenharmony_ci 0x012a: 0x00a1, # LATIN CAPITAL LETTER I WITH MACRON 6307db96d56Sopenharmony_ci 0x012b: 0x008c, # LATIN SMALL LETTER I WITH MACRON 6317db96d56Sopenharmony_ci 0x012e: 0x00bd, # LATIN CAPITAL LETTER I WITH OGONEK 6327db96d56Sopenharmony_ci 0x012f: 0x00d4, # LATIN SMALL LETTER I WITH OGONEK 6337db96d56Sopenharmony_ci 0x0136: 0x00e8, # LATIN CAPITAL LETTER K WITH CEDILLA 6347db96d56Sopenharmony_ci 0x0137: 0x00e9, # LATIN SMALL LETTER K WITH CEDILLA 6357db96d56Sopenharmony_ci 0x013b: 0x00ea, # LATIN CAPITAL LETTER L WITH CEDILLA 6367db96d56Sopenharmony_ci 0x013c: 0x00eb, # LATIN SMALL LETTER L WITH CEDILLA 6377db96d56Sopenharmony_ci 0x0141: 0x00ad, # LATIN CAPITAL LETTER L WITH STROKE 6387db96d56Sopenharmony_ci 0x0142: 0x0088, # LATIN SMALL LETTER L WITH STROKE 6397db96d56Sopenharmony_ci 0x0143: 0x00e3, # LATIN CAPITAL LETTER N WITH ACUTE 6407db96d56Sopenharmony_ci 0x0144: 0x00e7, # LATIN SMALL LETTER N WITH ACUTE 6417db96d56Sopenharmony_ci 0x0145: 0x00ee, # LATIN CAPITAL LETTER N WITH CEDILLA 6427db96d56Sopenharmony_ci 0x0146: 0x00ec, # LATIN SMALL LETTER N WITH CEDILLA 6437db96d56Sopenharmony_ci 0x014c: 0x00e2, # LATIN CAPITAL LETTER O WITH MACRON 6447db96d56Sopenharmony_ci 0x014d: 0x0093, # LATIN SMALL LETTER O WITH MACRON 6457db96d56Sopenharmony_ci 0x0156: 0x008a, # LATIN CAPITAL LETTER R WITH CEDILLA 6467db96d56Sopenharmony_ci 0x0157: 0x008b, # LATIN SMALL LETTER R WITH CEDILLA 6477db96d56Sopenharmony_ci 0x015a: 0x0097, # LATIN CAPITAL LETTER S WITH ACUTE 6487db96d56Sopenharmony_ci 0x015b: 0x0098, # LATIN SMALL LETTER S WITH ACUTE 6497db96d56Sopenharmony_ci 0x0160: 0x00be, # LATIN CAPITAL LETTER S WITH CARON 6507db96d56Sopenharmony_ci 0x0161: 0x00d5, # LATIN SMALL LETTER S WITH CARON 6517db96d56Sopenharmony_ci 0x016a: 0x00c7, # LATIN CAPITAL LETTER U WITH MACRON 6527db96d56Sopenharmony_ci 0x016b: 0x00d7, # LATIN SMALL LETTER U WITH MACRON 6537db96d56Sopenharmony_ci 0x0172: 0x00c6, # LATIN CAPITAL LETTER U WITH OGONEK 6547db96d56Sopenharmony_ci 0x0173: 0x00d6, # LATIN SMALL LETTER U WITH OGONEK 6557db96d56Sopenharmony_ci 0x0179: 0x008d, # LATIN CAPITAL LETTER Z WITH ACUTE 6567db96d56Sopenharmony_ci 0x017a: 0x00a5, # LATIN SMALL LETTER Z WITH ACUTE 6577db96d56Sopenharmony_ci 0x017b: 0x00a3, # LATIN CAPITAL LETTER Z WITH DOT ABOVE 6587db96d56Sopenharmony_ci 0x017c: 0x00a4, # LATIN SMALL LETTER Z WITH DOT ABOVE 6597db96d56Sopenharmony_ci 0x017d: 0x00cf, # LATIN CAPITAL LETTER Z WITH CARON 6607db96d56Sopenharmony_ci 0x017e: 0x00d8, # LATIN SMALL LETTER Z WITH CARON 6617db96d56Sopenharmony_ci 0x2019: 0x00ef, # RIGHT SINGLE QUOTATION MARK 6627db96d56Sopenharmony_ci 0x201c: 0x00f2, # LEFT DOUBLE QUOTATION MARK 6637db96d56Sopenharmony_ci 0x201d: 0x00a6, # RIGHT DOUBLE QUOTATION MARK 6647db96d56Sopenharmony_ci 0x201e: 0x00f7, # DOUBLE LOW-9 QUOTATION MARK 6657db96d56Sopenharmony_ci 0x2219: 0x00f9, # BULLET OPERATOR 6667db96d56Sopenharmony_ci 0x2500: 0x00c4, # BOX DRAWINGS LIGHT HORIZONTAL 6677db96d56Sopenharmony_ci 0x2502: 0x00b3, # BOX DRAWINGS LIGHT VERTICAL 6687db96d56Sopenharmony_ci 0x250c: 0x00da, # BOX DRAWINGS LIGHT DOWN AND RIGHT 6697db96d56Sopenharmony_ci 0x2510: 0x00bf, # BOX DRAWINGS LIGHT DOWN AND LEFT 6707db96d56Sopenharmony_ci 0x2514: 0x00c0, # BOX DRAWINGS LIGHT UP AND RIGHT 6717db96d56Sopenharmony_ci 0x2518: 0x00d9, # BOX DRAWINGS LIGHT UP AND LEFT 6727db96d56Sopenharmony_ci 0x251c: 0x00c3, # BOX DRAWINGS LIGHT VERTICAL AND RIGHT 6737db96d56Sopenharmony_ci 0x2524: 0x00b4, # BOX DRAWINGS LIGHT VERTICAL AND LEFT 6747db96d56Sopenharmony_ci 0x252c: 0x00c2, # BOX DRAWINGS LIGHT DOWN AND HORIZONTAL 6757db96d56Sopenharmony_ci 0x2534: 0x00c1, # BOX DRAWINGS LIGHT UP AND HORIZONTAL 6767db96d56Sopenharmony_ci 0x253c: 0x00c5, # BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL 6777db96d56Sopenharmony_ci 0x2550: 0x00cd, # BOX DRAWINGS DOUBLE HORIZONTAL 6787db96d56Sopenharmony_ci 0x2551: 0x00ba, # BOX DRAWINGS DOUBLE VERTICAL 6797db96d56Sopenharmony_ci 0x2554: 0x00c9, # BOX DRAWINGS DOUBLE DOWN AND RIGHT 6807db96d56Sopenharmony_ci 0x2557: 0x00bb, # BOX DRAWINGS DOUBLE DOWN AND LEFT 6817db96d56Sopenharmony_ci 0x255a: 0x00c8, # BOX DRAWINGS DOUBLE UP AND RIGHT 6827db96d56Sopenharmony_ci 0x255d: 0x00bc, # BOX DRAWINGS DOUBLE UP AND LEFT 6837db96d56Sopenharmony_ci 0x2560: 0x00cc, # BOX DRAWINGS DOUBLE VERTICAL AND RIGHT 6847db96d56Sopenharmony_ci 0x2563: 0x00b9, # BOX DRAWINGS DOUBLE VERTICAL AND LEFT 6857db96d56Sopenharmony_ci 0x2566: 0x00cb, # BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL 6867db96d56Sopenharmony_ci 0x2569: 0x00ca, # BOX DRAWINGS DOUBLE UP AND HORIZONTAL 6877db96d56Sopenharmony_ci 0x256c: 0x00ce, # BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL 6887db96d56Sopenharmony_ci 0x2580: 0x00df, # UPPER HALF BLOCK 6897db96d56Sopenharmony_ci 0x2584: 0x00dc, # LOWER HALF BLOCK 6907db96d56Sopenharmony_ci 0x2588: 0x00db, # FULL BLOCK 6917db96d56Sopenharmony_ci 0x258c: 0x00dd, # LEFT HALF BLOCK 6927db96d56Sopenharmony_ci 0x2590: 0x00de, # RIGHT HALF BLOCK 6937db96d56Sopenharmony_ci 0x2591: 0x00b0, # LIGHT SHADE 6947db96d56Sopenharmony_ci 0x2592: 0x00b1, # MEDIUM SHADE 6957db96d56Sopenharmony_ci 0x2593: 0x00b2, # DARK SHADE 6967db96d56Sopenharmony_ci 0x25a0: 0x00fe, # BLACK SQUARE 6977db96d56Sopenharmony_ci} 698