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