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