| Nom du symbole | Halfwidth White Circle |
| Version Unicode | 1.1 |
| Unicode | U+FFEE |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \FFEE |
| Code hexadécimal | 0xFFEE |
| Code HTML | ○ |
| LaTeX | \text{HALFWIDTHWHITECIRCLE} |
| Symbole | ○ |
| Encodage URL (pourcent UTF-8) | %EF%BF%AE |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole halfwidth white circle sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Halfwidth White Circle dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |