Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ display(7) — AIX/RT 2.2.1

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

conv

NLchar

NLescstr, NLunescstr, NLflatstr

fonts

data stream

hft

key-

board

display symbols


Purpose


     Defines the  set of  character symbols  that can  be dis-
     played on an HFT display device in KSR mode.

Description

     Each character code passed in KSR data is translated into
     one of 1024 10-bit display symbol codes.  Codes 0 through
     703  (0x2bf)  are  predefined  to be  common  across  all
     virtual  terminals.   Codes   704  (0x2c0)  through  1023
     (0x3ff) are  reserved for user-defined extensions  to the
     display symbol set.  Display  symbols 0 through 31 (0x1f)
     represent control  functions and have no  graphic repres-
     entations.

     Code pages P0,  P1, and P2 contain all  of the predefined
     characters.   The  first  32  code  points  of  each  are
     reserved  for control  characters and  are common  to all
     three code  pages.  The remaining characters  are divided
     between P0, P1, and P2.  Thus, each code page can have up
     to 224 distinct graphic characters.

     In addition to the predefined  code pages P0, P1, and P2,
     you  can define  two  code pages  called  Unique One  and
     Unique  Two.  See  "fonts,"   "data stream,"  and "Recon-
     figure (HFRCONF)" for information you need to define such
     character sets.

     The columns of the following tables represent:

     Font Position
        The position of the  graphic display symbol within the
        font definition.

     Code Page/Code Point
        The code page of the symbol and the offset within that
        code page.

     char String
        The internal hexadecimal representation as a string of
        type  char,  including  the single-shift  control  for
        characters in code pages other than P0.

     NLchar Value
        The value of the NLchar  data type that corresponds to
        the character.   The values 256--287 and  512--543 are
        not listed  in this  table because they  correspond to
        control codes in  code pages P1 and  P2.  See "NLchar"
        for more information about this data type.

     NCesc Esc Seq
        The  ASCII character  or escape  sequence that  corre-
        sponds to the character  after being translated by the
        NCesc macro.  The NLchar values 256--287 and 512--543,

        which correspond to control codes in code pages P1 and
        P2, translate  to "\<  >", where two  space characters
        (0x20)  appear  between  the angle  brackets.   NLchar
        values outside  the valid range translate  to "\<??>".
        See "conv"  and "NLescstr, NLunescstr,  NLflatstr" for
        related information.

     The first  table begins at  font position 32  because the
     first 32 positions are  reserved for the single-byte con-
     trols.  The IBM PC ASCII  graphic symbols for positions 1
     through 31 are  located at positions 257  through 287 and
     are not  in any  way associated with  single-byte control
     functions.

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

32        Space                        P0 32 (0x20)   0x20    32      Space
33        !  Exclamation Point         P0 33 (0x21)   0x21    33      "!"
34        "  Double Quote              P0 34 (0x22)   0x22    34      """
35        #  Number Sign               P0 35 (0x23)   0x23    35      "#"
36        $  Dollar Sign               P0 36 (0x24)   0x24    36      "$"
37        %  Percent Sign              P0 37 (0x25)   0x25    37      "%"
38        &  Ampersand                 P0 38 (0x26)   0x26    38      "&"
39        '  Apostrophe, Acute Accent  P0 39 (0x27)   0x27    39      "'"
40        (  Left Parenthesis          P0 40 (0x28)   0x28    40      "("
41        )  Right Parenthesis         P0 41 (0x29)   0x29    41      ")"
42        *  Asterisk                  P0 42 (0x2a)   0x2a    42      "*"
43        +  Plus Sign                 P0 43 (0x2b)   0x2b    43      "+"
44        ,  Comma                     P0 44 (0x2c)   0x2c    44      ","
45        -  Hyphen, Minus Sign        P0 45 (0x2d)   0x2d    45      "-"
46        .  Period                    P0 46 (0x2e)   0x2e    46      "."
47        /  Slash                     P0 47 (0x2f)   0x2f    47      "/"
48        0  Zero                      P0 48 (0x30)   0x30    48      "0"
49        1  One                       P0 49 (0x31)   0x31    49      "1"
50        2  Two                       P0 50 (0x32)   0x32    50      "2"
51        3  Three                     P0 51 (0x33)   0x33    51      "3"
52        4  Four                      P0 52 (0x34)   0x34    52      "4"
53        5  Five                      P0 53 (0x35)   0x35    53      "5"
54        6  Six                       P0 54 (0x36)   0x36    54      "6"
55        7  Seven                     P0 55 (0x37)   0x37    55      "7"
56        8  Eight                     P0 56 (0x38)   0x38    56      "8"
57        9  Nine                      P0 57 (0x39)   0x39    57      "9"
58        :  Colon                     P0 58 (0x3a)   0x3a    58      ":"
59        ;  Semicolon                 P0 59 (0x3b)   0x3b    59      ";"
60        <  Less Than Sign            P0 60 (0x3c)   0x3c    60      "<"
61        =  Equal Sign                P0 61 (0x3d)   0x3d    61      "="
62        >  Greater Than Sign         P0 62 (0x3e)   0x3e    62      ">"
63        ?  Question Mark             P0 63 (0x3f)   0x3f    63      "?"
64        @  At Sign                   P0 64 (0x40)   0x40    64      "@"
65        A  a Uppercase               P0 65 (0x41)   0x41    65      "A"
66        B  b Uppercase               P0 66 (0x42)   0x42    66      "B"
67        C  c Uppercase               P0 67 (0x43)   0x43    67      "C"
68        D  d Uppercase               P0 68 (0x44)   0x44    68      "D"

Figure  7-6 (Part 1 of 6).  Code Page P0

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

69        E  e Uppercase               P0 69 (0x45)   0x45    69      "E"
70        F  f Uppercase               P0 70 (0x46)   0x46    70      "F"
71        G  g Uppercase               P0 71 (0x47)   0x47    71      "G"
72        H  h Uppercase               P0 72 (0x48)   0x48    72      "H"
73        I  i Uppercase               P0 73 (0x49)   0x49    73      "I"
74        J  j Uppercase               P0 74 (0x4a)   0x4a    74      "J"
75        K  k Uppercase               P0 75 (0x4b)   0x4b    75      "K"
76        L  l Uppercase               P0 76 (0x4c)   0x4c    76      "L"
77        M  m Uppercase               P0 77 (0x4d)   0x4d    77      "M"
78        N  n Uppercase               P0 78 (0x4e)   0x4e    78      "N"
79        O  o Uppercase               P0 79 (0x4f)   0x4f    79      "O"
80        P  p Uppercase               P0 80 (0x50)   0x50    80      "P"
81        Q  q Uppercase               P0 81 (0x51)   0x51    81      "Q"
82        R  r Uppercase               P0 82 (0x52)   0x52    82      "R"
83        S  s Uppercase               P0 83 (0x53)   0x53    83      "S"
84        T  t Uppercase               P0 84 (0x54)   0x54    84      "T"
85        U  u Uppercase               P0 85 (0x55)   0x55    85      "U"
86        V  v Uppercase               P0 86 (0x56)   0x56    86      "V"
87        W  w Uppercase               P0 87 (0x57)   0x57    87      "W"
88        X  x Uppercase               P0 88 (0x58)   0x58    88      "X"
89        Y  y Uppercase               P0 89 (0x59)   0x59    89      "Y"
90        Z  z Uppercase               P0 90 (0x5a)   0x5a    90      "Z"
91        [  Left Bracket              P0 91 (0x5b)   0x5b    91      "["
92        \  Reverse Slash             P0 92 (0x5c)   0x5c    92      "\"
93        ]  Right Bracket             P0 93 (0x5d)   0x5d    93      "]"
94        ^  Circumflex   Accent,  Up  P0 94 (0x5e)   0x5e    94      "^"
             Arrow
