| Nome del simbolo | Right Curly Bracket |
| Versione Unicode | 1.1 |
| Unicode | U+007D |
| Blocco Unicode | |
| Categoria generale | Close Punctuation (Pe) |
| Codice CSS |
| UTF-8 | 7D |
| UTF-16 | 007D |
| UTF-32 | 0000007D |
1\documentclass{article}2\usepackage{pifont}3\}4\end{document}Puoi digitare il simbolo right curly bracket sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Right Curly Bracket nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |
\007D |
| Codice esadecimale | 0x007D |
| Codice HTML | } |
| LaTeX | \} |
| Simbolo | } |
| Codifica URL (percentuale UTF-8) | %7D |
| Nome parlato / screen reader | Right Curly Bracket |