-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
3482 lines (3475 loc) · 465 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" class="">
<head>
<meta charset='utf-8'>
<meta http-equiv="Content-Encoding" content="utf-8">
<meta http-equiv="Content-Language" content="en">
<title>Table of Legacy 8-bit Encodings</title>
<style>
th { white-space: nowrap; text-align: left; vertical-align: top; }
td { vertical-align: text-top; }
</style>
</head>
<body>
<h1>Table of Legacy 8-bit Encodings</h1>
<p>This table was generated from
<a href="https://github.com/tripleee/8bit/">
https://github.com/tripleee/8bit/</a>
and contains a map of the character codes 0x00-0x31 and 0x80-0xFF
in the various 8-bit encodings known by the Python version
which generated this page.</p>
<p>Section headlines like <a href="#0x80">0x80</a>
are clickable links so you can link to or bookmark
an individual character code.</p>
<p>This page was generated on Wed Sep 4 04:03:41 2024 by Python 3.10.12<br/>
<tt>Linux fv-az1385-862 6.5.0-1025-azure #26~22.04.1-Ubuntu SMP Thu Jul 11 22:33:04 UTC 2024 x86_64</tt>.</p>
<p><table><tr><th>Supported encodings:</th><td>
<a href="https://en.wikipedia.org/wiki/Code_page_37">cp037</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_37#273">cp273</a>,
cp424,
<a href="https://en.wikipedia.org/wiki/Code_page_437">cp437</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_37#500">cp500</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_720">cp720</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_737">cp737</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_775">cp775</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_850">cp850</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_852">cp852</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_855">cp855</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_856">cp856</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_857">cp857</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_858">cp858</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_860">cp860</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_861">cp861</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_862">cp862</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_863">cp863</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_864">cp864</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_865">cp865</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_866">cp866</a>,
<a href="https://en.wikipedia.org/wiki/Code_page_869">cp869</a>,
cp874,
cp875,
<a href="https://en.wikipedia.org/wiki/Code_page_1006">cp1006</a>,
cp1026,
cp1125,
<a href="https://en.wikipedia.org/wiki/Code_page_37#1140">cp1140</a>,
<a href="https://en.wikipedia.org/wiki/Windows-1250">cp1250</a>,
<a href="https://en.wikipedia.org/wiki/Windows-1251">cp1251</a>,
<a href="https://en.wikipedia.org/wiki/Windows-1252">cp1252</a>,
<a href="https://en.wikipedia.org/wiki/Windows-1253">cp1253</a>,
<a href="https://en.wikipedia.org/wiki/Windows-1254">cp1254</a>,
<a href="https://en.wikipedia.org/wiki/Windows-1255">cp1255</a>,
<a href="https://en.wikipedia.org/wiki/Windows-1256">cp1256</a>,
<a href="https://en.wikipedia.org/wiki/Windows-1257">cp1257</a>,
<a href="https://en.wikipedia.org/wiki/Windows-1258">cp1258</a>,
<a href="https://en.wikipedia.org/wiki/HP_Roman#Roman-8">hp_roman8</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-2">iso8859_2</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-3">iso8859_3</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-4">iso8859_4</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-5">iso8859_5</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-6">iso8859_6</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-7">iso8859_7</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-8">iso8859_8</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-9">iso8859_9</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-10">iso8859_10</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-11">iso8859_11</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-13">iso8859_13</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-14">iso8859_14</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-15">iso8859_15</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-16">iso8859_16</a>,
<a href="https://en.wikipedia.org/wiki/KOI8-R">koi8_r</a>,
<a href="https://en.wikipedia.org/wiki/KOI8-T">koi8_t</a>,
<a href="https://en.wikipedia.org/wiki/KOI8-U">koi8_u</a>,
<a href="https://en.wikipedia.org/wiki/Windows-1251#Kazakh_variant">kz1048</a>,
<a href="https://en.wikipedia.org/wiki/ISO/IEC_8859-1">latin_1</a>,
<a href="https://en.wikipedia.org/wiki/MacArabic_encoding">mac_arabic</a>,
<a href="https://en.wikipedia.org/wiki/Mac_OS_Croatian_encoding">mac_croatian</a>,
<a href="https://en.wikipedia.org/wiki/Mac_OS_Cyrillic_encoding">mac_cyrillic</a>,
<a href="https://en.wikipedia.org/wiki/MacFarsi_encoding">mac_farsi</a>,
<a href="https://en.wikipedia.org/wiki/MacGreek_encoding">mac_greek</a>,
<a href="https://en.wikipedia.org/wiki/Mac_OS_Icelandic_encoding">mac_iceland</a>,
<a href="https://en.wikipedia.org/wiki/Mac_OS_Central_European_encoding">mac_latin2</a>,
<a href="https://en.wikipedia.org/wiki/Mac_OS_Roman">mac_roman</a>,
<a href="https://en.wikipedia.org/wiki/Mac_OS_Romanian_encoding">mac_romanian</a>,
<a href="https://en.wikipedia.org/wiki/Mac_OS_Turkish_encoding">mac_turkish</a>,
<a href="https://en.wikipedia.org/wiki/Windows-1252#Palm_OS_variant">palmos</a>,
ptcp154,
<a href="https://en.wikipedia.org/wiki/Thai_Industrial_Standard_620-2533">tis_620</a></td></tr></table></p>
<hr>
<h3><a name="00">•</a><a name="0x00"> </a><a href="#00">0x00</a></h3>
<p><table>
<tr><th>‌</th><th>␀</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0000/">U+0000</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="01">•</a><a name="0x01"> </a><a href="#01">0x01</a></h3>
<p><table>
<tr><th>‌</th><th>␁</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0001/">U+0001</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="02">•</a><a name="0x02"> </a><a href="#02">0x02</a></h3>
<p><table>
<tr><th>‌</th><th>␂</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0002/">U+0002</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="03">•</a><a name="0x03"> </a><a href="#03">0x03</a></h3>
<p><table>
<tr><th>‌</th><th>␃</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0003/">U+0003</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="04">•</a><a name="0x04"> </a><a href="#04">0x04</a></h3>
<p><table>
<tr><th>‌</th><th>␄</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0004/">U+0004</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
<tr><th>‌</th><th>œ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/009C/">U+009C</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
</table></p>
<h3><a name="05">•</a><a name="0x05"> </a><a href="#05">0x05</a></h3>
<p><table>
<tr><th>‌</th><th>␅</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0005/">U+0005</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
<tr><th>‌</th><th>␉</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0009/">U+0009</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
</table></p>
<h3><a name="06">•</a><a name="0x06"> </a><a href="#06">0x06</a></h3>
<p><table>
<tr><th>‌</th><th>␆</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0006/">U+0006</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
<tr><th>‌</th><th>†</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0086/">U+0086</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
</table></p>
<h3><a name="07">•</a><a name="0x07"> </a><a href="#07">0x07</a></h3>
<p><table>
<tr><th>‌</th><th>␇</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0007/">U+0007</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
<tr><th>‌</th><th>␡</th><th>(<a href="http://www.fileformat.info/info/unicode/char/007F/">U+007F</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
</table></p>
<h3><a name="08">•</a><a name="0x08"> </a><a href="#08">0x08</a></h3>
<p><table>
<tr><th>‌</th><th>␈</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0008/">U+0008</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
<tr><th>‌</th><th>—</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0097/">U+0097</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
</table></p>
<h3><a name="09">•</a><a name="0x09"> </a><a href="#09">0x09</a></h3>
<p><table>
<tr><th>‌</th><th>␉</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0009/">U+0009</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
<tr><th>‌</th><th></th><th>(<a href="http://www.fileformat.info/info/unicode/char/008D/">U+008D</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
</table></p>
<h3><a name="0a">•</a><a name="0x0a"> </a><a href="#0a">0x0a</a></h3>
<p><table>
<tr><th>‌</th><th>␊</th><th>(<a href="http://www.fileformat.info/info/unicode/char/000A/">U+000A</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
<tr><th>‌</th><th>Ž</th><th>(<a href="http://www.fileformat.info/info/unicode/char/008E/">U+008E</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
</table></p>
<h3><a name="0b">•</a><a name="0x0b"> </a><a href="#0b">0x0b</a></h3>
<p><table>
<tr><th>‌</th><th>␋</th><th>(<a href="http://www.fileformat.info/info/unicode/char/000B/">U+000B</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="0c">•</a><a name="0x0c"> </a><a href="#0c">0x0c</a></h3>
<p><table>
<tr><th>‌</th><th>␌</th><th>(<a href="http://www.fileformat.info/info/unicode/char/000C/">U+000C</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="0d">•</a><a name="0x0d"> </a><a href="#0d">0x0d</a></h3>
<p><table>
<tr><th>‌</th><th>␍</th><th>(<a href="http://www.fileformat.info/info/unicode/char/000D/">U+000D</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="0e">•</a><a name="0x0e"> </a><a href="#0e">0x0e</a></h3>
<p><table>
<tr><th>‌</th><th>␎</th><th>(<a href="http://www.fileformat.info/info/unicode/char/000E/">U+000E</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="0f">•</a><a name="0x0f"> </a><a href="#0f">0x0f</a></h3>
<p><table>
<tr><th>‌</th><th>␏</th><th>(<a href="http://www.fileformat.info/info/unicode/char/000F/">U+000F</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="10">•</a><a name="0x10"> </a><a href="#10">0x10</a></h3>
<p><table>
<tr><th>‌</th><th>␐</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0010/">U+0010</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="11">•</a><a name="0x11"> </a><a href="#11">0x11</a></h3>
<p><table>
<tr><th>‌</th><th>␑</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0011/">U+0011</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="12">•</a><a name="0x12"> </a><a href="#12">0x12</a></h3>
<p><table>
<tr><th>‌</th><th>␒</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0012/">U+0012</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="13">•</a><a name="0x13"> </a><a href="#13">0x13</a></h3>
<p><table>
<tr><th>‌</th><th>␓</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0013/">U+0013</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="14">•</a><a name="0x14"> </a><a href="#14">0x14</a></h3>
<p><table>
<tr><th>‌</th><th>␔</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0014/">U+0014</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
<tr><th>‌</th><th></th><th>(<a href="http://www.fileformat.info/info/unicode/char/009D/">U+009D</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
</table></p>
<h3><a name="15">•</a><a name="0x15"> </a><a href="#15">0x15</a></h3>
<p><table>
<tr><th>‌</th><th>␕</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0015/">U+0015</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
<tr><th>‌</th><th>…</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0085/">U+0085</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
</table></p>
<h3><a name="16">•</a><a name="0x16"> </a><a href="#16">0x16</a></h3>
<p><table>
<tr><th>‌</th><th>␈</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0008/">U+0008</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>␖</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0016/">U+0016</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="17">•</a><a name="0x17"> </a><a href="#17">0x17</a></h3>
<p><table>
<tr><th>‌</th><th>␗</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0017/">U+0017</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
<tr><th>‌</th><th>‡</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0087/">U+0087</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
</table></p>
<h3><a name="18">•</a><a name="0x18"> </a><a href="#18">0x18</a></h3>
<p><table>
<tr><th>‌</th><th>␘</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0018/">U+0018</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="19">•</a><a name="0x19"> </a><a href="#19">0x19</a></h3>
<p><table>
<tr><th>‌</th><th>␙</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0019/">U+0019</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="1a">•</a><a name="0x1a"> </a><a href="#1a">0x1a</a></h3>
<p><table>
<tr><th>‌</th><th>␚</th><th>(<a href="http://www.fileformat.info/info/unicode/char/001A/">U+001A</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
<tr><th>‌</th><th>’</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0092/">U+0092</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
</table></p>
<h3><a name="1b">•</a><a name="0x1b"> </a><a href="#1b">0x1b</a></h3>
<p><table>
<tr><th>‌</th><th>␛</th><th>(<a href="http://www.fileformat.info/info/unicode/char/001B/">U+001B</a>)</th><td>cp437, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp1006, cp1125, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
<tr><th>‌</th><th></th><th>(<a href="http://www.fileformat.info/info/unicode/char/008F/">U+008F</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
</table></p>
<h3><a name="1c">•</a><a name="0x1c"> </a><a href="#1c">0x1c</a></h3>
<p><table>
<tr><th>‌</th><th>␜</th><th>(<a href="http://www.fileformat.info/info/unicode/char/001C/">U+001C</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="1d">•</a><a name="0x1d"> </a><a href="#1d">0x1d</a></h3>
<p><table>
<tr><th>‌</th><th>␝</th><th>(<a href="http://www.fileformat.info/info/unicode/char/001D/">U+001D</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="1e">•</a><a name="0x1e"> </a><a href="#1e">0x1e</a></h3>
<p><table>
<tr><th>‌</th><th>␞</th><th>(<a href="http://www.fileformat.info/info/unicode/char/001E/">U+001E</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<h3><a name="1f">•</a><a name="0x1f"> </a><a href="#1f">0x1f</a></h3>
<p><table>
<tr><th>‌</th><th>␟</th><th>(<a href="http://www.fileformat.info/info/unicode/char/001F/">U+001F</a>)</th><td>cp037, cp273, cp424, cp437, cp500, cp720, cp737, cp775, cp850, cp852, cp855, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp864, cp865, cp866, cp869, cp874, cp875, cp1006, cp1026, cp1125, cp1140, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, koi8_r, koi8_t, koi8_u, kz1048, latin_1, mac_arabic, mac_croatian, mac_cyrillic, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish, palmos, ptcp154, tis_620</td>
</table></p>
<hr/>
<h3><a name="80">•</a><a name="0x80"> </a><a href="#80">0x80</a></h3>
<p><table>
<tr><th>‌</th><th>€</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0080/">U+0080</a>)</th><td>cp720, cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>°</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B0/">U+00B0</a>)</th><td>cp864</td>
<tr><th>‌</th><th>Ä</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C4/">U+00C4</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>Ç</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C7/">U+00C7</a>)</th><td>cp437, cp850, cp852, cp857, cp858, cp860, cp861, cp863, cp865</td>
<tr><th>‌</th><th>Ø</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00D8/">U+00D8</a>)</th><td>cp037, cp273, cp500, cp1026, cp1140</td>
<tr><th>‌</th><th>Ć</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0106/">U+0106</a>)</th><td>cp775</td>
<tr><th>‌</th><th>΅</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0385/">U+0385</a>)</th><td>cp875</td>
<tr><th>‌</th><th>Α</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0391/">U+0391</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ђ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0402/">U+0402</a>)</th><td>cp1251, kz1048</td>
<tr><th>‌</th><th>А</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0410/">U+0410</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ђ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0452/">U+0452</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Җ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0496/">U+0496</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>қ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/049B/">U+049B</a>)</th><td>koi8_t</td>
<tr><th>‌</th><th>א</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05D0/">U+05D0</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>€</th><th>(<a href="http://www.fileformat.info/info/unicode/char/20AC/">U+20AC</a>)</th><td>cp874, cp1250, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, palmos</td>
<tr><th>‌</th><th>─</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2500/">U+2500</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp424, cp869</td>
</table></p>
<h3><a name="81">•</a><a name="0x81"> </a><a href="#81">0x81</a></h3>
<p><table>
<tr><th>‌</th><th>a</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0061/">U+0061</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th></th><th>(<a href="http://www.fileformat.info/info/unicode/char/0081/">U+0081</a>)</th><td>cp720, cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, palmos, tis_620</td>
<tr><th>‌</th><th> </th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A0/">U+00A0</a>)</th><td>mac_arabic, mac_farsi</td>
<tr><th>‌</th><th>·</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B7/">U+00B7</a>)</th><td>cp864</td>
<tr><th>‌</th><th>¹</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B9/">U+00B9</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>Å</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C5/">U+00C5</a>)</th><td>mac_croatian, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ü</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00FC/">U+00FC</a>)</th><td>cp437, cp775, cp850, cp852, cp857, cp858, cp860, cp861, cp863, cp865</td>
<tr><th>‌</th><th>Ā</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0100/">U+0100</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>Β</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0392/">U+0392</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ђ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0402/">U+0402</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Ѓ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0403/">U+0403</a>)</th><td>cp1251, kz1048</td>
<tr><th>‌</th><th>Б</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0411/">U+0411</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>Ғ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0492/">U+0492</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ғ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0493/">U+0493</a>)</th><td>koi8_t</td>
<tr><th>‌</th><th>ב</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05D1/">U+05D1</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>پ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/067E/">U+067E</a>)</th><td>cp1256</td>
<tr><th>‌</th><th>│</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2502/">U+2502</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp869, cp874, cp1250, cp1252, cp1253, cp1254, cp1255, cp1257, cp1258</td>
</table></p>
<h3><a name="82">•</a><a name="0x82"> </a><a href="#82">0x82</a></h3>
<p><table>
<tr><th>‌</th><th>b</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0062/">U+0062</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>‚</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0082/">U+0082</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>²</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B2/">U+00B2</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>Ç</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C7/">U+00C7</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>é</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E9/">U+00E9</a>)</th><td>cp437, cp720, cp775, cp850, cp852, cp857, cp858, cp860, cp861, cp863, cp865</td>
<tr><th>‌</th><th>ā</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0101/">U+0101</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>Γ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0393/">U+0393</a>)</th><td>cp737</td>
<tr><th>‌</th><th>В</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0412/">U+0412</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ѓ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0453/">U+0453</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Ӯ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04EE/">U+04EE</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ג</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05D2/">U+05D2</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>‚</th><th>(<a href="http://www.fileformat.info/info/unicode/char/201A/">U+201A</a>)</th><td>cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos</td>
<tr><th>‌</th><th>∙</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2219/">U+2219</a>)</th><td>cp864</td>
<tr><th>‌</th><th>┌</th><th>(<a href="http://www.fileformat.info/info/unicode/char/250C/">U+250C</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp869, cp874</td>
</table></p>
<h3><a name="83">•</a><a name="0x83"> </a><a href="#83">0x83</a></h3>
<p><table>
<tr><th>‌</th><th>c</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0063/">U+0063</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>ƒ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0083/">U+0083</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>É</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C9/">U+00C9</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>â</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E2/">U+00E2</a>)</th><td>cp437, cp720, cp850, cp852, cp857, cp858, cp860, cp861, cp863, cp865</td>
<tr><th>‌</th><th>ā</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0101/">U+0101</a>)</th><td>cp775</td>
<tr><th>‌</th><th>ƒ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0192/">U+0192</a>)</th><td>cp1252, cp1253, cp1254, cp1255, cp1256, cp1258, palmos</td>
<tr><th>‌</th><th>Δ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0394/">U+0394</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ѓ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0403/">U+0403</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Г</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0413/">U+0413</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ѓ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0453/">U+0453</a>)</th><td>cp1251, kz1048</td>
<tr><th>‌</th><th>Ғ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0492/">U+0492</a>)</th><td>koi8_t</td>
<tr><th>‌</th><th>ғ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0493/">U+0493</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ד</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05D3/">U+05D3</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>√</th><th>(<a href="http://www.fileformat.info/info/unicode/char/221A/">U+221A</a>)</th><td>cp864</td>
<tr><th>‌</th><th>┐</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2510/">U+2510</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp869, cp874, cp1250, cp1257</td>
</table></p>
<h3><a name="84">•</a><a name="0x84"> </a><a href="#84">0x84</a></h3>
<p><table>
<tr><th>‌</th><th>d</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0064/">U+0064</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>„</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0084/">U+0084</a>)</th><td>cp720, cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>³</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B3/">U+00B3</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>Â</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C2/">U+00C2</a>)</th><td>cp863</td>
<tr><th>‌</th><th>Ñ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00D1/">U+00D1</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ã</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E3/">U+00E3</a>)</th><td>cp860</td>
<tr><th>‌</th><th>ä</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E4/">U+00E4</a>)</th><td>cp437, cp775, cp850, cp852, cp857, cp858, cp861, cp865</td>
<tr><th>‌</th><th>Ą</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0104/">U+0104</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>Ε</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0395/">U+0395</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Д</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0414/">U+0414</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ё</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0451/">U+0451</a>)</th><td>cp855</td>
<tr><th>‌</th><th>ה</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05D4/">U+05D4</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>„</th><th>(<a href="http://www.fileformat.info/info/unicode/char/201E/">U+201E</a>)</th><td>cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos, ptcp154</td>
<tr><th>‌</th><th>└</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2514/">U+2514</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>▒</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2592/">U+2592</a>)</th><td>cp864</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp869, cp874</td>
</table></p>
<h3><a name="85">•</a><a name="0x85"> </a><a href="#85">0x85</a></h3>
<p><table>
<tr><th>‌</th><th>e</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0065/">U+0065</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>…</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0085/">U+0085</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>Ö</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00D6/">U+00D6</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>à</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E0/">U+00E0</a>)</th><td>cp437, cp720, cp850, cp857, cp858, cp860, cp861, cp863, cp865</td>
<tr><th>‌</th><th>ģ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0123/">U+0123</a>)</th><td>cp775</td>
<tr><th>‌</th><th>ů</th><th>(<a href="http://www.fileformat.info/info/unicode/char/016F/">U+016F</a>)</th><td>cp852</td>
<tr><th>‌</th><th>Ζ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0396/">U+0396</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ё</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0401/">U+0401</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Е</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0415/">U+0415</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ו</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05D5/">U+05D5</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>…</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2026/">U+2026</a>)</th><td>cp874, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos, ptcp154</td>
<tr><th>‌</th><th>─</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2500/">U+2500</a>)</th><td>cp864</td>
<tr><th>‌</th><th>┘</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2518/">U+2518</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp869</td>
</table></p>
<h3><a name="86">•</a><a name="0x86"> </a><a href="#86">0x86</a></h3>
<p><table>
<tr><th>‌</th><th>f</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0066/">U+0066</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>†</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0086/">U+0086</a>)</th><td>cp720, cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>¶</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B6/">U+00B6</a>)</th><td>cp863</td>
<tr><th>‌</th><th>Á</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C1/">U+00C1</a>)</th><td>cp860</td>
<tr><th>‌</th><th>Ü</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00DC/">U+00DC</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>å</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E5/">U+00E5</a>)</th><td>cp437, cp775, cp850, cp857, cp858, cp861, cp865</td>
<tr><th>‌</th><th>ć</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0107/">U+0107</a>)</th><td>cp852</td>
<tr><th>‌</th><th>Ά</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0386/">U+0386</a>)</th><td>cp869</td>
<tr><th>‌</th><th>Η</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0397/">U+0397</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ж</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0416/">U+0416</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>є</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0454/">U+0454</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Ҷ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04B6/">U+04B6</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ז</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05D6/">U+05D6</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>†</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2020/">U+2020</a>)</th><td>cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos</td>
<tr><th>‌</th><th>│</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2502/">U+2502</a>)</th><td>cp864</td>
<tr><th>‌</th><th>├</th><th>(<a href="http://www.fileformat.info/info/unicode/char/251C/">U+251C</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp874</td>
</table></p>
<h3><a name="87">•</a><a name="0x87"> </a><a href="#87">0x87</a></h3>
<p><table>
<tr><th>‌</th><th>g</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0067/">U+0067</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>‡</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0087/">U+0087</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>á</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E1/">U+00E1</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ç</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E7/">U+00E7</a>)</th><td>cp437, cp720, cp850, cp852, cp857, cp858, cp860, cp861, cp863, cp865</td>
<tr><th>‌</th><th>ć</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0107/">U+0107</a>)</th><td>cp775</td>
<tr><th>‌</th><th>΅</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0385/">U+0385</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>Θ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0398/">U+0398</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Є</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0404/">U+0404</a>)</th><td>cp855</td>
<tr><th>‌</th><th>З</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0417/">U+0417</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>Ү</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04AE/">U+04AE</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ח</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05D7/">U+05D7</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>‡</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2021/">U+2021</a>)</th><td>cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos</td>
<tr><th>‌</th><th>┤</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2524/">U+2524</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>┼</th><th>(<a href="http://www.fileformat.info/info/unicode/char/253C/">U+253C</a>)</th><td>cp864</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp869, cp874</td>
</table></p>
<h3><a name="88">•</a><a name="0x88"> </a><a href="#88">0x88</a></h3>
<p><table>
<tr><th>‌</th><th>h</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0068/">U+0068</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>ˆ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0088/">U+0088</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>·</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B7/">U+00B7</a>)</th><td>cp869</td>
<tr><th>‌</th><th>à</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E0/">U+00E0</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ê</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00EA/">U+00EA</a>)</th><td>cp437, cp720, cp850, cp857, cp858, cp860, cp861, cp863, cp865</td>
<tr><th>‌</th><th>ą</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0105/">U+0105</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>ł</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0142/">U+0142</a>)</th><td>cp775, cp852</td>
<tr><th>‌</th><th>ˆ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/02C6/">U+02C6</a>)</th><td>cp1252, cp1254, cp1255, cp1256, cp1258, palmos</td>
<tr><th>‌</th><th>Ι</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0399/">U+0399</a>)</th><td>cp737</td>
<tr><th>‌</th><th>И</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0418/">U+0418</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ѕ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0455/">U+0455</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Ҳ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04B2/">U+04B2</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ט</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05D8/">U+05D8</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>€</th><th>(<a href="http://www.fileformat.info/info/unicode/char/20AC/">U+20AC</a>)</th><td>cp1251, kz1048</td>
<tr><th>‌</th><th>┤</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2524/">U+2524</a>)</th><td>cp864</td>
<tr><th>‌</th><th>┬</th><th>(<a href="http://www.fileformat.info/info/unicode/char/252C/">U+252C</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp874, cp1250, cp1253, cp1257, koi8_t</td>
</table></p>
<h3><a name="89">•</a><a name="0x89"> </a><a href="#89">0x89</a></h3>
<p><table>
<tr><th>‌</th><th>i</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0069/">U+0069</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>‰</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0089/">U+0089</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>¬</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00AC/">U+00AC</a>)</th><td>cp869</td>
<tr><th>‌</th><th>Ê</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00CA/">U+00CA</a>)</th><td>cp860</td>
<tr><th>‌</th><th>â</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E2/">U+00E2</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ë</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00EB/">U+00EB</a>)</th><td>cp437, cp720, cp850, cp852, cp857, cp858, cp861, cp863, cp865</td>
<tr><th>‌</th><th>Č</th><th>(<a href="http://www.fileformat.info/info/unicode/char/010C/">U+010C</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>ē</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0113/">U+0113</a>)</th><td>cp775</td>
<tr><th>‌</th><th>Κ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/039A/">U+039A</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ѕ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0405/">U+0405</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Й</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0419/">U+0419</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ү</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04AF/">U+04AF</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>י</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05D9/">U+05D9</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>‰</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2030/">U+2030</a>)</th><td>cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos</td>
<tr><th>‌</th><th>┬</th><th>(<a href="http://www.fileformat.info/info/unicode/char/252C/">U+252C</a>)</th><td>cp864</td>
<tr><th>‌</th><th>┴</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2534/">U+2534</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp874</td>
</table></p>
<h3><a name="8a">•</a><a name="0x8a"> </a><a href="#8a">0x8a</a></h3>
<p><table>
<tr><th>‌</th><th>Š</th><th>(<a href="http://www.fileformat.info/info/unicode/char/008A/">U+008A</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>¦</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A6/">U+00A6</a>)</th><td>cp869</td>
<tr><th>‌</th><th>«</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00AB/">U+00AB</a>)</th><td>cp037, cp273, cp424, cp500, cp1026, cp1140</td>
<tr><th>‌</th><th>ä</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E4/">U+00E4</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>è</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E8/">U+00E8</a>)</th><td>cp437, cp720, cp850, cp857, cp858, cp860, cp861, cp863, cp865</td>
<tr><th>‌</th><th>Ő</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0150/">U+0150</a>)</th><td>cp852</td>
<tr><th>‌</th><th>Ŗ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0156/">U+0156</a>)</th><td>cp775</td>
<tr><th>‌</th><th>Š</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0160/">U+0160</a>)</th><td>cp1250, cp1252, cp1254, palmos</td>
<tr><th>‌</th><th>Λ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/039B/">U+039B</a>)</th><td>cp737</td>
<tr><th>‌</th><th>α</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B1/">U+03B1</a>)</th><td>cp875</td>
<tr><th>‌</th><th>Љ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0409/">U+0409</a>)</th><td>cp1251, kz1048</td>
<tr><th>‌</th><th>К</th><th>(<a href="http://www.fileformat.info/info/unicode/char/041A/">U+041A</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>і</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0456/">U+0456</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Ҡ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04A0/">U+04A0</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ҳ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04B3/">U+04B3</a>)</th><td>koi8_t</td>
<tr><th>‌</th><th>ך</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05DA/">U+05DA</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>ٹ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0679/">U+0679</a>)</th><td>cp1256</td>
<tr><th>‌</th><th>├</th><th>(<a href="http://www.fileformat.info/info/unicode/char/251C/">U+251C</a>)</th><td>cp864</td>
<tr><th>‌</th><th>┼</th><th>(<a href="http://www.fileformat.info/info/unicode/char/253C/">U+253C</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp874, cp1253, cp1255, cp1257, cp1258</td>
</table></p>
<h3><a name="8b">•</a><a name="0x8b"> </a><a href="#8b">0x8b</a></h3>
<p><table>
<tr><th>‌</th><th>‹</th><th>(<a href="http://www.fileformat.info/info/unicode/char/008B/">U+008B</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>»</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00BB/">U+00BB</a>)</th><td>cp037, cp273, cp424, cp500, cp1026, cp1140</td>
<tr><th>‌</th><th>Í</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00CD/">U+00CD</a>)</th><td>cp860</td>
<tr><th>‌</th><th>Ð</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00D0/">U+00D0</a>)</th><td>cp861</td>
<tr><th>‌</th><th>ã</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E3/">U+00E3</a>)</th><td>mac_croatian, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ï</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00EF/">U+00EF</a>)</th><td>cp437, cp720, cp850, cp857, cp858, cp863, cp865</td>
<tr><th>‌</th><th>č</th><th>(<a href="http://www.fileformat.info/info/unicode/char/010D/">U+010D</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>ő</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0151/">U+0151</a>)</th><td>cp852</td>
<tr><th>‌</th><th>ŗ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0157/">U+0157</a>)</th><td>cp775</td>
<tr><th>‌</th><th>΄</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0384/">U+0384</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>Μ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/039C/">U+039C</a>)</th><td>cp737</td>
<tr><th>‌</th><th>β</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B2/">U+03B2</a>)</th><td>cp875</td>
<tr><th>‌</th><th>І</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0406/">U+0406</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Л</th><th>(<a href="http://www.fileformat.info/info/unicode/char/041B/">U+041B</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>Ӣ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04E2/">U+04E2</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>כ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05DB/">U+05DB</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>ں</th><th>(<a href="http://www.fileformat.info/info/unicode/char/06BA/">U+06BA</a>)</th><td>mac_arabic, mac_farsi</td>
<tr><th>‌</th><th>‘</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2018/">U+2018</a>)</th><td>cp869</td>
<tr><th>‌</th><th>‹</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2039/">U+2039</a>)</th><td>cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos</td>
<tr><th>‌</th><th>┴</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2534/">U+2534</a>)</th><td>cp864</td>
<tr><th>‌</th><th>▀</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2580/">U+2580</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp874</td>
</table></p>
<h3><a name="8c">•</a><a name="0x8c"> </a><a href="#8c">0x8c</a></h3>
<p><table>
<tr><th>‌</th><th>}</th><th>(<a href="http://www.fileformat.info/info/unicode/char/007D/">U+007D</a>)</th><td>cp1026</td>
<tr><th>‌</th><th>Œ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/008C/">U+008C</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>¨</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A8/">U+00A8</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>«</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00AB/">U+00AB</a>)</th><td>mac_arabic, mac_farsi</td>
<tr><th>‌</th><th>Ô</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00D4/">U+00D4</a>)</th><td>cp860</td>
<tr><th>‌</th><th>å</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E5/">U+00E5</a>)</th><td>mac_croatian, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>î</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00EE/">U+00EE</a>)</th><td>cp437, cp720, cp850, cp852, cp857, cp858, cp863, cp865</td>
<tr><th>‌</th><th>ð</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F0/">U+00F0</a>)</th><td>cp037, cp273, cp500, cp861, cp1140</td>
<tr><th>‌</th><th>Ć</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0106/">U+0106</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>ī</th><th>(<a href="http://www.fileformat.info/info/unicode/char/012B/">U+012B</a>)</th><td>cp775</td>
<tr><th>‌</th><th>Œ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0152/">U+0152</a>)</th><td>cp1252, cp1254, cp1256, cp1258, palmos</td>
<tr><th>‌</th><th>Ś</th><th>(<a href="http://www.fileformat.info/info/unicode/char/015A/">U+015A</a>)</th><td>cp1250</td>
<tr><th>‌</th><th>Ν</th><th>(<a href="http://www.fileformat.info/info/unicode/char/039D/">U+039D</a>)</th><td>cp737</td>
<tr><th>‌</th><th>γ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B3/">U+03B3</a>)</th><td>cp875</td>
<tr><th>‌</th><th>Њ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/040A/">U+040A</a>)</th><td>cp1251, kz1048</td>
<tr><th>‌</th><th>М</th><th>(<a href="http://www.fileformat.info/info/unicode/char/041C/">U+041C</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ї</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0457/">U+0457</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Ң</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04A2/">U+04A2</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>Ҳ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04B2/">U+04B2</a>)</th><td>koi8_t</td>
<tr><th>‌</th><th>ל</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05DC/">U+05DC</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>’</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2019/">U+2019</a>)</th><td>cp869</td>
<tr><th>‌</th><th>┐</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2510/">U+2510</a>)</th><td>cp864</td>
<tr><th>‌</th><th>▄</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2584/">U+2584</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp424, cp874, cp1253, cp1255, cp1257</td>
</table></p>
<h3><a name="8d">•</a><a name="0x8d"> </a><a href="#8d">0x8d</a></h3>
<p><table>
<tr><th>‌</th><th>`</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0060/">U+0060</a>)</th><td>cp1026</td>
<tr><th>‌</th><th></th><th>(<a href="http://www.fileformat.info/info/unicode/char/008D/">U+008D</a>)</th><td>cp720, cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>¨</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A8/">U+00A8</a>)</th><td>cp1257</td>
<tr><th>‌</th><th>Þ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00DE/">U+00DE</a>)</th><td>cp861</td>
<tr><th>‌</th><th>ç</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E7/">U+00E7</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ì</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00EC/">U+00EC</a>)</th><td>cp437, cp850, cp858, cp860, cp865</td>
<tr><th>‌</th><th>ý</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00FD/">U+00FD</a>)</th><td>cp037, cp273, cp500, cp1140</td>
<tr><th>‌</th><th>ć</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0107/">U+0107</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>ı</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0131/">U+0131</a>)</th><td>cp857</td>
<tr><th>‌</th><th>Ť</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0164/">U+0164</a>)</th><td>cp1250</td>
<tr><th>‌</th><th>Ź</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0179/">U+0179</a>)</th><td>cp775, cp852</td>
<tr><th>‌</th><th>Έ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0388/">U+0388</a>)</th><td>cp869</td>
<tr><th>‌</th><th>Ξ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/039E/">U+039E</a>)</th><td>cp737</td>
<tr><th>‌</th><th>δ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B4/">U+03B4</a>)</th><td>cp875</td>
<tr><th>‌</th><th>Ї</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0407/">U+0407</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Ќ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/040C/">U+040C</a>)</th><td>cp1251</td>
<tr><th>‌</th><th>Н</th><th>(<a href="http://www.fileformat.info/info/unicode/char/041D/">U+041D</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>Қ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/049A/">U+049A</a>)</th><td>kz1048, ptcp154</td>
<tr><th>‌</th><th>ҷ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04B7/">U+04B7</a>)</th><td>koi8_t</td>
<tr><th>‌</th><th>ם</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05DD/">U+05DD</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>چ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0686/">U+0686</a>)</th><td>cp1256</td>
<tr><th>‌</th><th>‗</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2017/">U+2017</a>)</th><td>cp863</td>
<tr><th>‌</th><th>┌</th><th>(<a href="http://www.fileformat.info/info/unicode/char/250C/">U+250C</a>)</th><td>cp864</td>
<tr><th>‌</th><th>█</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2588/">U+2588</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>♦</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2666/">U+2666</a>)</th><td>palmos</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp424, cp874, cp1252, cp1253, cp1254, cp1255, cp1258</td>
</table></p>
<h3><a name="8e">•</a><a name="0x8e"> </a><a href="#8e">0x8e</a></h3>
<p><table>
<tr><th>‌</th><th>Ž</th><th>(<a href="http://www.fileformat.info/info/unicode/char/008E/">U+008E</a>)</th><td>cp720, cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>¦</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A6/">U+00A6</a>)</th><td>cp1026</td>
<tr><th>‌</th><th>À</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C0/">U+00C0</a>)</th><td>cp863</td>
<tr><th>‌</th><th>Ã</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C3/">U+00C3</a>)</th><td>cp860</td>
<tr><th>‌</th><th>Ä</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C4/">U+00C4</a>)</th><td>cp437, cp775, cp850, cp852, cp857, cp858, cp861, cp865</td>
<tr><th>‌</th><th>é</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E9/">U+00E9</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>þ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00FE/">U+00FE</a>)</th><td>cp037, cp273, cp500, cp1140</td>
<tr><th>‌</th><th>Ž</th><th>(<a href="http://www.fileformat.info/info/unicode/char/017D/">U+017D</a>)</th><td>cp1250, cp1252</td>
<tr><th>‌</th><th>ˇ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/02C7/">U+02C7</a>)</th><td>cp1257</td>
<tr><th>‌</th><th>Ο</th><th>(<a href="http://www.fileformat.info/info/unicode/char/039F/">U+039F</a>)</th><td>cp737</td>
<tr><th>‌</th><th>ε</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B5/">U+03B5</a>)</th><td>cp875</td>
<tr><th>‌</th><th>Ћ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/040B/">U+040B</a>)</th><td>cp1251</td>
<tr><th>‌</th><th>О</th><th>(<a href="http://www.fileformat.info/info/unicode/char/041E/">U+041E</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ј</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0458/">U+0458</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Ҷ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04B6/">U+04B6</a>)</th><td>koi8_t</td>
<tr><th>‌</th><th>Һ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04BA/">U+04BA</a>)</th><td>kz1048, ptcp154</td>
<tr><th>‌</th><th>מ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05DE/">U+05DE</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>ژ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0698/">U+0698</a>)</th><td>cp1256</td>
<tr><th>‌</th><th>―</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2015/">U+2015</a>)</th><td>cp869</td>
<tr><th>‌</th><th>└</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2514/">U+2514</a>)</th><td>cp864</td>
<tr><th>‌</th><th>▌</th><th>(<a href="http://www.fileformat.info/info/unicode/char/258C/">U+258C</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>♣</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2663/">U+2663</a>)</th><td>palmos</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp424, cp874, cp1253, cp1254, cp1255, cp1258</td>
</table></p>
<h3><a name="8f">•</a><a name="0x8f"> </a><a href="#8f">0x8f</a></h3>
<p><table>
<tr><th>‌</th><th></th><th>(<a href="http://www.fileformat.info/info/unicode/char/008F/">U+008F</a>)</th><td>cp720, cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>§</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A7/">U+00A7</a>)</th><td>cp863</td>
<tr><th>‌</th><th>±</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B1/">U+00B1</a>)</th><td>cp037, cp273, cp424, cp500, cp1026, cp1140</td>
<tr><th>‌</th><th>¸</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B8/">U+00B8</a>)</th><td>cp1257</td>
<tr><th>‌</th><th>Â</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C2/">U+00C2</a>)</th><td>cp860</td>
<tr><th>‌</th><th>Å</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C5/">U+00C5</a>)</th><td>cp437, cp775, cp850, cp857, cp858, cp861, cp865</td>
<tr><th>‌</th><th>è</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E8/">U+00E8</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>Ć</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0106/">U+0106</a>)</th><td>cp852</td>
<tr><th>‌</th><th>Ź</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0179/">U+0179</a>)</th><td>cp1250, mac_latin2</td>
<tr><th>‌</th><th>Ή</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0389/">U+0389</a>)</th><td>cp869</td>
<tr><th>‌</th><th>Π</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03A0/">U+03A0</a>)</th><td>cp737</td>
<tr><th>‌</th><th>ζ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B6/">U+03B6</a>)</th><td>cp875</td>
<tr><th>‌</th><th>Ј</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0408/">U+0408</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Џ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/040F/">U+040F</a>)</th><td>cp1251, kz1048</td>
<tr><th>‌</th><th>П</th><th>(<a href="http://www.fileformat.info/info/unicode/char/041F/">U+041F</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>Ҹ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04B8/">U+04B8</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ן</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05DF/">U+05DF</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>ڈ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0688/">U+0688</a>)</th><td>cp1256</td>
<tr><th>‌</th><th>┘</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2518/">U+2518</a>)</th><td>cp864</td>
<tr><th>‌</th><th>▐</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2590/">U+2590</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>♥</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2665/">U+2665</a>)</th><td>palmos</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp874, cp1252, cp1253, cp1254, cp1255, cp1258, koi8_t</td>
</table></p>
<h3><a name="90">•</a><a name="0x90"> </a><a href="#90">0x90</a></h3>
<p><table>
<tr><th>‌</th><th></th><th>(<a href="http://www.fileformat.info/info/unicode/char/0090/">U+0090</a>)</th><td>cp720, cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>°</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B0/">U+00B0</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>É</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C9/">U+00C9</a>)</th><td>cp437, cp775, cp850, cp852, cp857, cp858, cp860, cp861, cp863, cp865</td>
<tr><th>‌</th><th>ê</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00EA/">U+00EA</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ź</th><th>(<a href="http://www.fileformat.info/info/unicode/char/017A/">U+017A</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>Ί</th><th>(<a href="http://www.fileformat.info/info/unicode/char/038A/">U+038A</a>)</th><td>cp869</td>
<tr><th>‌</th><th>Ρ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03A1/">U+03A1</a>)</th><td>cp737</td>
<tr><th>‌</th><th>β</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B2/">U+03B2</a>)</th><td>cp864</td>
<tr><th>‌</th><th>Р</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0420/">U+0420</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ђ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0452/">U+0452</a>)</th><td>cp1251, kz1048</td>
<tr><th>‌</th><th>љ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0459/">U+0459</a>)</th><td>cp855</td>
<tr><th>‌</th><th>җ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0497/">U+0497</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>Қ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/049A/">U+049A</a>)</th><td>koi8_t</td>
<tr><th>‌</th><th>נ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05E0/">U+05E0</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>گ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/06AF/">U+06AF</a>)</th><td>cp1256</td>
<tr><th>‌</th><th>░</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2591/">U+2591</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>♠</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2660/">U+2660</a>)</th><td>palmos</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp874, cp1250, cp1252, cp1253, cp1254, cp1255, cp1257, cp1258</td>
</table></p>
<h3><a name="91">•</a><a name="0x91"> </a><a href="#91">0x91</a></h3>
<p><table>
<tr><th>‌</th><th>j</th><th>(<a href="http://www.fileformat.info/info/unicode/char/006A/">U+006A</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>‘</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0091/">U+0091</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>À</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C0/">U+00C0</a>)</th><td>cp860</td>
<tr><th>‌</th><th>È</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C8/">U+00C8</a>)</th><td>cp863</td>
<tr><th>‌</th><th>æ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E6/">U+00E6</a>)</th><td>cp437, cp775, cp850, cp857, cp858, cp861, cp865</td>
<tr><th>‌</th><th>ë</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00EB/">U+00EB</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>Ď</th><th>(<a href="http://www.fileformat.info/info/unicode/char/010E/">U+010E</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>Ĺ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0139/">U+0139</a>)</th><td>cp852</td>
<tr><th>‌</th><th>Σ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03A3/">U+03A3</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ϊ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03AA/">U+03AA</a>)</th><td>cp869</td>
<tr><th>‌</th><th>Љ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0409/">U+0409</a>)</th><td>cp855</td>
<tr><th>‌</th><th>С</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0421/">U+0421</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ס</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05E1/">U+05E1</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>ّ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0651/">U+0651</a>)</th><td>cp720</td>
<tr><th>‌</th><th>‘</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2018/">U+2018</a>)</th><td>cp874, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos, ptcp154</td>
<tr><th>‌</th><th>∞</th><th>(<a href="http://www.fileformat.info/info/unicode/char/221E/">U+221E</a>)</th><td>cp864</td>
<tr><th>‌</th><th>▒</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2592/">U+2592</a>)</th><td>koi8_r, koi8_u</td>
</table></p>
<h3><a name="92">•</a><a name="0x92"> </a><a href="#92">0x92</a></h3>
<p><table>
<tr><th>‌</th><th>k</th><th>(<a href="http://www.fileformat.info/info/unicode/char/006B/">U+006B</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>’</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0092/">U+0092</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>£</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A3/">U+00A3</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>Æ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C6/">U+00C6</a>)</th><td>cp437, cp775, cp850, cp857, cp858, cp861, cp865</td>
<tr><th>‌</th><th>È</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C8/">U+00C8</a>)</th><td>cp860</td>
<tr><th>‌</th><th>Ê</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00CA/">U+00CA</a>)</th><td>cp863</td>
<tr><th>‌</th><th>í</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00ED/">U+00ED</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ĺ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/013A/">U+013A</a>)</th><td>cp852</td>
<tr><th>‌</th><th>Ό</th><th>(<a href="http://www.fileformat.info/info/unicode/char/038C/">U+038C</a>)</th><td>cp869</td>
<tr><th>‌</th><th>Τ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03A4/">U+03A4</a>)</th><td>cp737</td>
<tr><th>‌</th><th>φ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03C6/">U+03C6</a>)</th><td>cp864</td>
<tr><th>‌</th><th>Т</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0422/">U+0422</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>њ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/045A/">U+045A</a>)</th><td>cp855</td>
<tr><th>‌</th><th>ע</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05E2/">U+05E2</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>ْ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0652/">U+0652</a>)</th><td>cp720</td>
<tr><th>‌</th><th>’</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2019/">U+2019</a>)</th><td>cp874, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos, ptcp154</td>
<tr><th>‌</th><th>▓</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2593/">U+2593</a>)</th><td>koi8_r, koi8_u</td>
</table></p>
<h3><a name="93">•</a><a name="0x93"> </a><a href="#93">0x93</a></h3>
<p><table>
<tr><th>‌</th><th>l</th><th>(<a href="http://www.fileformat.info/info/unicode/char/006C/">U+006C</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>“</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0093/">U+0093</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>±</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B1/">U+00B1</a>)</th><td>cp864</td>
<tr><th>‌</th><th>ì</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00EC/">U+00EC</a>)</th><td>mac_croatian, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ô</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F4/">U+00F4</a>)</th><td>cp437, cp720, cp850, cp852, cp857, cp858, cp860, cp861, cp863, cp865</td>
<tr><th>‌</th><th>ď</th><th>(<a href="http://www.fileformat.info/info/unicode/char/010F/">U+010F</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>ō</th><th>(<a href="http://www.fileformat.info/info/unicode/char/014D/">U+014D</a>)</th><td>cp775</td>
<tr><th>‌</th><th>Υ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03A5/">U+03A5</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Њ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/040A/">U+040A</a>)</th><td>cp855</td>
<tr><th>‌</th><th>У</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0423/">U+0423</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ף</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05E3/">U+05E3</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>“</th><th>(<a href="http://www.fileformat.info/info/unicode/char/201C/">U+201C</a>)</th><td>cp874, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos, ptcp154</td>
<tr><th>‌</th><th>…</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2026/">U+2026</a>)</th><td>mac_arabic, mac_farsi</td>
<tr><th>‌</th><th>™</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2122/">U+2122</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>⌠</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2320/">U+2320</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp869</td>
</table></p>
<h3><a name="94">•</a><a name="0x94"> </a><a href="#94">0x94</a></h3>
<p><table>
<tr><th>‌</th><th>m</th><th>(<a href="http://www.fileformat.info/info/unicode/char/006D/">U+006D</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>”</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0094/">U+0094</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>¤</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A4/">U+00A4</a>)</th><td>cp720</td>
<tr><th>‌</th><th>½</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00BD/">U+00BD</a>)</th><td>cp864</td>
<tr><th>‌</th><th>Ë</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00CB/">U+00CB</a>)</th><td>cp863</td>
<tr><th>‌</th><th>î</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00EE/">U+00EE</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>õ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F5/">U+00F5</a>)</th><td>cp860</td>
<tr><th>‌</th><th>ö</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F6/">U+00F6</a>)</th><td>cp437, cp775, cp850, cp852, cp857, cp858, cp861, cp865</td>
<tr><th>‌</th><th>Ē</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0112/">U+0112</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>Φ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03A6/">U+03A6</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ф</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0424/">U+0424</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ћ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/045B/">U+045B</a>)</th><td>cp855</td>
<tr><th>‌</th><th>פ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05E4/">U+05E4</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>”</th><th>(<a href="http://www.fileformat.info/info/unicode/char/201D/">U+201D</a>)</th><td>cp874, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos, ptcp154</td>
<tr><th>‌</th><th>■</th><th>(<a href="http://www.fileformat.info/info/unicode/char/25A0/">U+25A0</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp869</td>
</table></p>
<h3><a name="95">•</a><a name="0x95"> </a><a href="#95">0x95</a></h3>
<p><table>
<tr><th>‌</th><th>n</th><th>(<a href="http://www.fileformat.info/info/unicode/char/006E/">U+006E</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>•</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0095/">U+0095</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>¼</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00BC/">U+00BC</a>)</th><td>cp864</td>
<tr><th>‌</th><th>Ï</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00CF/">U+00CF</a>)</th><td>cp863</td>
<tr><th>‌</th><th>ï</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00EF/">U+00EF</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ò</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F2/">U+00F2</a>)</th><td>cp437, cp850, cp857, cp858, cp860, cp865</td>
<tr><th>‌</th><th>þ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00FE/">U+00FE</a>)</th><td>cp861</td>
<tr><th>‌</th><th>ē</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0113/">U+0113</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>Ģ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0122/">U+0122</a>)</th><td>cp775</td>
<tr><th>‌</th><th>Ľ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/013D/">U+013D</a>)</th><td>cp852</td>
<tr><th>‌</th><th>Ύ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/038E/">U+038E</a>)</th><td>cp869</td>
<tr><th>‌</th><th>Χ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03A7/">U+03A7</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ћ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/040B/">U+040B</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Х</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0425/">U+0425</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ץ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05E5/">U+05E5</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>ـ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0640/">U+0640</a>)</th><td>cp720</td>
<tr><th>‌</th><th>•</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2022/">U+2022</a>)</th><td>cp874, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos, ptcp154</td>
<tr><th>‌</th><th>∙</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2219/">U+2219</a>)</th><td>koi8_r, koi8_u</td>
</table></p>
<h3><a name="96">•</a><a name="0x96"> </a><a href="#96">0x96</a></h3>
<p><table>
<tr><th>‌</th><th>o</th><th>(<a href="http://www.fileformat.info/info/unicode/char/006F/">U+006F</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>–</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0096/">U+0096</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>¢</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A2/">U+00A2</a>)</th><td>cp775</td>
<tr><th>‌</th><th>Ú</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00DA/">U+00DA</a>)</th><td>cp860</td>
<tr><th>‌</th><th>ñ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F1/">U+00F1</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>û</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00FB/">U+00FB</a>)</th><td>cp437, cp720, cp850, cp857, cp858, cp861, cp863, cp865</td>
<tr><th>‌</th><th>Ė</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0116/">U+0116</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>ľ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/013E/">U+013E</a>)</th><td>cp852</td>
<tr><th>‌</th><th>Ψ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03A8/">U+03A8</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ϋ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03AB/">U+03AB</a>)</th><td>cp869</td>
<tr><th>‌</th><th>Ц</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0426/">U+0426</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ќ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/045C/">U+045C</a>)</th><td>cp855</td>
<tr><th>‌</th><th>צ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05E6/">U+05E6</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>–</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2013/">U+2013</a>)</th><td>cp874, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos, ptcp154</td>
<tr><th>‌</th><th>•</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2022/">U+2022</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>√</th><th>(<a href="http://www.fileformat.info/info/unicode/char/221A/">U+221A</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>≈</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2248/">U+2248</a>)</th><td>cp864</td>
</table></p>
<h3><a name="97">•</a><a name="0x97"> </a><a href="#97">0x97</a></h3>
<p><table>
<tr><th>‌</th><th>p</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0070/">U+0070</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>—</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0097/">U+0097</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>©</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A9/">U+00A9</a>)</th><td>cp869</td>
<tr><th>‌</th><th>«</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00AB/">U+00AB</a>)</th><td>cp864</td>
<tr><th>‌</th><th>½</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00BD/">U+00BD</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>Ý</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00DD/">U+00DD</a>)</th><td>cp861</td>
<tr><th>‌</th><th>ó</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F3/">U+00F3</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ù</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F9/">U+00F9</a>)</th><td>cp437, cp720, cp850, cp857, cp858, cp860, cp863, cp865</td>
<tr><th>‌</th><th>Ś</th><th>(<a href="http://www.fileformat.info/info/unicode/char/015A/">U+015A</a>)</th><td>cp775, cp852</td>
<tr><th>‌</th><th>Ω</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03A9/">U+03A9</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ќ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/040C/">U+040C</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Ч</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0427/">U+0427</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ק</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05E7/">U+05E7</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>—</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2014/">U+2014</a>)</th><td>cp874, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos, ptcp154</td>
<tr><th>‌</th><th>≈</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2248/">U+2248</a>)</th><td>koi8_r, koi8_u</td>
</table></p>
<h3><a name="98">•</a><a name="0x98"> </a><a href="#98">0x98</a></h3>
<p><table>
<tr><th>‌</th><th>q</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0071/">U+0071</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>˜</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0098/">U+0098</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>¤</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A4/">U+00A4</a>)</th><td>cp863</td>
<tr><th>‌</th><th>»</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00BB/">U+00BB</a>)</th><td>cp864, mac_arabic, mac_farsi</td>
<tr><th>‌</th><th>Ì</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00CC/">U+00CC</a>)</th><td>cp860</td>
<tr><th>‌</th><th>ò</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F2/">U+00F2</a>)</th><td>mac_croatian, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ý</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00FD/">U+00FD</a>)</th><td>cp861</td>
<tr><th>‌</th><th>ÿ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00FF/">U+00FF</a>)</th><td>cp437, cp850, cp858, cp865</td>
<tr><th>‌</th><th>ė</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0117/">U+0117</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>İ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0130/">U+0130</a>)</th><td>cp857</td>
<tr><th>‌</th><th>ś</th><th>(<a href="http://www.fileformat.info/info/unicode/char/015B/">U+015B</a>)</th><td>cp775, cp852</td>
<tr><th>‌</th><th>˜</th><th>(<a href="http://www.fileformat.info/info/unicode/char/02DC/">U+02DC</a>)</th><td>cp1252, cp1254, cp1255, cp1258, palmos</td>
<tr><th>‌</th><th>Ώ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/038F/">U+038F</a>)</th><td>cp869</td>
<tr><th>‌</th><th>α</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B1/">U+03B1</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ш</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0428/">U+0428</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ў</th><th>(<a href="http://www.fileformat.info/info/unicode/char/045E/">U+045E</a>)</th><td>cp855</td>
<tr><th>‌</th><th>ҳ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04B3/">U+04B3</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ר</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05E8/">U+05E8</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>ء</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0621/">U+0621</a>)</th><td>cp720</td>
<tr><th>‌</th><th>ک</th><th>(<a href="http://www.fileformat.info/info/unicode/char/06A9/">U+06A9</a>)</th><td>cp1256</td>
<tr><th>‌</th><th>‰</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2030/">U+2030</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>≤</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2264/">U+2264</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp874, cp1250, cp1251, cp1253, cp1257, koi8_t, kz1048</td>
</table></p>
<h3><a name="99">•</a><a name="0x99"> </a><a href="#99">0x99</a></h3>
<p><table>
<tr><th>‌</th><th>r</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0072/">U+0072</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>™</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0099/">U+0099</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>²</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B2/">U+00B2</a>)</th><td>cp869</td>
<tr><th>‌</th><th>Ô</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00D4/">U+00D4</a>)</th><td>cp863</td>
<tr><th>‌</th><th>Õ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00D5/">U+00D5</a>)</th><td>cp860</td>
<tr><th>‌</th><th>Ö</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00D6/">U+00D6</a>)</th><td>cp437, cp775, cp850, cp852, cp857, cp858, cp861, cp865</td>
<tr><th>‌</th><th>ô</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F4/">U+00F4</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>β</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B2/">U+03B2</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ў</th><th>(<a href="http://www.fileformat.info/info/unicode/char/040E/">U+040E</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Щ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0429/">U+0429</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ҷ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04B7/">U+04B7</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ש</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05E9/">U+05E9</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>آ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0622/">U+0622</a>)</th><td>cp720</td>
<tr><th>‌</th><th>™</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2122/">U+2122</a>)</th><td>cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048, palmos</td>
<tr><th>‌</th><th>≥</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2265/">U+2265</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>ﻷ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/FEF7/">U+FEF7</a>)</th><td>cp864</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp874</td>
</table></p>
<h3><a name="9a">•</a><a name="0x9a"> </a><a href="#9a">0x9a</a></h3>
<p><table>
<tr><th>‌</th><th>š</th><th>(<a href="http://www.fileformat.info/info/unicode/char/009A/">U+009A</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th> </th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A0/">U+00A0</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>ª</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00AA/">U+00AA</a>)</th><td>cp037, cp273, cp500, cp1026, cp1140</td>
<tr><th>‌</th><th>³</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B3/">U+00B3</a>)</th><td>cp869</td>
<tr><th>‌</th><th>Ü</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00DC/">U+00DC</a>)</th><td>cp437, cp775, cp850, cp852, cp857, cp858, cp860, cp861, cp863, cp865</td>
<tr><th>‌</th><th>ö</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F6/">U+00F6</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>š</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0161/">U+0161</a>)</th><td>cp1250, cp1252, cp1254, palmos</td>
<tr><th>‌</th><th>γ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B3/">U+03B3</a>)</th><td>cp737</td>
<tr><th>‌</th><th>η</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B7/">U+03B7</a>)</th><td>cp875</td>
<tr><th>‌</th><th>Ъ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/042A/">U+042A</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>љ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0459/">U+0459</a>)</th><td>cp1251, kz1048</td>
<tr><th>‌</th><th>џ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/045F/">U+045F</a>)</th><td>cp855</td>
<tr><th>‌</th><th>ҡ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04A1/">U+04A1</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ת</th><th>(<a href="http://www.fileformat.info/info/unicode/char/05EA/">U+05EA</a>)</th><td>cp856, cp862</td>
<tr><th>‌</th><th>أ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0623/">U+0623</a>)</th><td>cp720</td>
<tr><th>‌</th><th>ڑ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0691/">U+0691</a>)</th><td>cp1256</td>
<tr><th>‌</th><th>ﻸ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/FEF8/">U+FEF8</a>)</th><td>cp864</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp424, cp874, cp1253, cp1255, cp1257, cp1258, koi8_t</td>
</table></p>
<h3><a name="9b">•</a><a name="0x9b"> </a><a href="#9b">0x9b</a></h3>
<p><table>
<tr><th>‌</th><th>›</th><th>(<a href="http://www.fileformat.info/info/unicode/char/009B/">U+009B</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, palmos, tis_620</td>
<tr><th>‌</th><th>¢</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A2/">U+00A2</a>)</th><td>cp437, cp860, cp862, cp863</td>
<tr><th>‌</th><th>¦</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A6/">U+00A6</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>º</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00BA/">U+00BA</a>)</th><td>cp037, cp273, cp500, cp1026, cp1140</td>
<tr><th>‌</th><th>õ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F5/">U+00F5</a>)</th><td>mac_croatian, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>÷</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F7/">U+00F7</a>)</th><td>mac_arabic, mac_farsi</td>
<tr><th>‌</th><th>ø</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F8/">U+00F8</a>)</th><td>cp775, cp850, cp857, cp858, cp861, cp865</td>
<tr><th>‌</th><th>Ť</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0164/">U+0164</a>)</th><td>cp852</td>
<tr><th>‌</th><th>ά</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03AC/">U+03AC</a>)</th><td>cp869</td>
<tr><th>‌</th><th>δ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B4/">U+03B4</a>)</th><td>cp737</td>
<tr><th>‌</th><th>θ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B8/">U+03B8</a>)</th><td>cp875</td>
<tr><th>‌</th><th>Џ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/040F/">U+040F</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Ы</th><th>(<a href="http://www.fileformat.info/info/unicode/char/042B/">U+042B</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ӣ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04E3/">U+04E3</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ؤ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0624/">U+0624</a>)</th><td>cp720</td>
<tr><th>‌</th><th>›</th><th>(<a href="http://www.fileformat.info/info/unicode/char/203A/">U+203A</a>)</th><td>cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, koi8_t, kz1048</td>
<tr><th>‌</th><th>⌡</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2321/">U+2321</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp424, cp856, cp864, cp874</td>
</table></p>
<h3><a name="9c">•</a><a name="0x9c"> </a><a href="#9c">0x9c</a></h3>
<p><table>
<tr><th>‌</th><th>œ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/009C/">U+009C</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>£</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A3/">U+00A3</a>)</th><td>cp437, cp720, cp775, cp850, cp856, cp857, cp858, cp860, cp861, cp862, cp863, cp865, cp869</td>
<tr><th>‌</th><th>°</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B0/">U+00B0</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>æ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E6/">U+00E6</a>)</th><td>cp037, cp273, cp500, cp1026, cp1140</td>
<tr><th>‌</th><th>ú</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00FA/">U+00FA</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>œ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0153/">U+0153</a>)</th><td>cp1252, cp1254, cp1256, cp1258, palmos</td>
<tr><th>‌</th><th>ś</th><th>(<a href="http://www.fileformat.info/info/unicode/char/015B/">U+015B</a>)</th><td>cp1250</td>
<tr><th>‌</th><th>ť</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0165/">U+0165</a>)</th><td>cp852</td>
<tr><th>‌</th><th>ε</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B5/">U+03B5</a>)</th><td>cp737</td>
<tr><th>‌</th><th>ι</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B9/">U+03B9</a>)</th><td>cp875</td>
<tr><th>‌</th><th>Ь</th><th>(<a href="http://www.fileformat.info/info/unicode/char/042C/">U+042C</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ю</th><th>(<a href="http://www.fileformat.info/info/unicode/char/044E/">U+044E</a>)</th><td>cp855</td>
<tr><th>‌</th><th>њ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/045A/">U+045A</a>)</th><td>cp1251, kz1048</td>
<tr><th>‌</th><th>ң</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04A3/">U+04A3</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>€</th><th>(<a href="http://www.fileformat.info/info/unicode/char/20AC/">U+20AC</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp424, cp864, cp874, cp1253, cp1255, cp1257, koi8_t</td>
</table></p>
<h3><a name="9d">•</a><a name="0x9d"> </a><a href="#9d">0x9d</a></h3>
<p><table>
<tr><th>‌</th><th></th><th>(<a href="http://www.fileformat.info/info/unicode/char/009D/">U+009D</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, palmos, tis_620</td>
<tr><th>‌</th><th>¥</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A5/">U+00A5</a>)</th><td>cp437, cp862</td>
<tr><th>‌</th><th>¯</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00AF/">U+00AF</a>)</th><td>cp1257</td>
<tr><th>‌</th><th>²</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B2/">U+00B2</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>¸</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B8/">U+00B8</a>)</th><td>cp037, cp273, cp424, cp500, cp1026, cp1140</td>
<tr><th>‌</th><th>Ø</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00D8/">U+00D8</a>)</th><td>cp775, cp850, cp857, cp858, cp861, cp865</td>
<tr><th>‌</th><th>Ù</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00D9/">U+00D9</a>)</th><td>cp860, cp863</td>
<tr><th>‌</th><th>ù</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F9/">U+00F9</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>Ě</th><th>(<a href="http://www.fileformat.info/info/unicode/char/011A/">U+011A</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>Ł</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0141/">U+0141</a>)</th><td>cp852</td>
<tr><th>‌</th><th>ť</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0165/">U+0165</a>)</th><td>cp1250</td>
<tr><th>‌</th><th>έ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03AD/">U+03AD</a>)</th><td>cp869</td>
<tr><th>‌</th><th>ζ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B6/">U+03B6</a>)</th><td>cp737</td>
<tr><th>‌</th><th>κ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03BA/">U+03BA</a>)</th><td>cp875</td>
<tr><th>‌</th><th>Э</th><th>(<a href="http://www.fileformat.info/info/unicode/char/042D/">U+042D</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>Ю</th><th>(<a href="http://www.fileformat.info/info/unicode/char/042E/">U+042E</a>)</th><td>cp855</td>
<tr><th>‌</th><th>ќ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/045C/">U+045C</a>)</th><td>cp1251</td>
<tr><th>‌</th><th>қ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/049B/">U+049B</a>)</th><td>kz1048, ptcp154</td>
<tr><th>‌</th><th>إ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0625/">U+0625</a>)</th><td>cp720</td>
<tr><th>‌</th><th>‌</th><th>(<a href="http://www.fileformat.info/info/unicode/char/200C/">U+200C</a>)</th><td>cp1256</td>
<tr><th>‌</th><th>ﻻ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/FEFB/">U+FEFB</a>)</th><td>cp864</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp856, cp874, cp1252, cp1253, cp1254, cp1255, cp1258, koi8_t</td>
</table></p>
<h3><a name="9e">•</a><a name="0x9e"> </a><a href="#9e">0x9e</a></h3>
<p><table>
<tr><th>‌</th><th>ž</th><th>(<a href="http://www.fileformat.info/info/unicode/char/009E/">U+009E</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, palmos, tis_620</td>
<tr><th>‌</th><th>·</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B7/">U+00B7</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>Æ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C6/">U+00C6</a>)</th><td>cp037, cp273, cp500, cp1026, cp1140</td>
<tr><th>‌</th><th>×</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00D7/">U+00D7</a>)</th><td>cp775, cp850, cp852, cp856, cp858</td>
<tr><th>‌</th><th>Û</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00DB/">U+00DB</a>)</th><td>cp863</td>
<tr><th>‌</th><th>û</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00FB/">U+00FB</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>ě</th><th>(<a href="http://www.fileformat.info/info/unicode/char/011B/">U+011B</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>Ş</th><th>(<a href="http://www.fileformat.info/info/unicode/char/015E/">U+015E</a>)</th><td>cp857</td>
<tr><th>‌</th><th>ž</th><th>(<a href="http://www.fileformat.info/info/unicode/char/017E/">U+017E</a>)</th><td>cp1250, cp1252</td>
<tr><th>‌</th><th>˛</th><th>(<a href="http://www.fileformat.info/info/unicode/char/02DB/">U+02DB</a>)</th><td>cp1257</td>
<tr><th>‌</th><th>ή</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03AE/">U+03AE</a>)</th><td>cp869</td>
<tr><th>‌</th><th>η</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B7/">U+03B7</a>)</th><td>cp737</td>
<tr><th>‌</th><th>λ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03BB/">U+03BB</a>)</th><td>cp875</td>
<tr><th>‌</th><th>Ю</th><th>(<a href="http://www.fileformat.info/info/unicode/char/042E/">U+042E</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>ъ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/044A/">U+044A</a>)</th><td>cp855</td>
<tr><th>‌</th><th>ћ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/045B/">U+045B</a>)</th><td>cp1251</td>
<tr><th>‌</th><th>һ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04BB/">U+04BB</a>)</th><td>kz1048, ptcp154</td>
<tr><th>‌</th><th>ئ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0626/">U+0626</a>)</th><td>cp720</td>
<tr><th>‌</th><th>‍</th><th>(<a href="http://www.fileformat.info/info/unicode/char/200D/">U+200D</a>)</th><td>cp1256</td>
<tr><th>‌</th><th>₧</th><th>(<a href="http://www.fileformat.info/info/unicode/char/20A7/">U+20A7</a>)</th><td>cp437, cp860, cp861, cp862, cp865</td>
<tr><th>‌</th><th>ﻼ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/FEFC/">U+FEFC</a>)</th><td>cp864</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp424, cp874, cp1253, cp1254, cp1255, cp1258, koi8_t</td>
</table></p>
<h3><a name="9f">•</a><a name="0x9f"> </a><a href="#9f">0x9f</a></h3>
<p><table>
<tr><th>‌</th><th>Ÿ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/009F/">U+009F</a>)</th><td>cp1006, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, latin_1, tis_620</td>
<tr><th>‌</th><th>¤</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A4/">U+00A4</a>)</th><td>cp037, cp273, cp424, cp500, cp775, cp1026</td>
<tr><th>‌</th><th>Ó</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00D3/">U+00D3</a>)</th><td>cp860</td>
<tr><th>‌</th><th>÷</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F7/">U+00F7</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th>ü</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00FC/">U+00FC</a>)</th><td>mac_arabic, mac_croatian, mac_farsi, mac_greek, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>č</th><th>(<a href="http://www.fileformat.info/info/unicode/char/010D/">U+010D</a>)</th><td>cp852</td>
<tr><th>‌</th><th>ş</th><th>(<a href="http://www.fileformat.info/info/unicode/char/015F/">U+015F</a>)</th><td>cp857</td>
<tr><th>‌</th><th>Ÿ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0178/">U+0178</a>)</th><td>cp1252, cp1254, cp1258, palmos</td>
<tr><th>‌</th><th>ź</th><th>(<a href="http://www.fileformat.info/info/unicode/char/017A/">U+017A</a>)</th><td>cp1250</td>
<tr><th>‌</th><th>ƒ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0192/">U+0192</a>)</th><td>cp437, cp850, cp858, cp861, cp862, cp863, cp865</td>
<tr><th>‌</th><th>ί</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03AF/">U+03AF</a>)</th><td>cp869</td>
<tr><th>‌</th><th>θ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B8/">U+03B8</a>)</th><td>cp737</td>
<tr><th>‌</th><th>μ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03BC/">U+03BC</a>)</th><td>cp875</td>
<tr><th>‌</th><th>Ъ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/042A/">U+042A</a>)</th><td>cp855</td>
<tr><th>‌</th><th>Я</th><th>(<a href="http://www.fileformat.info/info/unicode/char/042F/">U+042F</a>)</th><td>cp866, cp1125, mac_cyrillic</td>
<tr><th>‌</th><th>џ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/045F/">U+045F</a>)</th><td>cp1251, kz1048</td>
<tr><th>‌</th><th>ҹ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04B9/">U+04B9</a>)</th><td>ptcp154</td>
<tr><th>‌</th><th>ا</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0627/">U+0627</a>)</th><td>cp720</td>
<tr><th>‌</th><th>ں</th><th>(<a href="http://www.fileformat.info/info/unicode/char/06BA/">U+06BA</a>)</th><td>cp1256</td>
<tr><th>‌</th><th>€</th><th>(<a href="http://www.fileformat.info/info/unicode/char/20AC/">U+20AC</a>)</th><td>cp1140</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp856, cp864, cp874, cp1253, cp1255, cp1257, koi8_t</td>
</table></p>
<h3><a name="a0">•</a><a name="0xa0"> </a><a href="#a0">0xa0</a></h3>
<p><table>
<tr><th>‌</th><th>␠</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0020/">U+0020</a>)</th><td>mac_arabic, mac_farsi</td>
<tr><th>‌</th><th> </th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A0/">U+00A0</a>)</th><td>cp864, cp874, cp1006, cp1250, cp1251, cp1252, cp1253, cp1254, cp1255, cp1256, cp1257, cp1258, hp_roman8, iso8859_2, iso8859_3, iso8859_4, iso8859_5, iso8859_6, iso8859_7, iso8859_8, iso8859_9, iso8859_10, iso8859_11, iso8859_13, iso8859_14, iso8859_15, iso8859_16, kz1048, latin_1, palmos, ptcp154</td>
<tr><th>‌</th><th>¦</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A6/">U+00A6</a>)</th><td>cp863</td>
<tr><th>‌</th><th>´</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B4/">U+00B4</a>)</th><td>cp875</td>
<tr><th>‌</th><th>µ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B5/">U+00B5</a>)</th><td>cp037, cp273, cp424, cp500, cp1026, cp1140</td>
<tr><th>‌</th><th>Ý</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00DD/">U+00DD</a>)</th><td>mac_iceland</td>
<tr><th>‌</th><th>á</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00E1/">U+00E1</a>)</th><td>cp437, cp850, cp852, cp857, cp858, cp860, cp861, cp862, cp865</td>
<tr><th>‌</th><th>Ā</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0100/">U+0100</a>)</th><td>cp775</td>
<tr><th>‌</th><th>ι</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03B9/">U+03B9</a>)</th><td>cp737</td>
<tr><th>‌</th><th>ϊ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03CA/">U+03CA</a>)</th><td>cp869</td>
<tr><th>‌</th><th>а</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0430/">U+0430</a>)</th><td>cp855, cp866, cp1125</td>
<tr><th>‌</th><th>ب</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0628/">U+0628</a>)</th><td>cp720</td>
<tr><th>‌</th><th>†</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2020/">U+2020</a>)</th><td>mac_croatian, mac_cyrillic, mac_greek, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>═</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2550/">U+2550</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp856, koi8_t, tis_620</td>
</table></p>
<h3><a name="a1">•</a><a name="0xa1"> </a><a href="#a1">0xa1</a></h3>
<p><table>
<tr><th>‌</th><th>!</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0021/">U+0021</a>)</th><td>mac_arabic, mac_farsi</td>
<tr><th>‌</th><th>~</th><th>(<a href="http://www.fileformat.info/info/unicode/char/007E/">U+007E</a>)</th><td>cp037, cp424, cp500, cp875, cp1140</td>
<tr><th>‌</th><th>¡</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A1/">U+00A1</a>)</th><td>cp1252, cp1254, cp1255, cp1258, iso8859_9, iso8859_15, latin_1, palmos</td>
<tr><th>‌</th><th>­</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00AD/">U+00AD</a>)</th><td>cp864</td>
<tr><th>‌</th><th>°</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B0/">U+00B0</a>)</th><td>mac_croatian, mac_cyrillic, mac_iceland, mac_latin2, mac_roman, mac_romanian, mac_turkish</td>
<tr><th>‌</th><th>´</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00B4/">U+00B4</a>)</th><td>cp863</td>
<tr><th>‌</th><th>À</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C0/">U+00C0</a>)</th><td>hp_roman8</td>
<tr><th>‌</th><th>ß</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00DF/">U+00DF</a>)</th><td>cp273</td>
<tr><th>‌</th><th>í</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00ED/">U+00ED</a>)</th><td>cp437, cp850, cp852, cp857, cp858, cp860, cp861, cp862, cp865</td>
<tr><th>‌</th><th>ö</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F6/">U+00F6</a>)</th><td>cp1026</td>
<tr><th>‌</th><th>Ą</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0104/">U+0104</a>)</th><td>iso8859_2, iso8859_4, iso8859_10, iso8859_16</td>
<tr><th>‌</th><th>Ħ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0126/">U+0126</a>)</th><td>iso8859_3</td>
<tr><th>‌</th><th>Ī</th><th>(<a href="http://www.fileformat.info/info/unicode/char/012A/">U+012A</a>)</th><td>cp775</td>
<tr><th>‌</th><th>ˇ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/02C7/">U+02C7</a>)</th><td>cp1250</td>
<tr><th>‌</th><th>΅</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0385/">U+0385</a>)</th><td>cp1253</td>
<tr><th>‌</th><th>ΐ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0390/">U+0390</a>)</th><td>cp869</td>
<tr><th>‌</th><th>Γ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0393/">U+0393</a>)</th><td>mac_greek</td>
<tr><th>‌</th><th>κ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/03BA/">U+03BA</a>)</th><td>cp737</td>
<tr><th>‌</th><th>Ё</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0401/">U+0401</a>)</th><td>iso8859_5</td>
<tr><th>‌</th><th>Ў</th><th>(<a href="http://www.fileformat.info/info/unicode/char/040E/">U+040E</a>)</th><td>cp1251, ptcp154</td>
<tr><th>‌</th><th>А</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0410/">U+0410</a>)</th><td>cp855</td>
<tr><th>‌</th><th>б</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0431/">U+0431</a>)</th><td>cp866, cp1125</td>
<tr><th>‌</th><th>Ұ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04B0/">U+04B0</a>)</th><td>kz1048</td>
<tr><th>‌</th><th>ӯ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/04EF/">U+04EF</a>)</th><td>koi8_t</td>
<tr><th>‌</th><th>،</th><th>(<a href="http://www.fileformat.info/info/unicode/char/060C/">U+060C</a>)</th><td>cp1256</td>
<tr><th>‌</th><th>ة</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0629/">U+0629</a>)</th><td>cp720</td>
<tr><th>‌</th><th>۰</th><th>(<a href="http://www.fileformat.info/info/unicode/char/06F0/">U+06F0</a>)</th><td>cp1006</td>
<tr><th>‌</th><th>ก</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0E01/">U+0E01</a>)</th><td>cp874, iso8859_11, tis_620</td>
<tr><th>‌</th><th>Ḃ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/1E02/">U+1E02</a>)</th><td>iso8859_14</td>
<tr><th>‌</th><th>‘</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2018/">U+2018</a>)</th><td>iso8859_7</td>
<tr><th>‌</th><th>”</th><th>(<a href="http://www.fileformat.info/info/unicode/char/201D/">U+201D</a>)</th><td>iso8859_13</td>
<tr><th>‌</th><th>║</th><th>(<a href="http://www.fileformat.info/info/unicode/char/2551/">U+2551</a>)</th><td>koi8_r, koi8_u</td>
<tr><th>‌</th><th></th><th>(undefined)</th><td>cp856, cp1257, iso8859_6, iso8859_8</td>
</table></p>
<h3><a name="a2">•</a><a name="0xa2"> </a><a href="#a2">0xa2</a></h3>
<p><table>
<tr><th>‌</th><th>"</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0022/">U+0022</a>)</th><td>mac_arabic, mac_farsi</td>
<tr><th>‌</th><th>s</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0073/">U+0073</a>)</th><td>cp037, cp273, cp424, cp500, cp875, cp1026, cp1140</td>
<tr><th>‌</th><th>¢</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00A2/">U+00A2</a>)</th><td>cp1252, cp1254, cp1255, cp1256, cp1257, cp1258, iso8859_8, iso8859_9, iso8859_13, iso8859_15, latin_1, mac_croatian, mac_iceland, mac_roman, mac_romanian, mac_turkish, palmos</td>
<tr><th>‌</th><th>Â</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00C2/">U+00C2</a>)</th><td>hp_roman8</td>
<tr><th>‌</th><th>ó</th><th>(<a href="http://www.fileformat.info/info/unicode/char/00F3/">U+00F3</a>)</th><td>cp437, cp775, cp850, cp852, cp857, cp858, cp860, cp861, cp862, cp863, cp865</td>
<tr><th>‌</th><th>ą</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0105/">U+0105</a>)</th><td>iso8859_16</td>
<tr><th>‌</th><th>Ē</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0112/">U+0112</a>)</th><td>iso8859_10</td>
<tr><th>‌</th><th>Ę</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0118/">U+0118</a>)</th><td>mac_latin2</td>
<tr><th>‌</th><th>ĸ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0138/">U+0138</a>)</th><td>iso8859_4</td>
<tr><th>‌</th><th>˘</th><th>(<a href="http://www.fileformat.info/info/unicode/char/02D8/">U+02D8</a>)</th><td>cp1250, iso8859_2, iso8859_3</td>
<tr><th>‌</th><th>Ά</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0386/">U+0386</a>)</th><td>cp1253</td>
<tr><th>‌</th><th>Δ</th><th>(<a href="http://www.fileformat.info/info/unicode/char/0394/">U+0394</a>)</th><td>mac_greek</td>