| Nombre del símbolo | Right Parenthesis |
| Versión Unicode | 1.1 |
| Unicode | U+0029 |
| Bloque Unicode | |
| Categoría general | Close Punctuation (Pe) |
| Código CSS | \0029 |
| Código hexadecimal | 0x0029 |
| Código HTML | ) |
| LaTeX | ) |
| Símbolo | ) |
| Codificación URL (porcentaje UTF-8) | %29 |
| Nombre oral / lector de pantalla | Right Parenthesis |
| UTF-8 | 29 |
| UTF-16 | 0029 |
| UTF-32 | 00000029 |
1\documentclass{article}2\usepackage{pifont}3)4\end{document}Puedes escribir el símbolo right parenthesis en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Right Parenthesis en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |