HTML Entity for Circled Minus (⊖)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2296

What Is the Circled Minus Entity?

Circled Minus (⊖) is the Unicode character at U+2296 in the Mathematical Operators block (official name: CIRCLED MINUS). It shows a minus sign inside a circle and is used in math and formal notation for a circled subtraction-style operator.

Remember
Character     ⊖
Unicode       U+2296
Hex entity    ⊖
Decimal       ⊖
Named entity  ⊖
CSS escape    \2296

All of these produce the same glyph: ⊖. Prefer ⊖ or a typed ⊖ in hand-written HTML; use numeric forms when generating markup.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⊖HTML text (UTF-8)
Named entity⊖HTML markup
Hex entity⊖HTML markup
Decimal entity⊖HTML markup
CSS escape\2296Stylesheet content

When to use which

SituationUse
Hand-written HTML⊖ or type ⊖
Generated / numeric-only markup⊖ or ⊖
Generated text via ::before / ::aftercontent: "\2296"
Circled dash (look-alike)Use ⊝ (U+229D), not ⊖
Everyday subtractionUse - or minus − (−)

Live Preview

Circled Minus rendered in common writing contexts.

Inline text A ⊖ B
Large glyph ⊖
Compared ⊖   ⊝   ⊕   −
Monospace op ⊖ → circled minus
With entities Named: ⊖ | Hex: ⊖ | Decimal: ⊖

Complete HTML Example

One page that shows Circled Minus with the named entity, hex entity, decimal entity, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to produce ⊖ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Circled Minus (⊖) in HTML</title>
  <style>
    #point::after {
      content: "\2296";
    }
  </style>
</head>
<body>
  <p>Circled Minus using Named Entity: &ominus;</p>
  <p>Circled Minus using Hex Code: &#x2296;</p>
  <p>Circled Minus using HTML Code: &#8854;</p>
  <p id="point">Circled Minus using CSS Entity: </p>
  <p>Typed directly: ⊖</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &ominus; is the HTML5 named reference for U+2296 → ⊖.

2. Hex: U+2296 → &#x2296; in HTML. Same glyph as the named form.

3. Decimal: same code point as 8854 → &#8854;. Same result as hex.

4. CSS: use \2296 in content (not an HTML entity). #point::after appends that ⊖ after the paragraph text.

5. Typed ⊖: fine in UTF-8 pages. All five lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with Circled Minus entities.

Named

Use &ominus;

The HTML5 name is &ominus;. Always end with ;.

CSS vs HTML

Do not mix escapes

\2296 belongs in CSS. &ominus; / &#x2296; / &#8854; belong in HTML.

⊖ vs ⊝

Different characters

⊖ is U+2296 (circled minus). Circled dash ⊝ is U+229D.

Meaning

Math operator, not hyphen

Use ⊖ for formal notation. Use - or &minus; for ordinary subtraction.

Semicolon

End references

Always finish with ; — write &ominus; and &#8854;, not bare forms.

Fonts

Math font coverage

Some UI fonts lack ⊖. If missing, name the operator in nearby text.

Browser Support

Circled Minus (U+2296) and its entity forms (&ominus;, &#x2296;, &#8854;, CSS \\2296) are supported in all mainstream browsers.

✓ Universal support

Circled Minus (⊖)

Type ⊖, or encode with named, hex, decimal, or CSS escape — same glyph everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2296 / entities Full support

Bottom line: Prefer &ominus; or a typed ⊖ for math notation. Use decimal when generating markup, and \\2296 only inside CSS content.

Key Takeaways

  • Unicode: circled minus is U+2296 (decimal 8854).
  • HTML: prefer &ominus; (also &#x2296;, &#8854;).
  • CSS: use \2296 inside content for generated text.
  • Watch out: ⊖ ≠ ⊝ (circled minus ≠ circled dash).

One line: U+2296 → &ominus; / &#x2296; / &#8854; / CSS \2296.

Frequently Asked Questions

Use &#x2296; (hex), &#8854; (decimal), &ominus; (named), or the CSS escape \2296 in the content property. All render ⊖. You can also paste ⊖ directly when your file is UTF-8.
U+2296 (hex 2296, decimal 8854). Unicode names it CIRCLED MINUS. It belongs to the Mathematical Operators block.
Yes. &ominus; maps to U+2296. Prefer &ominus; in hand-written HTML; numeric forms are useful in generated markup.
⊖ (U+2296) is circled minus. ⊝ (U+229D) is circled dash — a related but different math operator with its own code point.
HTML entities (&#8854;, &#x2296;, or &ominus;) go in markup. The CSS escape \2296 is used in stylesheets (usually in the content property of ::before/::after). Both render ⊖.
Use it in math or set-style notation when you need this exact circled-minus operator. Prefer a plain hyphen or minus sign (−) for everyday subtraction.

Did you know?

Circled minus is Unicode U+2296 (decimal 8854) — official name CIRCLED MINUS in the Mathematical Operators block. HTML’s named reference is &ominus;. It is not circled dash (U+229D ⊝).

Next: Circled Open Centre Eight Pointed Star

Learn the HTML entity for circled open centre eight pointed star (❂).

Circled Open Centre Eight Pointed Star tutorial →

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