HTML Entity for Ring Equal To (≗)

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

What You'll Learn

How to display the Ring Equal To symbol (≗) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+2257 (RING EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF)—a mathematical operator used in equations and logical expressions.

Use ≗, ≗, ≗, or CSS \2257. Do not confuse ≗ with U+2256 (≖, ring in equal to / ≖) or U+003D (=, equals sign).

⚡ Quick Reference — Ring Equal To

Unicode U+2257

Mathematical Operators

Hex Code ≗

Hexadecimal reference

HTML Code ≗

Decimal reference

Named Entity ≗

Preferred for readability

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2257
Hex code       ≗
HTML code      ≗
Named entity   ≗
CSS code       \2257
Related        U+2256 = ring in equal to (≖ / ≖)
               U+2218 = ring operator (∘ / ∘)
               U+003D = equals sign (=)
1

Complete HTML Example

A simple example showing the Ring Equal To symbol (≗) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2257";
  }
 </style>
</head>
<body>
<p>Symbol (named): &cire;</p>
<p>Symbol (hex): &#x2257;</p>
<p>Symbol (decimal): &#8791;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Ring Equal To symbol (≗) is universally supported in all modern browsers when the font includes Mathematical Operators glyphs:

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

👀 Live Preview

See the Ring Equal To symbol (≗) rendered live in different contexts:

Inline equation Define ring equality: ab when a and b are equivalent under the ring structure.
Large glyph
Symbol comparison ≗ ≖ = ∘
Monospace x &cire; y → ring equal to
Numeric refs &cire; &#x2257; &#8791; \2257
Tip Prefer &cire; in HTML source for clarity over numeric codes.

🧠 How It Works

1

Named Entity

&cire; is the semantic named entity for U+2257—the easiest to read in source HTML for ring equality notation.

HTML markup
2

Hexadecimal Code

&#x2257; uses the Unicode hexadecimal value 2257. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2257 is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+2257 sits in the Mathematical Operators block. Previous: Ring Below (U+0325, combining mark).

Use Cases

The Ring Equal To symbol (≗) is commonly used in:

∑ Mathematical Equations

Represent ring equality in formulas and mathematical documentation.

🔬 Scientific Notation

Use in research papers and scientific documentation.

💡 Logical Expressions

Include in proofs and formal logic documentation.

𝜋 Algebra

Display in algebraic expressions and algebra textbooks.

📊 Set Theory

Use in set-theoretic notation and mathematical set operations.

💻 Math Software Docs

Reference in equation editors and mathematical notation tools.

💡 Best Practices

Do

  • Prefer &cire; for readable source markup
  • Distinguish ≗ from ≖ (ring in equal to) and = (equals sign)
  • Add aria-label for standalone symbols in UI
  • Test the glyph across browsers and math fonts
  • Pair ≗ with plain text on first use (e.g. “ring equal to”)

Don’t

  • Confuse ≗ with ≖ (ring in equal to) or ∘ (ring operator)
  • Use CSS escape \2257 inside HTML text nodes
  • Use HTML entities in JS (use \u2257 instead)
  • Mix entity styles randomly in one file
  • Assume all fonts render ≗ at the same size as text

Key Takeaways

1

Four methods all render ≗

&cire; &#x2257;
2

For CSS, use \2257 in the content property

3

Unicode U+2257 — RING EQUAL TO in Mathematical Operators

4

Not the same as ≖ (ring in equal to) or ∘ (ring operator)

5

Previous: Ring Below   Next: Ring In Equal To

❓ Frequently Asked Questions

Use &#x2257; (hex), &#8791; (decimal), &cire; (named entity), or \2257 in CSS content. All render ≗. Prefer &cire; for readability.
U+2257 (RING EQUAL TO). Mathematical Operators block (U+2200–U+22FF). Hex 2257, decimal 8791.
In mathematical equations, scientific notation, logical expressions, algebra, set theory, and any content requiring ring-equality notation.
HTML references (&#8791;, &#x2257;, or &cire;) go in markup. The CSS escape \2257 is used in stylesheets, typically on ::after or ::before.
Yes. &cire; is the standard named HTML entity for U+2257 and is the most readable option in source markup.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, letters, symbols, 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