ASCII 14
Shift Out (SO)
Control character
Switches to an alternate character set. Legacy.
All encodings at a glance
| Decimal | 14 |
| Hexadecimal | 0x0E |
| Octal | 0016 |
| Binary | 00001110 |
| HTML numeric entity |  |
| URL encoding | %0E |
| UTF-8 bytes | 0x0E |
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
 <!-- numeric entity (no named entity for this character) -->