DevKits

ASCII 29

Group Separator (GS)

Control character

Legacy record separator.

All encodings at a glance

Decimal29
Hexadecimal0x1D
Octal0035
Binary00011101
HTML numeric entity
URL encoding%1D
UTF-8 bytes0x1D

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

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

Nearby codes