DevKits

ASCII 28

File Separator (FS)

Control character

Legacy record separator used by some databases.

All encodings at a glance

Decimal28
Hexadecimal0x1C
Octal0034
Binary00011100
HTML numeric entity
URL encoding%1C
UTF-8 bytes0x1C

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

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

Nearby codes