| Symbol Name | Right Square Bracket |
| Unicode Version | 1.1 |
| Unicode | U+005D |
| Unicode block | |
| General category | Close Punctuation (Pe) |
| CSS Code | \005D |
| Hex Code | 0x005D |
| HTML Code | ] |
| LaTeX | ] |
| Symbol | ] |
| URL encode (UTF-8 percent) | %5D |
| Spoken / screen reader name | Right Square Bracket |
| UTF-8 | 5D |
| UTF-16 | 005D |
| UTF-32 | 0000005D |
1\documentclass{article}2\usepackage{pifont}3]4\end{document}You can type the right square bracket symbol on most modern devices with the help of following methods:
Alt + 93 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "right square bracket", or use Unicode Hex Input with 005D.
Ctrl + Shift + U, type 005d, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with bracket and quote support.
1span.right-square-bracket::before { content: "\005D"; }1<span>]</span>Right Square Bracket symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u005D' or String.fromCodePoint(93) |
| Python | '\N{RIGHT SQUARE BRACKET}' or chr(93) |
| Rust | '\u{005D}' |
| C / C++ | UTF-8 source or wchar_t with U+005D |
| Go | string(rune(0x005D)) |
| Ruby | "\u{005D}" |