95        _  Underline, Low Line       P0 95 (0x5f)   0x5f    95      "_"
96
             Single Quote
97        a  a Lowercase               P0 97 (0x61)   0x61    97      "a"
98        b  b Lowercase               P0 98 (0x62)   0x62    98      "b"
99        c  c Lowercase               P0 99 (0x63)   0x63    99      "c"
100       d  d Lowercase               P0 100 (0x64)  0x64    100     "d"
101       e  e Lowercase               P0 101 (0x65)  0x65    101     "e"
102       f  f Lowercase               P0 102 (0x66)  0x66    102     "f"
103       g  g Lowercase               P0 103 (0x67)  0x67    103     "g"
104       h  h Lowercase               P0 104 (0x68)  0x68    104     "h"
105       i  i Lowercase               P0 105 (0x69)  0x69    105     "i"
106       j  j Lowercase               P0 106 (0x6a)  0x6a    106     "j"
107       k  k Lowercase               P0 107 (0x6b)  0x6b    107     "k"
108       l  l Lowercase               P0 108 (0x6c)  0x6c    108     "l"
109       m  m Lowercase               P0 109 (0x6d)  0x6d    109     "m"
110       n  n Lowercase               P0 110 (0x6e)  0x6e    110     "n"
111       o  o Lowercase               P0 111 (0x6f)  0x6f    111     "o"
112       p  p Lowercase               P0 112 (0x70)  0x70    112     "p"
113       q  q Lowercase               P0 113 (0x71)  0x71    113     "q"
114       r  r Lowercase               P0 114 (0x72)  0x72    114     "r"
115       s  s Lowercase               P0 115 (0x73)  0x73    115     "s"
116       t  t Lowercase               P0 116 (0x74)  0x74    116     "t"
117       u  u Lowercase               P0 117 (0x75)  0x75    117     "u"

Figure  7-6 (Part 2 of 6).  Code Page P0

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

118       v  v Lowercase               P0 118 (0x76)  0x76    118     "v"
119       w  w Lowercase               P0 119 (0x77)  0x77    119     "w"
120       x  x Lowercase               P0 120 (0x78)  0x78    120     "x"
121       y  y Lowercase               P0 121 (0x79)  0x79    121     "y"
122       z  z Lowercase               P0 122 (0x7a)  0x7a    122     "z"
123       {  Left Brace                P0 123 (0x7b)  0x7b    123     "{"
124       |  Logical OR                P0 124 (0x7c)  0x7c    124     "|"
125       }  Right Brace               P0 125 (0x7d)  0x7d    125     "}"
126       ~  Tilde Accent              P0 126 (0x7e)  0x7e    126     "~"
127       W  Del                       P0 127 (0x7f)  0x7f    127     " "
128         c Cedilla Capital         P0 128 (0x80)  0x80    128    "\<C,>"
129         u Umlaut Small            P0 129 (0x81)  0x81    129    "\<u">"
130         e Acute Small             P0 130 (0x82)  0x82    130    "\<e'>"
131         a Circumflex Small        P0 131 (0x83)  0x83    131    "\<a>"
132         a Umlaut Small            P0 132 (0x84)  0x84    132    "\<a">"
133         a Grave Small             P0 133 (0x85)  0x85    133    "\<a->"
134         a Overcircle Small        P0 134 (0x86)  0x86    134    "\<ao>"
135         c Cedilla Small           P0 135 (0x87)  0x87    135    "\<c,>"
136         e Circumflex Small        P0 136 (0x88)  0x88    136    "\<e>"
137         e Umlaut Small            P0 137 (0x89)  0x89    137    "\<e">"
138         e Grave Small             P0 138 (0x8a)  0x8a    138    "\<e->"
139         i Umlaut Small            P0 139 (0x8b)  0x8b    139    "\<i">"
140       <  i Circumflex Small        P0 140 (0x8c)  0x8c    140    "\<i>"
141         i Grave Small             P0 141 (0x8d)  0x8d    141    "\<i->"
142         a Umlaut Capital          P0 142 (0x8e)  0x8e    142    "\<A">"
143         a Overcircle Capital      P0 143 (0x8f)  0x8f    143    "\<Ao>"
144       é  e Acute Capital           P0 144 (0x90)  0x90    144    "\<E'>"
145         ae Diphthong Small        P0 145 (0x91)  0x91    145    "\<ae>"
146         ae Diphthong Capital      P0 146 (0x92)  0x92    146    "\<AE>"
147         o Circumflex Small        P0 147 (0x93)  0x93    147    "\<o>"
148         o Umlaut Small            P0 148 (0x94)  0x94    148    "\<o">"
149         o Grave Small             P0 149 (0x95)  0x95    149    "\<o->"
150         u Circumflex Small        P0 150 (0x96)  0x96    150    "\<u>"
151         u Grave Small             P0 151 (0x97)  0x97    151    "\<u->"
152         y Umlaut Small            P0 152 (0x98)  0x98    152    "\<y">"
153         o Umlaut Capital          P0 153 (0x99)  0x99    153    "\<O">"
154         u Umlaut Capital          P0 154 (0x9a)  0x9a    154    "\<U">"
155         o Slash Small             P0 155 (0x9b)  0x9b    155    "\<o/>"
156         English Pound Sign        P0 156 (0x9c)  0x9c    156    "\<L=>"
157         o Slash Capital           P0 157 (0x9d)  0x9d    157    "\<O/>"
158         Multiplication Sign       P0 158 (0x9e)  0x9e    158    "\<x>"
159         Florin Sign               P0 159 (0x9f)  0x9f    159    "\<f>"
160         a Acute Small             P0 160 (0xa0)  0xa0    160    "\<a'>"
161         i Acute Small             P0 161 (0xa1)  0xa1    161    "\<i'>"
162         o Acute Small             P0 162 (0xa2)  0xa2    162    "\<o'>"
163         u Acute Small             P0 163 (0xa3)  0xa3    163    "\<u'>"
164         n Tilde Small             P0 164 (0xa4)  0xa4    164    "\<n~>"
165         n Tilde Capital           P0 165 (0xa5)  0xa5    165    "\<N~>"
166         Feminine Sign             P0 166 (0xa6)  0xa6    166    "\<-a>"
167         Masculine Sign            P0 167 (0xa7)  0xa7    167    "\<-o>"
168         Inverted Question Mark    P0 168 (0xa8)  0xa8    168    "\<?>"

Figure  7-6 (Part 3 of 6).  Code Page P0

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

169         Registered Trademark      P0 169 (0xa9)  0xa9    169    "\<rO>"
170         Logical Not               P0 170 (0xaa)  0xaa    170    "\<-.>"
171         One Half                  P0 171 (0xab)  0xab    171    "\<12>"
             Sign
172         One Quarter               P0 172 (0xac)  0xac    172    "\<14>"
173         Inverted Exclamation Sign PO 173 (0xad)  0xad    173    "\<!>"
174         Left Angle Quotes         P0 174 (0xae)  0xae    174    "\<{{>"
175         Right Angle Quotes        P0 175 (0xaf)  0xaf    175    "\<}}>"
176         Quarter Hashed            P0 176 (0xb0)  0xb0    176    "\<#1>"
177         Half Hashed               P0 177 (0xb1)  0xb1    177    "\<#2>"
178         Full Hashed               P0 178 (0xb2)  0xb2    178    "\<#3>"
179         Vertical Bar              P0 179 (0xb3)  0xb3    179    "\<S0>"
180         Right Side Middle         P0 180 (0xb4)  0xb4    180    "\<S6>"
181         a Acute Capital           P0 181 (0xb5)  0xb5    181    "\<A'>"
182         a Circumflex Capital      P0 182 (0xb6)  0xb6    182    "\<A>"
183         a Grave Capital           P0 183 (0xb7)  0xb7    183    "\<A->"
184         Copyright Symbol          P0 184 (0xb8)  0xb8    184    "\<cO>"
185         Double Right Side Middle  P0 185 (0xb9)  0xb9    185    "\<D6>"
186       ]  Double Vertical Bar       P0 186 (0xba)  0xba    186    "\<D0>"
187         Double    Upper    Right  P0 187 (0xbb)  0xbb    187    "\<D9>"
             Corner Box
188         Double    Lower    Right  P0 188 (0xbc)  0xbc    188    "\<D3>"
             Corner Box
189       [  Cent Sign                 P0 189 (0xbd)  0xbd    189    "\<c/>"
190         Yen Sign                  P0 190 (0xbe)  0xbe    190    "\<Y=>"
191         Upper Right Corner Box    P0 191 (0xbf)  0xbf    191    "\<S9>"
192         Lower Left Corner Box     P0 192 (0xc0)  0xc0    192    "\<S1>"
193         Bottom Side Middle        P0 193 (0xc1)  0xc1    193    "\<S2>"
194         Top Side Middle           P0 194 (0xc2)  0xc2    194    "\<S8>"
195         Left Side Middle          P0 195 (0xc3)  0xc3    195    "\<S4>"
196         Center Box Bar            P0 196 (0xc4)  0xc4    196    "\<S.>"
197         Intersection              P0 197 (0xc5)  0xc5    197    "\<S5>"
198         a Tilde Small             P0 198 (0xc6)  0xc6    198    "\<a~>"
199         a Tilde Capital           P0 199 (0xc7)  0xc7    199    "\<A~>"
200         Double Lower Left Corner  P0 200 (0xc8)  0xc8    200    "\<D1>"
             Box
201         Double Upper Left Corner  P0 201 (0xc9)  0xc9    201    "\<D7>"
202         Double    Bottom    Side  P0 202 (0xca)  0xca    202    "\<D2>"
             Middle
203         Double Top Side Middle    P0 203 (0xcb)  0xcb    203    "\<D8>"
204         Double Left Side Middle   P0 204 (0xcc)  0xcc    204    "\<D4>"
205         Double Center Box Bar     P0 205 (0xcd)  0xcd    205    "\<D.>"
206         Double Intersection       P0 206 (0xce)  0xce    206    "\<D5>"
207         International   Currency  P0 207 (0xcf)  0xcf    207    "\<o*>"
             Symbol
208         eth Icelandic Small       P0 208 (0xd0)  0xd0    208    "\<d+>"
209         eth Icelandic Capital     P0 209 (0xd1)  0xd1    209    "\<D+>"
210         e Circumflex Capital      P0 210 (0xd2)  0xd2    210    "\<E>"
211         e Umlaut Capital          P0 211 (0xd3)  0xd3    211    "\<E">"
212         e Grave Capital           P0 212 (0xd4)  0xd4    212    "\<E->"

Figure  7-6 (Part 4 of 6).  Code Page P0

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

213         Small i Dotless           P0 213 (0xd5)  0xd5    213    "\<i>"
214         i Acute Capital           P0 214 (0xd6)  0xd6    214    "\<I'>"
215         i Circumflex Capital      P0 215 (0xd7)  0xd7    215    "\<I>"
216         i Umlaut Capital          P0 216 (0xd8)  0xd8    216    "\<I">"
217         Lower Right Corner Box    P0 217 (0xd9)  0xd9    217    "\<S3>"
218         Upper Left Corner Box     P0 218 (0xda)  0xda    218    "\<S7>"
219         Bright Character Cell     P0 219 (0xdb)  0xdb    219    "\<B>"
220         Bright Character  Cell -  P0 220 (0xdc)  0xdc    220    "\<B2>"
             Lower Half
221         Broken Vertical Bar       P0 221 (0xdd)  0xdd    221    "\<BO>"
222         i Grave Capital           P0 222 (0xde)  0xde    222    "\<I->"
223         Bright Character  Cell -  P0 223 (0xdf)  0xdf    223    "\<B8>"
             Upper Half
224         o Acute Capital           P0 224 (0xe0)  0xe0    224    "\<O'>"
225         s Sharp Small             P0 225 (0xe1)  0xe1    225    "\<ss>"
226         o Circumflex Capital      P0 226 (0xe2)  0xe2    226    "\<O>"
227         o grave capital           P0 227 (0xe3)  0xe3    227    "\<O->"
228         o Tilde Small             P0 228 (0xe4)  0xe4    228    "\<o~>"
229         o Tilde Capital           P0 229 (0xe5)  0xe5    229    "\<O~>"
230         Mu Small, Micro Symbol    P0 230 (0xe6)  0xe6    230    "\<&m>"
231         Thorn Icelandic Small     P0 231 (0xe7)  0xe7    231    "\<Ip>"
232         Thorn Icelandic Capital   P0 232 (0xe8)  0xe8    232    "\<IP>"
233         u Acute Capital           P0 233 (0xe9)  0xe9    233    "\<U'>"
234         u Circumflex Capital      P0 234 (0xea)  0xea    234    "\<U>"
235         u Grave Capital           P0 235 (0xeb)  0xeb    235    "\<U->"
236         y Acute Small             P0 236 (0xec)  0xec    236    "\<y'>"
237         y Acute Capital           P0 237 (0xed)  0xed    237    "\<Y'>"
238         Overbar                   P0 238 (0xee)  0xee    238    "\<-->"
239         Acute Accent              P0 239 (0xef)  0xef    239    "\<_'>"
240         Syllable Hyphen           P0 240 (0xf0)  0xf0    240    "\<->"
241         Plus Or Minus Sign        P0 241 (0xf1)  0xf1    241    "\<+->"
242         Double Underscore         P0 242 (0xf2)  0xf2    242    "\<__>"
243         Three Fourths             P0 243 (0xf3)  0xf3    243    "\<34>"
244         Paragraph Symbol          P0 244 (0xf4)  0xf4    244    "\<|P>"
245         Section Symbol            P0 245 (0xf5)  0xf5    245    "\<|S>"
246         Division Sign             P0 246 (0xf6)  0xf6    246    "\<:->"
247         Cedilla Accent            P0 247 (0xf7)  0xf7    247    "\<_,>"
248         Degree   Symbol,   Over-  P0 248 (0xf8)  0xf8    248    "\<o>"
             circle Accent
249         Umlaut Accent             P0 249 (0xf9)  0xf9    249    "\<_">"
250         Middle Dot, Product Dot   P0 250 (0xfa)  0xfa    250    "\<..>"
251         Superscript 1             P0 251 (0xfb)  0xfb    251    "\<1>"
252         Superscript 3             P0 252 (0xfc)  0xfc    252    "\<3>"

Figure  7-6 (Part 5 of 6).  Code Page P0
Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

253         Superscript 2             P0 253 (0xfd)  0xfd    253    "\<2>"
254         Vertical Solid Rectangle  P0 254 (0xfe)  0xfe    254    "\<[]>"
255         Required Space            P0 255 (0xff)  0xff    255    "\<##>"

Figure  7-6 (Part 6 of 6).  Code Page P0

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

256         Spanish Middle Dot        P1 32 (0x20)   0x1fa0  288    "\<_.>"
257         Smiling Face              P1 33 (0x21)   0x1fa1  289    "\<:)>"
258         Dark Smiling Face         P1 34 (0x22)   0x1fa2  290    "\<(:>"
259         Heart                     P1 35 (0x23)   0x1fa3  291    "\<SH>"
260         Diamond                   P1 36 (0x24)   0x1fa4  292    "\<SD>"
261         Club                      P1 37 (0x25)   0x1fa5  293    "\<SC>"
262         Spade                     P1 38 (0x26)   0x1fa6  294    "\<SS>"
263         Bullet                    P1 39 (0x27)   0x1fa7  295    "\<@>"
264         Reverse Video Bullet      P1 40 (0x28)   0x1fa8  296    "\<@#>"
265         Circle                    P1 41 (0x29)   0x1fa9  297    "\<O>"
266         Reverse Video Circle      P1 42 (0x2a)   0x1faa  298    "\<O#>"
267         Male Symbol               P1 43 (0x2b)   0x1fab  299    "\<o%>"
268         Female Symbol             P1 44 (0x2c)   0x1fac  300    "\<o+>"
269         Eighth Note               P1 45 (0x2d)   0x1fad  301    "\<d~>"
270         Sixteenth Note            P1 46 (0x2e)   0x1fae  302    "\<d=>"
271         Sun                       P1 47 (0x2f)   0x1faf  303    "\<*>"
272         Right Solid Triangle      P1 48 (0x30)   0x1fb0  304    "\<#>"
273         Left Solid Triangle       P1 49 (0x31)   0x1fb1  305    "\<##>"
274         Bidirectional   Vertical  P1 50 (0x32)   0x1fb2  306    "\<v>"
             Arrow
275         Double Exclamation Point  P1 51 (0x33)   0x1fb3  307    "\<!!>"
276         Paragraph Symbol          P1 52 (0x34)   0x1fb4  308    "\<|P>"
277         Section symbol            P1 53 (0x35)   0x1fb5  309    "\<|S>"
278         Horizontal   Solid  Rec-  P1 54 (0x36)   0x1fb6  310    "\<#]>"
             tangle
279         Underlined Bidirectional  P1 55 (0x37)   0x1fb7  311    "\<-|>"
             Vertical Arrow
280         Up Arrow                  P1 56 (0x38)   0x1fb8  312    "\<|>"
281         Down Arrow                P1 57 (0x39)   0x1fb9  313    "\<|v>"
282       ]  Right Arrow               P1 58 (0x3a)   0x1fba  314    "\<->"
283         Left Arrow                P1 59 (0x3b)   0x1fbb  315    "\<#->"
284         Diagonally       Flipped  P1 60 (0x3c)   0x1fbc  316    "\<-->"
             Logical Not
