ASCII 28
File Separator (FS)
Control character
Legacy record separator used by some databases.
All encodings at a glance
| Decimal | 28 |
| Hexadecimal | 0x1C |
| Octal | 0034 |
| Binary | 00011100 |
| HTML numeric entity |  |
| URL encoding | %1C |
| UTF-8 bytes | 0x1C |
Code snippets
JavaScript
String.fromCharCode(28); // "FS"
28.toString(16); // "1c"Python
chr(28) # control char FS
ord(chr(28)) # 28
hex(28) # '0x1c'HTML
 <!-- numeric entity (no named entity for this character) -->