| Symbolname | Circled Equals |
| Unicode-Version | 1.1 |
| Unicode | U+229C |
| Unicode-Block | |
| Allgemeine Kategorie | Math Symbol (Sm) |
| CSS-Code | \229C |
| Hexadezimalcode | 0x229C |
| HTML-Code | ⊜ |
| LaTeX | \text{CIRCLEDEQUALS} |
| Symbol | ⊜ |
| URL-Kodierung (UTF-8-Prozent) | %E2%8A%9C |
| Ansagename (Screenreader) | 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}Sie können das Symbol circled equals auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Circled Equals in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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}" |