285       [  Bidirectional Horizontal  P1 61 (0x3c)   0x1fbd  317    "\<()>"
             Arrow
286         Solid Upward Triangle     P1 62 (0x3e)   0x1fbe  318    "\<#>"
287         Solid Downward Triangle   P1 63 (0x3f)   0x1fbf  319    "\<#v>"
288         a Tilde Small             P1 64 (0x40)   0x1fc0  320    "\<a~>"
289         s Sharp Small             P1 65 (0x41)   0x1fc1  321    "\<ss>"
290         a Circumflex Capital      P1 66 (0x42)   0x1fc2  322    "\<A>"
291         a Grave Capital           P1 67 (0x43)   0x1fc3  323    "\<A->"
292         a Acute Capital           P1 68 (0x44)   0x1fc4  324    "\<A'>"
293         a Tilde Capital           P1 69 (0x45)   0x1fc5  325    "\<A~>"
294         o Slash Small             P1 70 (0x46)   0x1fc6  326    "\<o/>"
295         e Circumflex Capital      P1 71 (0x47)   0x1fc7  327    "\<E>"
296         e Umlaut Capital          P1 72 (0x48)   0x1fc8  328    "\<E">"
297         e Grave Capital           P1 73 (0x49)   0x1fc9  329    "\<E->"
298         i Acute Capital           P1 74 (0x4a)   0x1fca  330    "\<I'>"
299         i Circumflex Capital      P1 75 (0x4b)   0x1fcb  331    "\<I>"
300         i Umlaut Capital          P1 76 (0x4c)   0x1fcc  332    "\<I">"
301         i Grave Capital           P1 77 (0x4d)   0x1fcd  333    "\<I->"

Figure  7-7 (Part 1 of 5).  Code Page P1

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

302         Slashed o Capital         P1 78 (0x4e)   0x1fce  334    "\<O/>"
303         eth Icelandic Small       P1 79 (0x4f)   0x1fcf  335    "\<d+>"
304         y Acute Small             P1 80 (0x50)   0x1fd0  336    "\<y'>"
305         Thorn Icelandic Small     P1 81 (0x51)   0x1fd1  337    "\<Ip>"
306         Cedilla Accent            P1 82 (0x52)   0x1fd2  338    "\<_,>"
307         International   Currency  P1 83 (0x53)   0x1fd3  339    "\<o*>"
             Symbol
308         eth Icelandic Capital     P1 84 (0x54)   0x1fd4  340    "\<D+>"
309         y Acute Capital           P1 85 (0x55)   0x1fd5  341    "\<Y'>"
310         Thorn Icelandic Capital   P1 86 (0x56)   0x1fd6  342    "\<IP>"
311         Registered     Trademark  P1 87 (0x57)   0x1fd7  343    "\<rO>"
             Symbol
312         Three Quarters            P1 88 (0x58)   0x1fd8  344    "\<34>"
313         Overbar  Accent,  Macron  P1 89 (0x59)   0x1fd9  345    "\<-->"
             Accent
314         Umlaut Accent             P1 90 (0x5a)   0x1fda  346    "\<_">"
315         Acute Accent              P1 91 (0x5b)   0x1fdb  347    "\<_'>"
316         Double Underscore         P1 92 (0x5c)   0x1fdc  348    "\<__>"
317         o Tilde Small             P1 93 (0x5d)   0x1fdd  349    "\<o~>"
318         Small i Dotless           P1 94 (0x5e)   0x1fde  350    "\<i>"
319         o Circumflex Capital      P1 95 (0x5f)   0x1fdf  351    "\<O>"
320         o Grave Capital           P1 96 (0x60)   0x1fe0  352    "\<O->"
321         o Acute Capital           P1 97 (0x61)   0x1fe1  353    "\<O'>"
322         o Tilde Capital           P1 98 (0x62)   0x1fe2  354    "\<O~>"
323         Superscript 3             P1 99 (0x63)   0x1fe3  355    "\<3>"
324         u Circumflex Capital      P1 100 (0x64)  0x1fe4  356    "\<U>"
325         u Grave Capital           P1 101 (0x65)  0x1fe5  357    "\<U->"
326         u Acute Capital           P1 102 (0x66)  0x1fe6  358    "\<U'>"
327         a Ogonek Small            P1 103 (0x67)  0x1fe7  359    "\<a,>"
328         e Caron Small             P1 104 (0x68)  0x1fe8  360    "\<ev>"
329         c Caron Small             P1 105 (0x69)  0x1fe9  361    "\<cv>"
330         c Acute Small             P1 106 (0x6a)  0x1fea  362    "\<c'>"
331         e Ogonek Small            P1 107 (0x6b)  0x1feb  363    "\<e,>"
332         u Overcircle Small        P1 108 (0x6c)  0x1fec  364    "\<uo>"
333         d Caron Small             P1 109 (0x6d)  0x1fed  365    "\<dv>"
334         l Acute Small             P1 110 (0x6e)  0x1fee  366    "\<l'>"
335         a Ogonek Capital          P1 111 (0x6f)  0x1fef  367    "\<A,>"
336         e Caron Capital           P1 112 (0x70)  0x1ff0  368    "\<Ev>"
337         c Caron Capital           P1 113 (0x71)  0x1ff1  369    "\<Cv>"
338         c Acute Capital           P1 114 (0x72)  0x1ff2  370    "\<C'>"
339         Caron Accent              P1 115 (0x73)  0x1ff3  371    "\<_v>"
340         e Ogonek Capital          P1 116 (0x74)  0x1ff4  372    "\<E,>"
341         u Overcircle Capital      P1 117 (0x75)  0x1ff5  373    "\<Uo>"
342         d Caron Capital           P1 118 (0x76)  0x1ff6  374    "\<Dv>"
343         l Acute Capital           P1 119 (0x77)  0x1ff7  375    "\<L'>"
344         l Caron Small             P1 120 (0x78)  0x1ff8  376    "\<lv>"
345         n Caron Small             P1 121 (0x79)  0x1ff9  377    "\<nv>"
346         d Stroke Small            P1 122 (0x7a)  0x1ffa  378    "\<d->"
347         r Caron Small             P1 123 (0x7b)  0x1ffb  379    "\<rv>"
348         s Acute Small             P1 124 (0x7c)  0x1ffc  380    "\<s'>"
349         Overcircle Accent         P1 125 (0x7d)  0x1ffd  381    "\<_o>"

Figure  7-7 (Part 2 of 5).  Code Page P1

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

350         l Slash Small             P1 126 (0x7e)  0x1ffe  382    "\<l->"
351         n Acute Small             P1 127 (0x7f)  0x1fff  383    "\<n'>"
352         s Caron Small             P1 128 (0x80)  0x1e80  384    "\<sv>"
353         l Caron Capital           P1 129 (0x81)  0x1e81  385    "\<Lv>"
354         n Caron Capital           P1 130 (0x82)  0x1e82  386    "\<Nv>"
355         r Caron Capital           P1 131 (0x83)  0x1e83  387    "\<Rv>"
356         s Acute Capital           P1 132 (0x84)  0x1e84  388    "\<S'>"
357         Overdot Accent            P1 133 (0x85)  0x1e85  389    "\<.>"
358         z Overdot Small           P1 134 (0x86)  0x1e86  390    "\<z.>"
359         Ogonek Accent             P1 135 (0x87)  0x1e87  391    "\<,,>"
360         z Overdot Capital         P1 136 (0x88)  0x1e88  392    "\<Z.>"
361         z Caron Small             P1 137 (0x89)  0x1e89  393    "\<zv>"
362         z Acute Small             P1 138 (0x8a)  0x1e8a  394    "\<z'>"
363         z Caron Capital           P1 139 (0x8b)  0x1e8b  395    "\<Zv>"
364       <  z Acute Capital           P1 140 (0x8c)  0x1e8c  396    "\<Z'>"
365         l Slash Capital           P1 141 (0x8d)  0x1e8d  397    "\<L->"
366         n Acute Capital           P1 142 (0x8e)  0x1e8e  398    "\<N'>"
367         s Caron Capital           P1 143 (0x8f)  0x1e8f  399    "\<Sv>"
368       é  t Caron Small             P1 144 (0x90)  0x1e90  400    "\<tv>"
369         r Acute Small             P1 145 (0x91)  0x1e91  401    "\<r'>"
370         o Double Acute Small      P1 146 (0x92)  0x1e92  402    "\<o=>"
371         u Double Acute Small      P1 147 (0x93)  0x1e93  403    "\<u=>"
372         t Caron Capital           P1 148 (0x94)  0x1e94  404    "\<Tv>"
373         r Acute Capital           P1 149 (0x95)  0x1e95  405    "\<R'>"
374         o Double Acute Capital    P1 150 (0x96)  0x1e96  406    "\<O=>"
375         u Double Acute Capital    P1 151 (0x97)  0x1e97  407    "\<U=>"
376         a Breve Small             P1 152 (0x98)  0x1e98  408    "\<au>"
377         g Breve Small             P1 153 (0x99)  0x1e99  409    "\<gu>"
378         i Overdot Capital         P1 154 (0x9a)  0x1e9a  410    "\<I.>"
379         a Breve Capital           P1 155 (0x9b)  0x1e9b  411    "\<Au>"
380         g Breve Capital           P1 156 (0x9c)  0x1e9c  412    "\<Gu>"
381         Breve Accent              P1 157 (0x9d)  0x1e9d  413    "\<_u>"
382         Double Acute Accent       P1 158 (0x9e)  0x1e9e  414    "\<_=>"
383         s Cedilla Small           P1 159 (0x9f)  0x1e9f  415    "\<s,>"
384         Liter Symbol              P1 160 (0xa0)  0x1ea0  416    "\<l>"
385         High Comma n Small        P1 161 (0xa1)  0xlea1  417    "\<,n>"
386         s Cedilla Capital         P1 162 (0xa2)  0x1ea2  418    "\<S,>"
387         Macron Accent             P1 163 (0xa3)  0x1ea3  419    "\<_->"
388         t Cedilla Small           P1 164 (0xa4)  0x1ea4  420    "\<t,>"
389         t Cedilla Capital         P1 165 (0xa5)  0xlea5  421    "\<T,>"
390         a Macron Small            P1 166 (0xa6)  0x1ea6  422    "\<a->"
391         a Macron Capital          P1 167 (0xa7)  0x1ea7  423    "\<A->"
392         c Circumflex Small        P1 168 (0xa8)  0x1ea8  424    "\<c>"
393         c Circumflex Capital      P1 169 (0xa9)  0x1ea9  425    "\<C>"
394         High Reverse Solidus      P1 170 (0xaa)  0x1eaa  426    "\<\\>"
395         c Overdot Small           P1 171 (0xab)  0x1eab  427    "\<c.>"
396         c Overdot Capital         P1 172 (0xac)  0x1eac  428    "\<C.>"
397         e Overdot Small           P1 173 (0xad)  0x1ead  429    "\<e.>"
398         e Overdot Capital         P1 174 (0xae)  0x1eae  430    "\<E.>"
399         e Macron Small            P1 175 (0xaf)  0x1eaf  431    "\<e->"

Figure  7-7 (Part 3 of 5).  Code Page P1

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

400         e Macron Capital          P1 176 (0xb0)  0x1eb0  432    "\<E->"
401         g Acute Small             P1 177 (0xb1)  0x1eb1  433    "\<g'>"
402         g Circumflex Small        P1 178 (0xb2)  0x1eb2  434    "\<g>"
403         g Circumflex Capital      P1 179 (0xb3)  0x1eb3  435    "\<G>"
404         g Overdot Small           P1 180 (0xb4)  0x1eb4  436    "\<g.>"
405         g Overdot Capital         P1 181 (0xb5)  0x1eb5  437    "\<G.>"
406         g Cedilla Capital         P1 182 (0xb6)  0x1eb6  438    "\<G,>"
407         h Circumflex Small        P1 183 (0xb7)  0x1eb7  439    "\<h>"
408         h Circumflex Capital      P1 184 (0xb8)  0x1eb8  440    "\<H>"
409         h Stroke Small            P1 185 (0xb9)  0x1eb9  441    "\<h->"
410       ]  h Stroke Capital          P1 186 (0xba)  0x1eba  442    "\<H->"
411         i Tilde Small             P1 187 (0xbb)  0x1ebb  443    "\<i~>"
412         i Tilde Capital           P1 188 (0xbc)  0x1ebc  444    "\<I~>"
413       [  i Macron Small            P1 189 (0xbd)  0x1ebd  445    "\<i->"
414         i Macron Capital          P1 190 (0xbe)  0x1ebe  446    "\<I->"
415         i Ogonek Small            P1 191 (0xbf)  0x1ebf  447    "\<i,>"
416         i Ogonek Capital          P1 192 (0xc0)  0x1ec0  448    "\<I,>"
417         ij Ligature Small         P1 193 (0xc1)  0x1ec1  449    "\<ij>"
418         IJ Ligature Capital       P1 194 (0xc2)  0x1ec2  450    "\<IJ>"
419         j Circumflex Small        P1 195 (0xc3)  0x1ec3  451    "\<j>"
420         j Circumflex Capital      P1 196 (0xc4)  0x1ec4  452    "\<J>"
421         k Cedilla Small           P1 197 (0xc5)  0x1ec5  453    "\<k,>"
422         k Cedilla Capital         P1 198 (0xc6)  0x1ec6  454    "\<K,>"
423         k Greenlandic Small       P1 199 (0xc7)  0x1ec7  455    "\<k>"
424         l Cedilla Small           P1 200 (0xc8)  0x1ec8  456    "\<l,>"
425         l Cedilla Capital         P1 201 (0xc9)  0x1ec9  457    "\<L,>"
426         l Middle Dot Small        P1 202 (0xca)  0x1eca  458    "\<l.>"
427         l Middle Dot Capital      P1 203 (0xcb)  0x1ecb  459    "\<L.>"
428         n Cedilla Small           P1 204 (0xcc)  0x1ecc  460    "\<n,>"
429         n Cedilla Capital         P1 205 (0xcd)  0x1ecd  461    "\<N,>"
430         n Eng Lapp Small          P1 206 (0xce)  0x1ece  462    "\<nj>"
431         n Eng Lapp Capital        P1 207 (0xcf)  0x1ecf  463    "\<Nj>"
432         o Macron Small            P1 208 (0xd0)  0x1ed0  464    "\<o->"
433         o Macron Capital          P1 209 (0xd1)  0x1ed1  465    "\<O->"
434         oe Ligature Small         P1 210 (0xd2)  0x1ed2  466    "\<oe>"
435         oe Ligature Capital       P1 211 (0xd3)  0x1ed3  467    "\<OE>"
436         r Cedilla Small           P1 212 (0xd4)  0x1ed4  468    "\<r,>"
437         r Cedilla Capital         P1 213 (0xd5)  0x1ed5  469    "\<R,>"
438         s Circumflex Small        P1 214 (0xd6)  0x1ed6  470    "\<s>"
439         s Circumflex Capital      P1 215 (0xd7)  0x1ed7  471    "\<S>"
440         t Stroke Small            P1 216 (0xd8)  0x1ed8  472    "\<t->"
441         t Stroke Capital          P1 217 (0xd9)  0x1ed9  473    "\<T->"
442         u Tilde Small             P1 218 (0xda)  0x1eda  474    "\<u~>"
443         u Tilde Capital           P1 219 (0xdb)  0x1edb  475    "\<U~>"
444         u Breve Small             P1 220 (0xdc)  0x1edc  476    "\<uu>"
445         u Breve Capital           P1 221 (0xdd)  0x1edd  477    "\<Uu>"
446         u Macron Small            P1 222 (0xde)  0x1ede  478    "\<u->"
447         u Macron Capital          P1 223 (0xdf)  0x1edf  479    "\<U->"
448         u Ogonek Small            P1 224 (0xe0)  0x1ee0  480    "\<u,>"
449         u Ogonek Capital          P1 225 (0xe1)  0x1ee1  481    "\<U,>"
450         w Circumflex Small        P1 226 (0xe2)  0x1ee2  482    "\<w>"

Figure  7-7 (Part 4 of 5).  Code Page P1

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

451         w Circumflex Capital      P1 227 (0xe3)  0x1ee3  483    "\<W>"
452         y Circumflex Small        P1 228 (0xe4)  0x1ee4  484    "\<y>"
453         y Circumflex Capital      P1 229 (0xe5)  0x1ee5  485    "\<Y>"
454         y Umlaut Capital          P1 230 (0xe6)  0x1ee6  486    "\<Y">"
455         Copyright Symbol          P1 231 (0xe7)  0x1ee7  487    "\<cO>"
456         Superscript One           P1 232 (0xe8)  0x1ee8  488    "\<1>"
457         Trademark Symbol          P1 233 (0xe9)  0x1ee9  489    "\<tm>"
458         One Eighth                P1 234 (0xea)  0x1eea  490    "\<18>"
459         Three Eights              P1 235 (0xeb)  0x1eeb  491    "\<38>"
460         Five Eighths              P1 236 (0xec)  0xleec  492    "\<58>"
461         Seven Eighths             P1 237 (0xed)  0x1eed  493    "\<78>"
462         Multiplication Sign       P1 238 (0xee)  0x1eee  494    "\<x>"
463         Right Single Quote        P1 239 (0xef)  0x1eef  495    "\<->"
464         Left Double Quote         P1 240 (0xf0)  0xlef0  496    "\<-->"
465         Right Double Quote        P1 241 (0xf1)  0xlef1  497    "\<''>"
466         Equal Sign Superscript    P1 242 (0xf2)  0x1ef2  498    "\<=>"
467         Minus Sign Superscript    P1 243 (0xf3)  0x1ef3  499    "\<->"
468         Plus Sign Superscript     P1 244 (0xf4)  0x1ef4  500    "\<+>"
469         Infinity  symbol  Super-  P1 245 (0xf5)  0x1ef5  501    "\<8>"
             script
470         Pi Symbol Superscript     P1 246 (0xf6)  0x1ef6  502    "\<p>"
471         Delta Symbol Superscript  P1 247 (0xf7)  0x1ef7  503    "\<d>"
472         Right Arrow Superscript   P1 248 (0xf8)  0x1ef8  504    "\<>"
473         Slash Superscript         P1 249 (0xf9)  0x1ef9  505    "\</>"
474         Dagger                    P1 250 (0xfa)  0x1efa  506    "\<|+>"
475         Left Angle Superscript    P1 251 (0xfb)  0x1efb  507    "\<[>"
476         Right Angle Superscript   P1 252 (0xfc)  0xlefc  508    "\<]>"
477         Prescription Symbol       P1 253 (0xfd)  0x1efd  509    "\<Rx>"
478         'Is   Not  An   Element'  P1 254 (0xfe)  0x1efe  510    "\<e/>"
             Symbol
479         'Therefore' Symbol        P1 255 (0xff)  0x1eff  511    "\<:.>"

Figure  7-7 (Part 5 of 5).  Code Page P1

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

480         Increase                  P2 32 (0x20)   0x1da0  544    "\</>"
481         Decrease                  P2 33 (0x21)   0x1da1  545    "\<"v>"
482         Double Dagger             P2 34 (0x22)   0x1da2  546    "\<++>"
483         Not Equal Symbol          P2 35 (0x23)   0x1da3  547    "\</=>"
484         OR Symbol                 P2 36 (0x24)   0x1da4  548    "\<v>"
485         AND Symbol                P2 37 (0x25)   0x1da5  549    "\<>"
486         Parallel                  P2 38 (0x26)   0x1da6  550    "\<||>"
487         Angle Symbol              P2 39 (0x27)   0x1da7  551    "\</_>"
488         Left Angle Bracket        P2 40 (0x28)   0x1da8  552    "\<#>"
489         Right Angle Bracket       P2 41 (0x29)   0x1da9  553    "\<>"
490         Minus Or Plus Sign        P2 42 (0x2a)   0x1daa  554    "\<-+>"
491         Lozenge                   P2 43 (0x2b)   0x1dab  555    "\<#>"
492         Minutes Symbol            P2 44 (0x2c)   0x1dac  556    "\<'>"
493         Integral Symbol           P2 45 (0x2d)   0x1dad  557    "\<S>"
494         Union                     P2 46 (0x2e)   0x1dae  558    "\<u>"
495         'Is Included In' Symbol   P2 47 (0x2f)   0x1daf  559    "\<(_>"
496         'Includes' Symbol         P2 48 (0x30)   0x1db0  560    "\<_)>"
497         Circle Plus, Closed Sum   P2 49 (0x31)   0x1db1  561    "\<O+>"
498         Right Angle Symbol        P2 50 (0x32)   0x1db2  562    "\<L>"
499         Circle Multiply           P2 51 (0x33)   0x1db3  563    "\<Ox>"
500         Seconds Symbol            P2 52 (0x34)   0x1db4  564    "\<">"
501         Double Overline           P2 53 (0x35)   0x1db5  565    "\<=>"
502         Psi Small                 P2 54 (0x36)   0x1db6  566    "\<&y>"
503         Epsilon Small             P2 55 (0x37)   0x1db7  567    "\<&e>"
504         Lambda Small              P2 56 (0x38)   0x1db8  568    "\<&l>"
505         Eta Small                 P2 57 (0x39)   0x1db9  569    "\<&h>"
506       ]  Iota Small                P2 58 (0x3a)   0x1dba  570    "\<&i>"
507         Upper  Left  Parenthesis  P2 59 (0x3b)   0x1dbb  571    "\<(>"
             Section
