HTML Entity for All Equal To (≌)

What You'll Learn
How to display the All equal to symbol (≌) in HTML using numeric references, the named entity ≌, or a CSS escape. Unicode assigns this code point the official name All equal to (U+224C). In HTML’s named-entity list the same character is called ≌ (“backward congruent”), a mnemonic label—always match the symbol to the definition used in your textbook or style guide.
The character lives in the Mathematical Operators block (U+2200–U+22FF). You may write ≌, ≌, ≌, or \224C in CSS content.
⚡ Quick Reference — All Equal To Entity
U+224CMathematical Operators block
≌Hexadecimal reference
≌Decimal reference
≌Backward congruent (HTML)
Name Value
──────────── ──────────
Unicode U+224C
Hex code ≌
HTML code ≌
Named entity ≌
CSS code \224CComplete HTML Example
This example shows the All equal to symbol (≌) using hexadecimal code, decimal HTML code, the named entity ≌, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\224C";
}
</style>
</head>
<body>
<p>All Equal To using Hexa Decimal: ≌</p>
<p>All Equal To using HTML Code: ≌</p>
<p>All Equal To using HTML Entity: ≌</p>
<p id="point">All Equal To using CSS Entity: </p>
</body>
</html>🌐 Browser Support
Numeric references, ≌, and CSS escapes for U+224C are supported in all modern browsers. Final appearance depends on font coverage for the Mathematical Operators block:
👀 Live Preview
See the All equal to symbol rendered in typical contexts:
≌ expands to the same ≌ as ≌.🧠 How It Works
Hexadecimal Code
≌ references Unicode 224C in hexadecimal. The x prefix marks a hex numeric character reference.
Decimal HTML Code
≌ is the decimal code point 8780 for the same character—often used when authors think in decimal Unicode values.
Named Entity
≌ is the HTML named entity for U+224C (“backward congruent” in entity lists). It keeps hand-written formulas readable.
CSS Entity (Escape)
\224C is the CSS escape (four hex digits) used in content on ::before / ::after to emit ≌ without placing the raw character in HTML.
Same visual result
All methods render ≌. Unicode is U+224C (Mathematical Operators, U+2200–U+22FF). Official Unicode name: All equal to. HTML also exposes it as ≌.
Use Cases
The All equal to symbol (≌, U+224C) fits these kinds of content:
Equation sheets and blogs where your notation standard specifies this operator between expressions.
Figure captions and proof steps when ≌ is the chosen congruence-style relation symbol.
Formal notation alongside other Mathematical Operators glyphs.
Interactive lessons that mirror textbook character sets.
Symbol tables comparing ≌ to ≈, ≅, ≡, and related relations.
Fallback HTML when LaTeX or MathML is not available for a single relation sign.
Font demos showing Mathematical Operators coverage.
💡 Best Practices
Do
- Use UTF-8; prefer
≌in hand-authored HTML when readability matters - Define notation once (tooltip, glossary, or prose) so readers know how you use ≌
- Pair with math fonts (STIX Two Math, Latin Modern Math, etc.) for consistent operator spacing
- Use numeric references in generated markup or XML-first pipelines if needed
- Use
\224Conly in CSScontent, not inside HTML text nodes
Don’t
- Assume ≌ always means the same as ≅ or ≡ without checking your field’s convention
- Use ≌ alone as the only explanation of a subtle equivalence for a general audience
- Mix hex, decimal, and named forms at random in one template without a style guide
- Paste CSS escapes into HTML markup (they belong in stylesheets)
- Confuse Unicode’s formal name “All equal to” with every informal spoken label for the glyph
Key Takeaways
Three HTML encodings render ≌
≌ ≌ ≌In CSS, use the escape in content on pseudo-elements
\224CUnicode U+224C (All equal to) in Mathematical Operators
HTML named entity ≌ maps to the same code point
Align symbol choice with your notation standard and explain it for readers
❓ Frequently Asked Questions
≌ (hex), ≌ (decimal), ≌ (named), or \224C in CSS content. All produce ≌.U+224C (hex 224C, decimal 8780). Unicode’s official name is All equal to; it sits in the Mathematical Operators block (U+2200–U+22FF). HTML lists the named reference ≌ for the same character.≌, ≌, or ≌. The CSS escape \224C belongs in stylesheets, usually in the content property of ::before or ::after. Same glyph, different layers.≌ refers to U+224C in HTML (“backward congruent” in entity documentation).Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
