]
Right square bracket
Decimal: 93
Hex: 5D
Symbol
ASCII Values
Decimal
93
Hexadecimal
0x5D
Character
]
Usage Examples
JavaScript (from decimal)
String.fromCharCode(93); // "]"
JavaScript (to decimal)
"]".charCodeAt(0); // 93
Python
chr(93) # "]"
ord("]") # 93C/C++
char c = 93; // ']' int code = ']'; // 93
Symbol Characters
Symbol characters include punctuation marks, mathematical operators, and special characters used in programming and text formatting.