ASCII 19
Device Control 3 (XOFF) (DC3)
Control character
Software flow control: pause transmission. Ctrl+S on terminals — will freeze your screen if you press it accidentally.
All encodings at a glance
| Decimal | 19 |
| Hexadecimal | 0x13 |
| Octal | 0023 |
| Binary | 00010011 |
| HTML numeric entity |  |
| URL encoding | %13 |
| UTF-8 bytes | 0x13 |
Code snippets
JavaScript
String.fromCharCode(19); // "DC3"
19.toString(16); // "13"Python
chr(19) # control char DC3
ord(chr(19)) # 19
hex(19) # '0x13'HTML
 <!-- numeric entity (no named entity for this character) -->