GS

ASCII Code 29

Group Separator

About This Character

ASCII code 29 (0x1D) represents the Group Separator (GS) control character. This is a non-printable character defined in the original ASCII standard (1963). It belongs to the information separator group, used to structure data into hierarchical levels for processing. Control characters occupy codes 0–31 and 127 in the ASCII table and were originally designed for controlling hardware devices, managing communication links, and formatting text output. While many control characters have become obsolete with modern computing, several like LF (Line Feed), CR (Carriage Return), TAB, and ESC remain essential in everyday programming and text processing.

Character Encoding

Decimal 29
Octal 035
Hexadecimal 0x1D
Binary 00011101
HTML Code 
HTML Entity
Unicode U+001D
Unicode Name INFORMATION SEPARATOR THREE
URL Escape %1D
Quoted-Printable =1D
UTF-8 (Hex) 1D
Category Control — Information Separators

How to Type in Code

JavaScript
// Using escape sequence
let char = '\x1D';
// Using String.fromCharCode
let char2 = String.fromCharCode(29);
Python
# Using escape sequence
char = '\x1d'
# Using chr()
char = chr(29)
HTML
<!-- Using HTML entity -->
&#29;
C#
// Using escape sequence
char c = '\x1D';
// Using cast
char c2 = (char)29;

See Also

Copied!