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