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