| Nom du symbole | Circled X |
| Version Unicode | 7.0 |
| Unicode | U+2BBE |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2BBE |
| Code hexadécimal | 0x2BBE |
| Code HTML | ⮾ |
| LaTeX | \text{CIRCLEDX} |
| Symbole | ⮾ |
| Encodage URL (pourcent UTF-8) | %E2%AE%BE |
| Nom oral / lecteur d’écran | Circled X |
| UTF-8 | E2 AE BE |
| UTF-16 | 2BBE |
| UTF-32 | 00002BBE |
1\documentclass{article}2\usepackage{pifont}3\text{CIRCLEDX}4\end{document}Vous pouvez saisir le symbole circled x sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 11198 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled x", or use Unicode Hex Input with 2BBE.
Ctrl + Shift + U, type 2bbe, 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.circled-x::before { content: "\2BBE"; }1<span>⮾</span>La représentation du symbole Circled X dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2BBE' or String.fromCodePoint(11198) |
| Python | '\N{CIRCLED X}' or chr(11198) |
| Rust | '\u{2BBE}' |
| C / C++ | UTF-8 source or wchar_t with U+2BBE |
| Go | string(rune(0x2BBE)) |
| Ruby | "\u{2BBE}" |