| Symboolnaam | Circled Equals |
| Unicode-versie | 1.1 |
| Unicode | U+229C |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \229C |
| Hexadecimale code | 0x229C |
| HTML-code | ⊜ |
| LaTeX | \text{CIRCLEDEQUALS} |
| Symbool | ⊜ |
| URL-codering (UTF-8 procent) | %E2%8A%9C |
| Uitgesproken naam / schermlezer | 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}Je kunt het circled equals-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Circled Equals-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |