DevKits

ASCII 30

Record Separator (RS)

Control character

Legacy record separator.

All encodings at a glance

Decimal30
Hexadecimal0x1E
Octal0036
Binary00011110
HTML numeric entity
URL encoding%1E
UTF-8 bytes0x1E

Code snippets

JavaScript

String.fromCharCode(30); // "RS"
30.toString(16); // "1e"

Python

chr(30)           # control char RS
ord(chr(30))      # 30
hex(30)           # '0x1e'

HTML

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

Nearby codes