HTML Entity for Ring Equal To (≗)

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
U+2257Mathematical Operators
≗Hexadecimal reference
≗Decimal reference
≗Preferred for readability
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 (=)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2257";
}
</style>
</head>
<body>
<p>Symbol (named): ≗</p>
<p>Symbol (hex): ≗</p>
<p>Symbol (decimal): ≗</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Ring Equal To symbol (≗) is universally supported in all modern browsers when the font includes Mathematical Operators glyphs:
👀 Live Preview
See the Ring Equal To symbol (≗) rendered live in different contexts:
≗ in HTML source for clarity over numeric codes.🧠 How It Works
Named Entity
≗ is the semantic named entity for U+2257—the easiest to read in source HTML for ring equality notation.
Hexadecimal Code
≗ uses the Unicode hexadecimal value 2257. The x prefix indicates hexadecimal format.
Decimal HTML Code
≗ uses the decimal Unicode value 8791 to display the same character.
CSS Entity
\2257 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
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:
Represent ring equality in formulas and mathematical documentation.
Use in research papers and scientific documentation.
Include in proofs and formal logic documentation.
Display in algebraic expressions and algebra textbooks.
Use in set-theoretic notation and mathematical set operations.
Reference in equation editors and mathematical notation tools.
💡 Best Practices
Do
- Prefer
≗for readable source markup - Distinguish ≗ from ≖ (ring in equal to) and = (equals sign)
- Add
aria-labelfor 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
\2257inside HTML text nodes - Use HTML entities in JS (use
\u2257instead) - Mix entity styles randomly in one file
- Assume all fonts render ≗ at the same size as text
Key Takeaways
Four methods all render ≗
≗ ≗For CSS, use \2257 in the content property
Unicode U+2257 — RING EQUAL TO in Mathematical Operators
Not the same as ≖ (ring in equal to) or ∘ (ring operator)
Previous: Ring Below Next: Ring In Equal To
❓ Frequently Asked Questions
≗ (hex), ≗ (decimal), ≗ (named entity), or \2257 in CSS content. All render ≗. Prefer ≗ for readability.U+2257 (RING EQUAL TO). Mathematical Operators block (U+2200–U+22FF). Hex 2257, decimal 8791.≗, ≗, or ≗) go in markup. The CSS escape \2257 is used in stylesheets, typically on ::after or ::before.≗ 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.
8 people found this page helpful
