DevKits

ASCII 93

Right Square Bracket (])

Printable ASCII

Right square bracket. Closes array literals and index accesses.

All encodings at a glance

Decimal93
Hexadecimal0x5D
Octal0135
Binary01011101
HTML numeric entity]
URL encoding%5D
UTF-8 bytes0x5D

Code snippets

JavaScript

String.fromCharCode(93); // "]"
93.toString(16); // "5d"

Python

chr(93)           # ']'
ord(chr(93))      # 93
hex(93)           # '0x5d'

HTML

&#93;   <!-- numeric entity (no named entity for this character) -->

Nearby codes