| 記号名 | Right-pointing Double Angle Quotation Mark |
| Unicodeバージョン | 1.1 |
| Unicode | U+00BB |
| Unicodeブロック | |
| 一般カテゴリ | Final Quote Punctuation (Pf) |
| CSSコード |
| UTF-8 | C2 BB |
| UTF-16 | 00BB |
| UTF-32 | 000000BB |
1\documentclass{article}2\usepackage{pifont}3\guillemotright 4\end{document}以下の方法でほとんどの最新デバイスでright-pointing double angle quotation mark記号を入力できます:
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>各プログラミング言語におけるRight-pointing Double Angle Quotation Mark記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |
\00BB |
| 16進コード | 0x00BB |
| HTMLコード | » |
| LaTeX | \guillemotright |
| 記号 | » |
| URLエンコード(UTF-8パーセント) | %C2%BB |
| 読み上げ名 / スクリーンリーダー | Right-pointing Double Angle Quotation Mark |