DC4

ASCII Character: Device Control 4

ASCII Code 20 · Unicode U+0014 · Hex 0x14

device-control-4 dc4

About the Device Control 4 Character

ASCII code 20 (0x14) represents the Device Control 4 (DC4) 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 20
Hexadecimal 0x14
Octal 024
Binary 00010100
Unicode U+0014
Unicode Name DEVICE CONTROL FOUR
HTML Numeric 
HTML Entity
URL Escape %14
UTF-8 (Hex) 14
Quoted-Printable =14

Source Code Examples

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

Navigate

Copied!