ASCII 17
Device Control 1 (XON) (DC1)
Control character
Software flow control: resume transmission. Ctrl+Q on terminals.
All encodings at a glance
| Decimal | 17 |
| Hexadecimal | 0x11 |
| Octal | 0021 |
| Binary | 00010001 |
| HTML numeric entity |  |
| URL encoding | %11 |
| UTF-8 bytes | 0x11 |
Code snippets
JavaScript
String.fromCharCode(17); // "DC1"
17.toString(16); // "11"Python
chr(17) # control char DC1
ord(chr(17)) # 17
hex(17) # '0x11'HTML
 <!-- numeric entity (no named entity for this character) -->