508         Lower  Left  Parenthesis  P2 60 (0x3c)   0x1dbc  572    "\<v(>"
             Section
509       [  Permille Symbol           P2 61 (0x3d)   0x1dbd  573    "\<%%>"
510         Theta Small               P2 62 (0x3e)   0x1dbe  574    "\<&&>"
511         Kappa Small               P2 63 (0x3f)   0x1dbf  575    "\<&k>"
512         Omega Small               P2 64 (0x40)   0x1dc0  576    "\<&w>"
513         Nu Small                  P2 65 (0x41)   0x1dc1  577    "\<&n>"
514         Omicron Small             P2 66 (0x42)   0x1dc2  578    "\<&o>"
515         Rho Small                 P2 67 (0x43)   0x1dc3  579    "\<&r>"
516         Gamma Small               P2 68 (0x44)   0x1dc4  580    "\<&g>"
517         Theta Small               P2 69 (0x45)   0x1dc5  581    "\<&q>"
518         Upper  Right Parenthesis  P2 70 (0x46)   0x1dc6  582    "\<)>"
             Section
519         Lower  Right Parenthesis  P2 71 (0x47)   0x1dc7  583    "\<v)>"
             Section
520         'Congruent To' Symbol     P2 72 (0x48)   0x1dc8  584    "\<~=>"
521         Xi Small                  P2 73 (0x49)   0x1dc9  585    "\<&x>"
522         Chi Small                 P2 74 (0x4a)   0x1dca  586    "\<&c>"
523         Upsilon Small             P2 75 (0x4b)   0x1dcb  587    "\<&u>"
524         Zeta Small                P2 76 (0x4c)   0x1dcc  588    "\<&z>"
525         Lower  Right/Upper  Left  P2 77 (0x4d)   0x1dcd  589    "\<|'>"
             Brace Section

Figure  7-8 (Part 1 of 4).  Code Page P2

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

526         Upper  Right/Lower  Left  P2 78 (0x4e)   0x1dce  590    "\<-|>"
             Brace Section
527         Zero Subscript            P2 79 (0x4f)   0x1dcf  591    "\<v0>"
528         One Subscript             P2 80 (0x50)   0x1dd0  592    "\<v1>"
529         Two Subscript             P2 81 (0x51)   0x1dd1  593    "\<v2>"
530         Three Subscript           P2 82 (0x52)   0x1dd2  594    "\<v3>"
531         Four Subscript            P2 83 (0x53)   0x1dd3  595    "\<v4>"
532         Five Subscript            P2 84 (0x54)   0x1dd4  596    "\<v5>"
533         Six Subscript             P2 85 (0x55)   0x1dd5  597    "\<v6>"
534         Seven Subscript           P2 86 (0x56)   0x1dd6  598    "\<v7>"
535         Eight Subscript           P2 87 (0x57)   0x1dd7  599    "\<v8>"
536         Nine Subscript            P2 88 (0x58)   0x1dd8  600    "\<v9>"
537         Perpendicular             P2 89 (0x59)   0x1dd9  601    "\<|_>"
538         Total Symbol              P2 90 (0x5a)   0x1dda  602    "\<->"
539         Psi Capital               P2 91 (0x5b)   0x1ddb  603    "\<&Y>"
540         Pi Capital                P2 92 (0x5c)   0x1ddc  604    "\<&P>"
541         Lambda Capital            P2 93 (0x5d)   0x1ddd  605    "\<&L>"
542         Bottle Symbol             P2 94 (0x5e)   0x1dde  606    "\<db>"
543         Substitute Blank          P2 95 (0x5f)   0x1ddf  607    "\<b/>"
544         Partial     Differential  P2 96 (0x60)   0x1de0  608    "\<d>"
             Symbol
545         Sine Symbol               P2 97 (0x61)   0x1de1  609    "\<~~>"
546         Open Square               P2 98 (0x62)   0x1de2  610    "\<[->"
547         Solid Square              P2 99 (0x63)   0x1de3  611    "\<[#>"
548         Slash Square              P2 100 (0x64)  0x1de4  612    "\<[/>"
549         Upper Summation Section   P2 101 (0x65)  0x1de5  613    "\<S>"
550         Lower Summation Section   P2 102 (0x66)  0x1de6  614    "\<vS>"
551         Xi Capital                P2 103 (0x67)  0x1de7  615    "\<&X>"
552         'Proportional To' Symbol  P2 104 (0x68)  0x1de8  616    "\<o(>"
553         Delta Capital             P2 105 (0x69)  0x1de9  617    "\<&D>"
554         Upsilon Capital           P2 106 (0x6a)  0x1dea  618    "\<&U>"
555         'Approximately Equal To'  P2 107 (0x6b)  0x1deb  619    "\<~->"
             Symbol
556         Cycle   Symbol,  'Equiv-  P2 108 (0x6c)  0x1dec  620    "\<~>"
             alent To' Symbol
557         Zero Superscript          P2 109 (0x6d)  0x1ded  621    "\<0>"
558         Four Superscript          P2 110 (0x6e)  0x1dee  622    "\<4>"
559         Five Superscript          P2 111 (0x6f)  0x1def  623    "\<5>"
560         Six Superscript           P2 112 (0x70)  0x1df0  624    "\<6>"
561         Seven Superscript         P2 113 (0x71)  0x1df1  625    "\<7>"
562         Eight Superscript         P2 114 (0x72)  0x1df2  626    "\<8>"
563         Nine Superscript          P2 115 (0x73)  0x1df3  627    "\<9>"
564         Zero Slash                P2 116 (0x74)  0x1df4  628    "\<0/>"
565         Paseta Sign               P2 117 (0x75)  0x1df5  629    "\<Pt>"
566         Flipped Logical Not       P2 118 (0x76)  0x1df6  630    "\<.->"
567         Right   Side  Middle   -  P2 119 (0x77)  0x1df7  631    "\<H6>"
             Double Horizontal
568         Right   Side  Middle   -  P2 120 (0x78)  0x1df8  632    "\<V6>"
             Double Vertical
569         Upper  Right   Corner  -  P2 121 (0x79)  0x1df9  633    "\<V9>"
             Double Vertical

Figure  7-8 (Part 2 of 4).  Code Page P2

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

570         Upper  Right   Corner  -  P2 122 (0x7a)  0x1dfa  634    "\<H9>"
             Double Hor.
571         Lower  Right   Corner  -  P2 123 (0x7b)  0x1dfb  635    "\<V3>"
             Double Vertical
572         Lower  Right   Corner  -  P2 124 (0x7c)  0x1dfc  636    "\<H3>"
             Double Hor.
573         Left   Side   Middle   -  P2 125 (0x7d)  0x1dfd  637    "\<H4>"
             Double Horizontal
574         Left   Side   Middle   -  P2 126 (0x7e)  0x1dfe  638    "\<V4>"
             Double Vertical
575         Bottom  Side   Middle  -  P2 127 (0x7f)  0x1dff  639    "\<H2>"
             Double Horizontal
576         Bottom  Side   Middle  -  P2 128 (0x80)  0x1c80  640    "\<V2>"
             Double Vertical
577         Top Side Middle - Double  P2 129 (0x81)  0x1c81  641    "\<H8>"
             Horizontal
578         Lower   Left  Corner   -  P2 130 (0x82)  0x1c82  642    "\<V1>"
             Double Vertical
579         Lower   Left  Corner   -  P2 131 (0x83)  0x1c83  643    "\<H1>"
             Double Hor.
580         Upper   Left  Corner   -  P2 132 (0x84)  0x1c84  644    "\<H7>"
             Double Hor.
581         Upper   Left  Corner   -  P2 133 (0x85)  0x1c85  645    "\<V7>"
             Double Vertical
582         Intersection   -  Double  P2 134 (0x86)  0x1c86  646    "\<V5>"
             Vertical
583         Intersection   -  Double  P2 135 (0x87)  0x1c87  647    "\<H5>"
             Horizontal
584         Bright Character  Cell -  P2 136 (0x88)  0x1c88  648    "\<B4>"
             Left Half
585         Bright Character  Cell -  P2 137 (0x89)  0x3c89  649    "\<B6>"
             Right Half
586         Alpha Small               P2 138 (0x8a)  0x1c8a  650    "\<&a>"
587         Beta Small                P2 139 (0x8b)  0x1c8b  651    "\<&b>"
588       <  Gamma Capital             P2 140 (0x8c)  0x1c8c  652    "\<&G>"
589         Pi Small                  P2 141 (0x8d)  0x1c8d  653    "\<&p>"
590         Sigma  Capital/Summation  P2 142 (0x8e)  0x1c8e  654    "\<&S>"
             Sign
591         Sigma Small               P2 143 (0x8f)  0x1c8f  655    "\<&s>"
592       é  Tau Small                 P2 144 (0x90)  0x1c90  656    "\<&t>"
593         Phi Capital               P2 145 (0x91)  0x1c91  657    "\<&F>"
594         Theta Capital             P2 146 (0x92)  0x1c92  658    "\<&Q>"
595         Omega Capital/Ohm Sign    P2 147 (0x93)  0x1c93  659    "\<&W>"
596         Delta Small               P2 148 (0x94)  0x1c94  660    "\<&d>"
597         Infinity                  P2 149 (0x95)  0x1c95  661    "\<8>"
598         Phi Small                 P2 150 (0x96)  0x1c96  662    "\<&f>"
599         'Is   An   Element   Of'  P2 151 (0x97)  0x1c97  663    "\<e>"
             Symbol
600         Intersection              P2 152 (0x98)  0x1c98  664    "\<n>"
601         Identity Symbol           P2 153 (0x99)  0x1c99  665    "\<==>"
602         'Greater  Than or  Equal  P2 154 (0x9a)  0x1c9a  666    "\<=>"
             To' Symbol

Figure  7-8 (Part 3 of 4).  Code Page P2

Font                                   Code Page      char    NLchar  NCesc
Position  Character                    Code Point     String  Value   Esc Seq

603         'Less Than  or Equal To'  P2 155 (0x9b)  0x1c9b  667    "\<#=>"
             Symbol
604         Upper Integral Section    P2 156 (0x9c)  0x1c9c  668    "\<I>"
605         Lower Integral Section    P2 157 (0x9d)  0x1c9d  669    "\<vI>"
606         Double Equivalent         P2 158 (0x9e)  0x1c9e  670    "\<=~>"
607         Solid Overcircle          P2 159 (0x9f)  0x1c9f  671    "\<#o>"
608         Radical  Symbol,  Square  P2 160 (0xa0)  0x1ca0  672    "\<v->"
             Root
609         Top Side Middle - Double  P2 161 (0xa1)  0x1ca1  673    "\<V8>"
             Vertical
610         Superscript n             P2 162 (0xa2)  0x1ca2  674    "\<n>"
611         Numeric Space             P2 163 (0xa3)  0x1ca3  675    "\<0->"
612         Center Line               P2 164 (0xa4)  0x1ca4  676    "\<-)>"
613         Counter Bore              P2 165 (0xa5)  0x1ca5  677    "\<-u>"
614         Counter Sink              P2 166 (0xa6)  0x1ca6  678    "\<Iv>"
615         Depth                     P2 167 (0xa7)  0x1ca7  679    "\<'v>"
616         Diameter                  P2 168 (0xa8)  0x1ca8  680    "\<-=>"

Figure  7-8 (Part 4 of 4).  Code Page P2

Related Information

     In this book:  "conv,"  "NLchar,"  "NLescstr, NLunescstr,
     NLflatstr,"  "fonts,"  "data  stream," "hft,"  and  "key-
     board."

     Keyboard Description and Character Reference.

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026