ASCII 16
Data Link Escape (DLE)
Control character
Escape character for binary protocols.
All encodings at a glance
| Decimal | 16 |
| Hexadecimal | 0x10 |
| Octal | 0020 |
| Binary | 00010000 |
| HTML numeric entity |  |
| URL encoding | %10 |
| UTF-8 bytes | 0x10 |
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
 <!-- numeric entity (no named entity for this character) -->