Sequence
|
Interpreted as
|
Comments
|
~nnn
|
Single character
|
Use to send a single character to the printer, where nnn is an octal code between 000 and 377. You must specify all three digits.
|
~t
|
Tab character
|
Use to send the 011 octal code to the printer.
|
~r
|
Carriage return
|
Use to send the 015 octal code to the printer.
|
~n
|
Line feed
|
Use to send the 012 octal code to the printer.
|
~E
|
Escape
|
Use to send the 033 octal code to the printer.
|
~b
|
Backspace
|
Use to send the 010 octal code to the printer.
|
~f
|
Form feed
|
Use to send the 014 octal code to the printer.
|
~"
|
"
|
Use within quoted strings as an alternative to two quotes ("").
|
~\
|
\
|
Use to send the backslash character to the printer.
|
~~
|
~
|
Use to send the tilde character to the printer.
|
PUT stream-name
STREAM CONTROL "ctrl-sequence" "ctrl-sequence" |
PUT STREAM a CONTROL "~017".
|