HTML Entity for Circled Ring Operator (⊚)

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

What You'll Learn

How to display the Circled Ring Operator (⊚) in HTML using numeric references, named entities, and CSS escapes. This character is U+229A (CIRCLED RING OPERATOR) in the Mathematical Operators block (U+2200–U+22FF). It represents a circled ring operator used in formal algebra and operator notation.

You can use the named entity ⊚, hex ⊚, decimal ⊚, or CSS \229A. Do not confuse ⊚ with Circled Times U+2297 (⊗, ⊗), Circled Dot Operator U+2299 (⊙, ⊙), or Bullseye U+25CE (◎).

⚡ Quick Reference — Circled Ring Operator

Unicode U+229A

Mathematical Operators block

Hex Code ⊚

Hexadecimal reference

HTML Code ⊚

Decimal reference

Named Entity ⊚

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+229A
Hex code       ⊚
HTML code      ⊚
Named entity   ⊚
CSS code       \229A
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\229A";
  }
 </style>
</head>
<body>
<p class="math">Circled Ring Operator using Hexa Decimal: &#x229A;</p>
<p class="math">Circled Ring Operator using HTML Code: &#8858;</p>
<p class="math">Circled Ring Operator using HTML Entity: &ocir;</p>
<p class="math" id="point">Circled Ring Operator using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Circled Ring Operator 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 Ring Operator in math and notation contexts:

Binary expression A ⊚ B
Named entity x &ocir; y
Large glyph
vs related ops Ring: ⊚ (U+229A)   Plus: ⊕ (U+2295)   Dot: ⊙ (U+2299)
Monospace refs &#x229A; &#8858; &ocir; \229A

🧠 How It Works

1

Hexadecimal Code

&#x229A; uses the Unicode hexadecimal value 229A to display the Circled Ring Operator.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

&ocir; is the standard named entity for U+229A—short for “operator circle.”

HTML markup
4

CSS Entity

\229A 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 Ring Operator glyph: . Unicode U+229A sits in Mathematical Operators (U+2200–U+22FF).

Use Cases

The Circled Ring Operator (⊚) commonly appears in:

∑ Math notation

Equations and formal notation using the circled ring operator.

⊕ Algebra

Ring product, direct product, and operator notation in algebra.

📐 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 ring operator" for screen readers.

💡 Best Practices

Do

  • Prefer &ocir; 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+229A from U+2297 Circled Times in explanatory text

Don’t

  • Confuse U+229A (⊚) with U+2297 Circled Times (⊗)
  • Put CSS escape \229A inside HTML text nodes
  • Assume every font renders Mathematical Operators identically
  • Use ⊚ decoratively where Bullseye ◎ is intended
  • Mix entity styles randomly in one file

Key Takeaways

1

Named entity is the easiest option

&ocir;
2

Numeric references also render ⊚

&#x229A; &#8858;
3

For CSS stylesheets, use the escape in the content property

\229A
4

U+229A CIRCLED RING OPERATOR

5

Four methods, one glyph — all widely supported

❓ Frequently Asked Questions

Use &ocir; (named entity), &#x229A; (hex), &#8858; (decimal), or \229A in CSS content. All produce ⊚.
U+229A (CIRCLED RING OPERATOR). Mathematical Operators block (U+2200–U+22FF). Hex 229A, decimal 8858.
For mathematical expressions, ring product notation, algebra, scientific documentation, educational math content, and operator symbol reference pages.
HTML entities (&ocir;, &#8858;, or &#x229A;) go directly in markup. The CSS escape \229A is used in stylesheets, typically in the content property of pseudo-elements.
Yes. &ocir; is the named entity for U+229A. Circled Times is a different character: U+2297 (⊗) with &otimes;.

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