SI

ASCII Character: Shift In

ASCII Code 15 · Unicode U+000F · Hex 0x0F

shift-in si

About the Shift In Character

ASCII code 15 (0x0F) represents the Shift In (SI) control character. This is a non-printable character defined in the original ASCII standard (1963). It is a miscellaneous control character with special significance in text processing and data communication. Control characters occupy codes 0–31 and 127 in the ASCII table and were originally designed for controlling hardware devices, managing communication links, and formatting text output. While many control characters have become obsolete with modern computing, several like LF (Line Feed), CR (Carriage Return), TAB, and ESC remain essential in everyday programming and text processing.

Encoding Details

ASCII Code 15
Hexadecimal 0x0F
Octal 017
Binary 00001111
Unicode U+000F
Unicode Name SHIFT IN
HTML Numeric 
HTML Entity
URL Escape %0F
UTF-8 (Hex) 0F
Quoted-Printable =0F

Source Code Examples

JavaScript
// Using escape sequence
let char = '\x0F';
// Using String.fromCharCode
let char2 = String.fromCharCode(15);
Python
# Using escape sequence
char = '\x0f'
# Using chr()
char = chr(15)
HTML
<!-- Using HTML entity -->
&#15;
C#
// Using escape sequence
char c = '\x0F';
// Using cast
char c2 = (char)15;

Navigate

Copied!