ASCII 29
Group Separator (GS)
Control character
Legacy record separator.
All encodings at a glance
| Decimal | 29 |
| Hexadecimal | 0x1D |
| Octal | 0035 |
| Binary | 00011101 |
| HTML numeric entity |  |
| URL encoding | %1D |
| UTF-8 bytes | 0x1D |
Code snippets
JavaScript
String.fromCharCode(29); // "GS"
29.toString(16); // "1d"Python
chr(29) # control char GS
ord(chr(29)) # 29
hex(29) # '0x1d'HTML
 <!-- numeric entity (no named entity for this character) -->