ASCII 93
Right Square Bracket (])
Printable ASCII
Right square bracket. Closes array literals and index accesses.
All encodings at a glance
| Decimal | 93 |
| Hexadecimal | 0x5D |
| Octal | 0135 |
| Binary | 01011101 |
| HTML numeric entity | ] |
| URL encoding | %5D |
| UTF-8 bytes | 0x5D |
Code snippets
JavaScript
String.fromCharCode(93); // "]"
93.toString(16); // "5d"Python
chr(93) # ']'
ord(chr(93)) # 93
hex(93) # '0x5d'HTML
] <!-- numeric entity (no named entity for this character) -->