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