ASCII 20
Device Control 4 (DC4)
Control character
Legacy device control.
All encodings at a glance
| Decimal | 20 |
| Hexadecimal | 0x14 |
| Octal | 0024 |
| Binary | 00010100 |
| HTML numeric entity |  |
| URL encoding | %14 |
| UTF-8 bytes | 0x14 |
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
 <!-- numeric entity (no named entity for this character) -->