| Nome del simbolo | Halfwidth White Circle |
| Versione Unicode | 1.1 |
| Unicode | U+FFEE |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \FFEE |
| Codice esadecimale | 0xFFEE |
| Codice HTML | ○ |
| LaTeX | \text{HALFWIDTHWHITECIRCLE} |
| Simbolo | ○ |
| Codifica URL (percentuale UTF-8) | %EF%BF%AE |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo halfwidth white circle sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Halfwidth White Circle nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |