DevKits

ASCII 15

Shift In (SI)

Control character

Switches back to the default character set. Legacy.

All encodings at a glance

Decimal15
Hexadecimal0x0F
Octal0017
Binary00001111
HTML numeric entity
URL encoding%0F
UTF-8 bytes0x0F

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

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

Nearby codes