| Symbolname | Circled Minus |
| Unicode-Version | 1.1 |
| Unicode | U+2296 |
| Unicode-Block | |
| Allgemeine Kategorie | Math Symbol (Sm) |
| CSS-Code | \2296 |
| Hexadezimalcode | 0x2296 |
| HTML-Code | ⊖ |
| LaTeX | \ominus |
| Symbol | ⊖ |
| URL-Kodierung (UTF-8-Prozent) | %E2%8A%96 |
| Ansagename (Screenreader) | Circled Minus |
| UTF-8 | E2 8A 96 |
| UTF-16 | 2296 |
| UTF-32 | 00002296 |
1\documentclass{article}2\usepackage{pifont}3\ominus 4\end{document}Sie können das Symbol circled minus auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
Alt + 8854 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled minus", or use Unicode Hex Input with 2296.
Ctrl + Shift + U, type 2296, 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-minus::before { content: "\2296"; }1<span>⊖</span>Die Darstellung des Symbols Circled Minus in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| JavaScript / TypeScript | '\u2296' or String.fromCodePoint(8854) |
| Python | '\N{CIRCLED MINUS}' or chr(8854) |
| Rust | '\u{2296}' |
| C / C++ | UTF-8 source or wchar_t with U+2296 |
| Go | string(rune(0x2296)) |
| Ruby | "\u{2296}" |