Toolman

ASCII 16

ASCII 16 is Data Link Escape — the control character DLE.

Every representation

CharacterDLE (not printable)
NameData Link Escape
Decimal16
Hexadecimal0x10
Octal0020
Binary00010000
HTML entity
Escape sequence\x10
UnicodeU+0010
KeyboardCtrl+P
GroupControl character

What it is for

Marked the following characters as protocol control rather than data — an escaping mechanism for binary-unsafe links.

Where the number comes from

Codes 0 to 31 were reserved for control: instructions to a teleprinter rather than characters to print. Code 16 is Ctrl+P because the Ctrl key was originally wired to clear the top two bits of whatever you typed, mapping the letter P at 80 down to 16.

Frequently asked questions

What is ASCII 16?

Data Link Escape (DLE), a control character. In hexadecimal it is 0x10, in octal 0020, and in binary 00010000.

How do I type ASCII 16?

Press Ctrl+P in a terminal. In a string literal you can write it as \\x10 in most languages.

Is ASCII 16 printable?

No. Codes 0 to 31 and 127 are control characters — they were instructions to a teleprinter rather than marks on paper, and most terminals show nothing for them.

Nearby codes

Full ASCII table · Text to binary converter · Number base converter