File Separator
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.
| Decimal | 28 |
| Octal | 034 |
| Hexadecimal | 0x1C |
| Binary | 00011100 |
| HTML Code |  |
| HTML Entity | — |
| Unicode | U+001C |
| Unicode Name | INFORMATION SEPARATOR FOUR |
| URL Escape | %1C |
| Quoted-Printable | =1C |
| UTF-8 (Hex) | 1C |
| Category | Control — Information Separators |
// Using escape sequence
let char = '\x1C';
// Using String.fromCharCode
let char2 = String.fromCharCode(28); # Using escape sequence
char = '\x1c'
# Using chr()
char = chr(28) <!-- Using HTML entity -->
 // Using escape sequence
char c = '\x1C';
// Using cast
char c2 = (char)28;