]
Closing bracket
PrintableASCII 93 | Hex 0x5D | U+005D
Closing bracket (ASCII 93) terminates array subscripts and JSON arrays opened by ASCII 91. In regular expressions, ] closes a character class. Many JSON parsing errors originate from missing or extra closing brackets in deeply nested structures, which is why most editors provide bracket matching and auto-closing. In Markdown, the closing bracket separates link text from the URL parentheses in [text](url).
ASCII Code
Decimal
93
Hexadecimal
0x5D
Octal
135
Binary
0101 1101
URL Escape
%5D
Unicode
Code Point
U+005D
Escape
\u005d
UTF-8 Hex
0x5D
UTF-8 Binary
01011101
UTF-16
0x005D
UTF-32
0x0000005D
HTML Entities
Numeric
]
Hex
]
Named
]
How to Type
Windows Alt CodeAlt + 93
HTML Entity
]
Unicode InputU+005D
Source Code Representations
C / Java
"\u005D"CSS
\005DJavaScript
"\u005D"Perl
\x{005D}Python 2
u"\u005D"Python 3
\u005DRuby
\u{005D}Frequently Asked Questions
What is ASCII code 93?
ASCII code 93 represents the Closing bracket character. In hexadecimal it is 0x5D, in binary 0101 1101, and in octal 135. It is a printable character that appears as "]" in text.
How do I type ASCII 93 on a keyboard?
On Windows, hold Alt and type 93 on the numeric keypad. On Mac, you can use the Character Viewer (Edit > Emoji & Symbols). In HTML, use the entity ] or ].