| Nombre del símbolo | Right-pointing Double Angle Quotation Mark |
| Versión Unicode | 1.1 |
| Unicode | U+00BB |
| Bloque Unicode | |
| Categoría general | Final Quote Punctuation (Pf) |
| UTF-8 | C2 BB |
| UTF-16 | 00BB |
| UTF-32 | 000000BB |
1\documentclass{article}2\usepackage{pifont}3\guillemotright 4\end{document}Puedes escribir el símbolo right-pointing double angle quotation mark en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 187 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "right-pointing double angle quotation mark", or use Unicode Hex Input with 00BB.
Ctrl + Shift + U, type 00bb, 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-pointing-double-angle-quotation-mark::before { content: "\00BB"; }1<span>»</span>La representación del símbolo Right-pointing Double Angle Quotation Mark en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u00BB' or String.fromCodePoint(187) |
| Python | '\N{RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK}' or chr(187) |
| Rust | '\u{00BB}' |
| C / C++ | UTF-8 source or wchar_t with U+00BB |
| Go | string(rune(0x00BB)) |
| Ruby | "\u{00BB}" |
| Código CSS |
\00BB |
| Código hexadecimal | 0x00BB |
| Código HTML | » |
| LaTeX | \guillemotright |
| Símbolo | » |
| Codificación URL (porcentaje UTF-8) | %C2%BB |
| Nombre oral / lector de pantalla | Right-pointing Double Angle Quotation Mark |