DevKits

ASCII 18

Device Control 2 (DC2)

Control character

Legacy device control.

All encodings at a glance

Decimal18
Hexadecimal0x12
Octal0022
Binary00010010
HTML numeric entity
URL encoding%12
UTF-8 bytes0x12

Code snippets

JavaScript

String.fromCharCode(18); // "DC2"
18.toString(16); // "12"

Python

chr(18)           # control char DC2
ord(chr(18))      # 18
hex(18)           # '0x12'

HTML

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

Nearby codes