DevKits

ASCII 14

Shift Out (SO)

Control character

Switches to an alternate character set. Legacy.

All encodings at a glance

Decimal14
Hexadecimal0x0E
Octal0016
Binary00001110
HTML numeric entity
URL encoding%0E
UTF-8 bytes0x0E

Code snippets

JavaScript

String.fromCharCode(14); // "SO"
14.toString(16); // "0e"

Python

chr(14)           # control char SO
ord(chr(14))      # 14
hex(14)           # '0x0e'

HTML

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

Nearby codes