ASCII 30
Record Separator (RS)
Control character
Legacy record separator.
All encodings at a glance
| Decimal | 30 |
| Hexadecimal | 0x1E |
| Octal | 0036 |
| Binary | 00011110 |
| HTML numeric entity |  |
| URL encoding | %1E |
| UTF-8 bytes | 0x1E |
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
 <!-- numeric entity (no named entity for this character) -->