FS

ASCII Character: File Separator

ASCII Code 28 · Unicode U+001C · Hex 0x1C

file-separator fs

About the File Separator Character

ASCII code 28 (0x1C) represents the File Separator (FS) control character. This is a non-printable character defined in the original ASCII standard (1963). It belongs to the information separator group, used to structure data into hierarchical levels for processing. 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 28
Hexadecimal 0x1C
Octal 034
Binary 00011100
Unicode U+001C
Unicode Name INFORMATION SEPARATOR FOUR
HTML Numeric 
HTML Entity
URL Escape %1C
UTF-8 (Hex) 1C
Quoted-Printable =1C

Source Code Examples

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

Navigate

Copied!