Miscellaneous

Print Data as Characters ESC ( ^

Data Structure ASCII ESC "(" " ^" <nL><n
H><d
1>...<dn> print data as characters
hex. 1B 28 54 <nL><n
H><d
1>...<dn>
dec. 274094<n
L><n
H><d
1>...<dn>
Description Valid values:
0 nL 255
0 nH 127
Data bytes d1 to dn are printed as characters rather than control codes.
k = ((nH x 256) + nL)
nH = INT k
256
nL = MOD k
256
Data is ignored if no character is assigned to that character in the active character table.
Miscellaneous 95