Emphasized Mode ON CSI = z
Emphasized Mode OFF CSI > z
Data Structure ASCII CSI "=" "z" [C] emphasized mode ON
hex. 9B 3D 7A
dec. 155 61 122
ASCII CSI ">" "z" [C] emphasized mode OFF
hex. 9B 3E 7A
dec. 155 62 122
Description During printing in emphasized mode, each dot is printed twice, slightly shifted in horizon-
tal direction.
Emphasized mode can be used in all print qualities and character densities.
Example 10 REM emphasized mode
20 LPRINT CHR$(27);"[z";"this is printed in the normal mode"
30 LPRINT CHR$(27);"[=z";"and this in the emphasized one"
40 END
Character Styling 35