| Nombre del símbolo | Right Angle Bracket |
| Versión Unicode | 1.1 |
| Unicode | U+3009 |
| Bloque Unicode | |
| Categoría general | Close Punctuation (Pe) |
| UTF-8 | E3 80 89 |
| UTF-16 | 3009 |
| UTF-32 | 00003009 |
1\documentclass{article}2\usepackage{pifont}3\rangle 4\end{document}Puedes escribir el símbolo right angle bracket en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 12297 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "right angle bracket", or use Unicode Hex Input with 3009.
Ctrl + Shift + U, type 3009, 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-angle-bracket::before { content: "\3009"; }1<span>〉</span>La representación del símbolo Right Angle Bracket en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u3009' or String.fromCodePoint(12297) |
| Python | '\N{RIGHT ANGLE BRACKET}' or chr(12297) |
| Rust | '\u{3009}' |
| C / C++ | UTF-8 source or wchar_t with U+3009 |
| Go | string(rune(0x3009)) |
| Ruby | "\u{3009}" |
| Código CSS |
\3009 |
| Código hexadecimal | 0x3009 |
| Código HTML | 〉 |
| LaTeX | \rangle |
| Símbolo | 〉 |
| Codificación URL (porcentaje UTF-8) | %E3%80%89 |
| Nombre oral / lector de pantalla | Right Angle Bracket |