DevKits

ASCII 17

Device Control 1 (XON) (DC1)

Control character

Software flow control: resume transmission. Ctrl+Q on terminals.

All encodings at a glance

Decimal17
Hexadecimal0x11
Octal0021
Binary00010001
HTML numeric entity
URL encoding%11
UTF-8 bytes0x11

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

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

Nearby codes