| Symbol Name | Halfwidth White Circle |
| Unicode Version | 1.1 |
| Unicode | U+FFEE |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \FFEE |
| Hex Code | 0xFFEE |
| HTML Code | ○ |
| LaTeX | \text{HALFWIDTHWHITECIRCLE} |
| Symbol | ○ |
| URL encode (UTF-8 percent) | %EF%BF%AE |
| Spoken / screen reader name | 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}You can type the halfwidth white circle symbol on most modern devices with the help of following methods:
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 symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |