HTML Entity for Circled Minus (⊖)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2296

What You'll Learn

How to display the Circled Minus (⊖) in HTML using numeric references, named entities, and CSS escapes. This character is U+2296 (CIRCLED MINUS) in the Mathematical Operators block (U+2200–U+22FF). It is used in formal math notation for circled subtraction and related set operations.

You can use the named entity ⊖, hex ⊖, decimal ⊖, or CSS \2296. Do not confuse ⊖ with Circled Dash U+229D (⊝, ⊝) or plain Minus Sign U+2212 (−).

⚡ Quick Reference — Circled Minus

Unicode U+2296

Mathematical Operators block

Hex Code ⊖

Hexadecimal reference

HTML Code ⊖

Decimal reference

Named Entity ⊖

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2296
Hex code       ⊖
HTML code      ⊖
Named entity   ⊖
CSS code       \2296
1

Complete HTML Example

This example demonstrates the Circled Minus (⊖) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2296";
  }
 </style>
</head>
<body>
<p class="math">Circled Minus using Hexa Decimal: &#x2296;</p>
<p class="math">Circled Minus using HTML Code: &#8854;</p>
<p class="math">Circled Minus using HTML Entity: &ominus;</p>
<p class="math" id="point">Circled Minus using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Circled Minus entity is universally supported in all modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Circled Minus in math and notation contexts:

Binary expression A ⊖ B
Named entity x &ominus; y
Large glyph
vs related ops Minus: ⊖ (U+2296)   Dash: ⊝ (U+229D)   Slash: ⊘ (U+2298)
Monospace refs &#x2296; &#8854; &ominus; \2296

🧠 How It Works

1

Hexadecimal Code

&#x2296; uses the Unicode hexadecimal value 2296 to display the Circled Minus.

HTML markup
2

Decimal HTML Code

&#8854; uses the decimal Unicode value 8854 to display the same character.

HTML markup
3

Named HTML Entity

&ominus; is the standard named entity for U+2296—short for “operator minus.”

HTML markup
4

CSS Entity

\2296 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the Circled Minus glyph: . Unicode U+2296 sits in Mathematical Operators (U+2200–U+22FF).

Use Cases

The Circled Minus (⊖) commonly appears in:

∑ Math notation

Equations and formal notation using the circled minus operator.

∪ Set theory

Set difference, symmetric difference, and related algebraic notation.

📐 Scientific docs

Technical papers and research content with operator symbols.

📚 Education

Math tutorials, textbooks, and e-learning platforms.

💻 Specs & APIs

Documentation referencing this symbol in formal specifications.

🔤 Symbol references

Unicode tables and math operator glossaries.

♿ Accessibility

Use MathML or aria-label="circled minus operator" for screen readers.

💡 Best Practices

Do

  • Prefer &ominus; for readable math HTML source
  • Use math-friendly fonts (Cambria Math, STIX Two Math, serif)
  • Keep entity style consistent within a document
  • Consider MathML for complex equations
  • Distinguish U+2296 from U+229D Circled Dash in explanatory text

Don’t

  • Confuse U+2296 (⊖) with U+229D Circled Dash (⊝)
  • Put CSS escape \2296 inside HTML text nodes
  • Assume every font renders Mathematical Operators identically
  • Use ⊖ decoratively where a plain minus (−) is intended
  • Mix entity styles randomly in one file

Key Takeaways

1

Named entity is the easiest option

&ominus;
2

Numeric references also render ⊖

&#x2296; &#8854;
3

For CSS stylesheets, use the escape in the content property

\2296
4

U+2296 CIRCLED MINUS — not U+229D

5

Four methods, one glyph — all widely supported

❓ Frequently Asked Questions

Use &ominus; (named entity), &#x2296; (hex), &#8854; (decimal), or \2296 in CSS content. All produce ⊖.
U+2296 (CIRCLED MINUS). Mathematical Operators block (U+2200–U+22FF). Hex 2296, decimal 8854.
For mathematical expressions, set difference or subtraction notation, scientific documentation, educational math content, and operator symbol reference pages.
HTML entities (&ominus;, &#8854;, or &#x2296;) go directly in markup. The CSS escape \2296 is used in stylesheets, typically in the content property of pseudo-elements.
Yes. &ominus; is the named entity for U+2296. Circled Dash is a different character: U+229D (⊝) with &odash;.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, symbols, arrows, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful