| 記号名 | White Circle With Two Dots |
| Unicodeバージョン | 3.2 |
| Unicode | U+2687 |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \2687 |
| 16進コード | 0x2687 |
| HTMLコード | ⚇ |
| LaTeX | \text{WHITECIRCLEWITHTWODOTS} |
| 記号 | ⚇ |
| URLエンコード(UTF-8パーセント) | %E2%9A%87 |
| 読み上げ名 / スクリーンリーダー | White Circle With Two Dots |
| UTF-8 | E2 9A 87 |
| UTF-16 | 2687 |
| UTF-32 | 00002687 |
1\documentclass{article}2\usepackage{pifont}3\text{WHITECIRCLEWITHTWODOTS}4\end{document}以下の方法でほとんどの最新デバイスでwhite circle with two dots記号を入力できます:
Alt + 9863 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "white circle with two dots", or use Unicode Hex Input with 2687.
Ctrl + Shift + U, type 2687, 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 geometric symbol support.
1span.white-circle-with-two-dots::before { content: "\2687"; }1<span>⚇</span>各プログラミング言語におけるWhite Circle With Two Dots記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u2687' or String.fromCodePoint(9863) |
| Python | '\N{WHITE CIRCLE WITH TWO DOTS}' or chr(9863) |
| Rust | '\u{2687}' |
| C / C++ | UTF-8 source or wchar_t with U+2687 |
| Go | string(rune(0x2687)) |
| Ruby | "\u{2687}" |