| Symbol Name | Circled Equals |
| Unicode Version | 1.1 |
| Unicode | U+229C |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \229C |
| Hex Code | 0x229C |
| HTML Code | ⊜ |
| LaTeX | \text{CIRCLEDEQUALS} |
| Symbol | ⊜ |
| URL encode (UTF-8 percent) | %E2%8A%9C |
| Spoken / screen reader name | 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}You can type the circled equals symbol on most modern devices with the help of following methods:
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>Circled Equals symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |