| 記号名 | Mathematical Right Double Angle Bracket |
| Unicodeバージョン | 3.2 |
| Unicode | U+27EB |
| Unicodeブロック | |
| 一般カテゴリ | Close Punctuation (Pe) |
| CSSコード |
| UTF-8 | E2 9F AB |
| UTF-16 | 27EB |
| UTF-32 | 000027EB |
1\documentclass{article}2\usepackage{pifont}3\text{MATHEMATICALRIGHTDOUBLEANGLEBRACKET}4\end{document}以下の方法でほとんどの最新デバイスでmathematical right double angle bracket記号を入力できます:
Alt + 10219 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "mathematical right double angle bracket", or use Unicode Hex Input with 27EB.
Ctrl + Shift + U, type 27eb, 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.mathematical-right-double-angle-bracket::before { content: "\27EB"; }1<span>⟫</span>各プログラミング言語におけるMathematical Right Double Angle Bracket記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u27EB' or String.fromCodePoint(10219) |
| Python | '\N{MATHEMATICAL RIGHT DOUBLE ANGLE BRACKET}' or chr(10219) |
| Rust | '\u{27EB}' |
| C / C++ | UTF-8 source or wchar_t with U+27EB |
| Go | string(rune(0x27EB)) |
| Ruby | "\u{27EB}" |
\27EB |
| 16進コード | 0x27EB |
| HTMLコード | ⟫ |
| LaTeX | \text{MATHEMATICALRIGHTDOUBLEANGLEBRACKET} |
| 記号 | ⟫ |
| URLエンコード(UTF-8パーセント) | %E2%9F%AB |
| 読み上げ名 / スクリーンリーダー | Mathematical Right Double Angle Bracket |