ASCII 18
Device Control 2 (DC2)
Control character
Legacy device control.
All encodings at a glance
| Decimal | 18 |
| Hexadecimal | 0x12 |
| Octal | 0022 |
| Binary | 00010010 |
| HTML numeric entity |  |
| URL encoding | %12 |
| UTF-8 bytes | 0x12 |
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
 <!-- numeric entity (no named entity for this character) -->