ASCII 91
Left Square Bracket ([)
Printable ASCII
Left square bracket. Opens array literals and index accesses.
All encodings at a glance
| Decimal | 91 |
| Hexadecimal | 0x5B |
| Octal | 0133 |
| Binary | 01011011 |
| HTML numeric entity | [ |
| URL encoding | %5B |
| UTF-8 bytes | 0x5B |
Code snippets
JavaScript
String.fromCharCode(91); // "["
91.toString(16); // "5b"Python
chr(91) # '['
ord(chr(91)) # 91
hex(91) # '0x5b'HTML
[ <!-- numeric entity (no named entity for this character) -->