DLE

ASCII Character: Data Link Escape

ASCII Code 16 · Unicode U+0010 · Hex 0x10

data-link-escape dle

About the Data Link Escape Character

ASCII code 16 (0x10) represents the Data Link Escape (DLE) control character. This is a non-printable character defined in the original ASCII standard (1963). It belongs to the device control group, providing signals to control peripheral devices connected to a computer system. Control characters occupy codes 0–31 and 127 in the ASCII table and were originally designed for controlling hardware devices, managing communication links, and formatting text output. While many control characters have become obsolete with modern computing, several like LF (Line Feed), CR (Carriage Return), TAB, and ESC remain essential in everyday programming and text processing.

Encoding Details

ASCII Code 16
Hexadecimal 0x10
Octal 020
Binary 00010000
Unicode U+0010
Unicode Name DATA LINK ESCAPE
HTML Numeric 
HTML Entity
URL Escape %10
UTF-8 (Hex) 10
Quoted-Printable =10

Source Code Examples

JavaScript
// Using escape sequence
let char = '\x10';
// Using String.fromCharCode
let char2 = String.fromCharCode(16);
Python
# Using escape sequence
char = '\x10'
# Using chr()
char = chr(16)
HTML
<!-- Using HTML entity -->
&#16;
C#
// Using escape sequence
char c = '\x10';
// Using cast
char c2 = (char)16;

Navigate

Copied!