DevKits

ASCII 20

Device Control 4 (DC4)

Control character

Legacy device control.

All encodings at a glance

Decimal20
Hexadecimal0x14
Octal0024
Binary00010100
HTML numeric entity
URL encoding%14
UTF-8 bytes0x14

Code snippets

JavaScript

String.fromCharCode(20); // "DC4"
20.toString(16); // "14"

Python

chr(20)           # control char DC4
ord(chr(20))      # 20
hex(20)           # '0x14'

HTML

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

Nearby codes