| Symbol Name | Right Curly Bracket |
| Unicode Version | 1.1 |
| Unicode | U+007D |
| Unicode block | |
| General category | Close Punctuation (Pe) |
| CSS Code | \007D |
| Hex Code | 0x007D |
| HTML Code | } |
| LaTeX | \} |
| Symbol | } |
| URL encode (UTF-8 percent) | %7D |
| Spoken / screen reader name | Right Curly Bracket |
| UTF-8 | 7D |
| UTF-16 | 007D |
| UTF-32 | 0000007D |
1\documentclass{article}2\usepackage{pifont}3\}4\end{document}You can type the right curly bracket symbol on most modern devices with the help of following methods:
Alt + 125 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "right curly bracket", or use Unicode Hex Input with 007D.
Ctrl + Shift + U, type 007d, 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-curly-bracket::before { content: "\007D"; }1<span>}</span>Right Curly Bracket symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u007D' or String.fromCodePoint(125) |
| Python | '\N{RIGHT CURLY BRACKET}' or chr(125) |
| Rust | '\u{007D}' |
| C / C++ | UTF-8 source or wchar_t with U+007D |
| Go | string(rune(0x007D)) |
| Ruby | "\u{007D}" |