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