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