HTML Entity for Geometrically Equivalent To (≎)

What You'll Learn
How to display the Geometrically Equivalent To symbol (≎) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+224E (GEOMETRICALLY EQUIVALENT TO) in the Mathematical Operators block (U+2200–U+22FF).
Render it with ≎, ≎, or CSS escape \224E. There is no named HTML entity. Do not confuse ≎ with geometrically equal to (≑, U+2251, ≑).
⚡ Quick Reference — Geometrically Equivalent To
U+224EMathematical Operators
≎Hexadecimal reference
≎Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+224E
Hex code ≎
HTML code ≎
Named entity (none)
CSS code \224E
Meaning Geometrically equivalent to
Not to confuse U+2251 = geometrically equal to (≑) — ≑Complete HTML Example
This example demonstrates the Geometrically Equivalent To symbol (≎) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\224E";
}
</style>
</head>
<body>
<p>Geometrically Equivalent To using Hexadecimal: ≎</p>
<p>Geometrically Equivalent To using Decimal: ≎</p>
<p id="point">Geometrically Equivalent To using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Geometrically Equivalent To symbol (≎) is widely supported in modern browsers with a math-capable font:
👀 Live Preview
See the Geometrically Equivalent To symbol (≎) in math and geometry contexts:
≑) • ∺ (proportional)🧠 How It Works
Hexadecimal Code
≎ uses the Unicode hexadecimal value 224E to display the Geometrically Equivalent To symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
≎ uses the decimal Unicode value 8782 to display the same character.
CSS Entity
\224E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
No named entity
Unlike geometrically equal to (≑), U+224E has no HTML named entity. Use numeric codes in markup or \224E in CSS.
Same visual result
All three numeric methods produce the glyph: ≎. Unicode U+224E is in Mathematical Operators (U+2200–U+22FF). Next: German Penny Symbol.
Use Cases
The Geometrically Equivalent To symbol (≎) is commonly used in:
Notation involving geometric equivalence between figures or shapes.
Textbooks, proofs, and content that express geometric equivalence.
Papers, specifications, and documentation using mathematical operators.
Online courses, tutorials, and resources for math or geometry.
HTML entity lists, Unicode charts, and math symbol documentation.
Web pages displaying mathematical expressions with proper typography.
💡 Best Practices
Do
- Use
≎or≎consistently (no named entity) - Use math fonts (e.g. Cambria Math) for reliable glyph rendering
- Distinguish ≎ from ≑ and ordinary
= - Consider MathML for complex equations and accessibility
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Use
≑for ≎—that renders ≑, not ≎ - Expect a named entity for U+224E—none exists
- Put CSS escape
\224Ein HTML text nodes - Mix hex and decimal styles randomly in one project
- Rely on the symbol alone without context for screen readers
Key Takeaways
Two HTML numeric references plus CSS render ≎
≎ ≎For CSS stylesheets, use the escape in the content property
\224EUnicode U+224E — GEOMETRICALLY EQUIVALENT TO
Related: ≑ (U+2251, ≑)
Next: German Penny Symbol
❓ Frequently Asked Questions
≎ (hex), ≎ (decimal), or \224E in CSS content. There is no named entity for ≎.U+224E (GEOMETRICALLY EQUIVALENT TO). Mathematical Operators block. Hex 224E, decimal 8782. Related: U+2251 (≑) uses ≑.≎ or ≎) go in markup. The CSS escape \224E is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.≎ or ≎. For geometrically equal to, use ≑ (≑).Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, geometry symbols, and more.
8 people found this page helpful
