| Nome del simbolo | Circled Equals |
| Versione Unicode | 1.1 |
| Unicode | U+229C |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \229C |
| Codice esadecimale | 0x229C |
| Codice HTML | ⊜ |
| LaTeX | \text{CIRCLEDEQUALS} |
| Simbolo | ⊜ |
| Codifica URL (percentuale UTF-8) | %E2%8A%9C |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo circled equals sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Circled Equals nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |