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