| Nome del simbolo | Right Parenthesis |
| Versione Unicode | 1.1 |
| Unicode | U+0029 |
| Blocco Unicode | |
| Categoria generale | Close Punctuation (Pe) |
| Codice CSS | \0029 |
| Codice esadecimale | 0x0029 |
| Codice HTML | ) |
| LaTeX | ) |
| Simbolo | ) |
| Codifica URL (percentuale UTF-8) | %29 |
| Nome parlato / screen reader | Right Parenthesis |
| UTF-8 | 29 |
| UTF-16 | 0029 |
| UTF-32 | 00000029 |
1\documentclass{article}2\usepackage{pifont}3)4\end{document}Puoi digitare il simbolo right parenthesis sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 41 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "right parenthesis", or use Unicode Hex Input with 0029.
Ctrl + Shift + U, type 0029, 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-parenthesis::before { content: "\0029"; }1<span>)</span>La rappresentazione del simbolo Right Parenthesis nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u0029' or String.fromCodePoint(41) |
| Python | '\N{RIGHT PARENTHESIS}' or chr(41) |
| Rust | '\u{0029}' |
| C / C++ | UTF-8 source or wchar_t with U+0029 |
| Go | string(rune(0x0029)) |
| Ruby | "\u{0029}" |