DevKits

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

Decimal19
Hexadecimal0x13
Octal0023
Binary00010011
HTML numeric entity
URL encoding%13
UTF-8 bytes0x13

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

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

Nearby codes