DevKits

ASCII 16

Data Link Escape (DLE)

Control character

Escape character for binary protocols.

All encodings at a glance

Decimal16
Hexadecimal0x10
Octal0020
Binary00010000
HTML numeric entity
URL encoding%10
UTF-8 bytes0x10

Code snippets

JavaScript

String.fromCharCode(16); // "DLE"
16.toString(16); // "10"

Python

chr(16)           # control char DLE
ord(chr(16))      # 16
hex(16)           # '0x10'

HTML

&#16;   <!-- numeric entity (no named entity for this character) -->

Nearby codes