HTML Entity for Ring In Equal To (≖)

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

What You'll Learn

How to display the Ring In Equal To symbol (≖) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+2256 (RING IN EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF)—a mathematical operator with a ring inside the equals sign.

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

⚡ Quick Reference — Ring In Equal To

Unicode U+2256

Mathematical Operators

Hex Code ≖

Hexadecimal reference

HTML Code ≖

Decimal reference

Named Entity ≖

Preferred for readability

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

Complete HTML Example

A simple example showing the Ring In 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: "\2256";
  }
 </style>
</head>
<body>
<p>Symbol (named): &eqcirc;</p>
<p>Symbol (hex): &#x2256;</p>
<p>Symbol (decimal): &#8790;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Ring In 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 In Equal To symbol (≖) rendered live in different contexts:

Inline equation Express a relation: ab denotes ring-in-equality between a and b.
Large glyph
Symbol comparison ≖ ≗ = ∘
Monospace x &eqcirc; y → ring in equal to
Numeric refs &eqcirc; &#x2256; &#8790; \2256
Tip Prefer &eqcirc; in HTML source for clarity over numeric codes.

🧠 How It Works

1

Named Entity

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

HTML markup
2

Hexadecimal Code

&#x2256; uses the Unicode hexadecimal value 2256. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2256 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+2256 sits in the Mathematical Operators block. Previous: Ring Equal To (U+2257, &cire;).

Use Cases

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

∑ Mathematical Equations

Represent ring-in-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 &eqcirc; for readable source markup
  • Distinguish ≖ from ≗ (ring 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 in equal to”)

Don’t

  • Confuse ≖ with ≗ (ring equal to) or ∘ (ring operator)
  • Use the incorrect entity &ecir;—the correct name is &eqcirc;
  • Use CSS escape \2256 inside HTML text nodes
  • Use HTML entities in JS (use \u2256 instead)
  • Assume all fonts render ≖ at the same size as text

Key Takeaways

1

Four methods all render ≖

&eqcirc; &#x2256;
2

For CSS, use \2256 in the content property

3

Unicode U+2256 — RING IN EQUAL TO in Mathematical Operators

4

Not the same as ≗ (ring equal to / &cire;) or = (equals)

❓ Frequently Asked Questions

Use &#x2256; (hex), &#8790; (decimal), &eqcirc; (named entity), or \2256 in CSS content. All render ≖. Prefer &eqcirc; for readability.
U+2256 (RING IN EQUAL TO). Mathematical Operators block (U+2200–U+22FF). Hex 2256, decimal 8790.
In mathematical equations, scientific notation, logical expressions, algebra, set theory, and any content requiring ring-in-equality notation.
HTML references (&#8790;, &#x2256;, or &eqcirc;) go in markup. The CSS escape \2256 is used in stylesheets, typically on ::after or ::before.
Yes. &eqcirc; is the standard named HTML entity for U+2256. Do not use &ecir;, which is not defined for this character.

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