ASCII 15
Shift In (SI)
Control character
Switches back to the default character set. Legacy.
All encodings at a glance
| Decimal | 15 |
| Hexadecimal | 0x0F |
| Octal | 0017 |
| Binary | 00001111 |
| HTML numeric entity |  |
| URL encoding | %0F |
| UTF-8 bytes | 0x0F |
Code snippets
JavaScript
String.fromCharCode(15); // "SI"
15.toString(16); // "0f"Python
chr(15) # control char SI
ord(chr(15)) # 15
hex(15) # '0x0f'HTML
 <!-- numeric entity (no named entity for this character) -->