HTML Entity for Not Asymptotically Equal To (≄)

What You'll Learn
How to display the Not Asymptotically Equal To symbol (≄) in HTML using named, hexadecimal, decimal, and CSS escape methods. This mathematical operator negates asymptotic equality and is used when two functions or sequences are not asymptotically equal (e.g. f(x) ≄ g(x) as x → ∞).
This character is U+2244 (NOT ASYMPTOTICALLY EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF). Render it with the named entity ≄, ≄, ≄, or CSS escape \2244. Compare with Asymptotically Equal To (≃, ≃) and Not Almost Equal To (≉).
⚡ Quick Reference — Not Asymptotically Equal To
U+2244Mathematical Operators
≄Hexadecimal reference
≄Decimal reference
≄HTML5 named entity for U+2244
Name Value
──────────── ──────────
Unicode U+2244
Hex code ≄
HTML code ≄
Named entity ≄
CSS code \2244
Meaning Not asymptotically equal to
Related U+2243 = asymptotically equal (≃, ≃)
U+2248 = almost equal (≈, ≈)
U+2249 = not almost equal (≉)
Block Mathematical Operators (U+2200–U+22FF)Complete HTML Example
A simple example showing ≄ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2244";
}
</style>
</head>
<body>
<p>Symbol (hex): ≄</p>
<p>Symbol (decimal): ≄</p>
<p>Symbol (named): ≄</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
U+2244 is widely supported wherever Unicode Mathematical Operators render correctly:
👀 Live Preview
See ≄ in asymptotic analysis and mathematical relation contexts:
🧠 How It Works
Named Entity
≄ is the HTML named entity for U+2244—the most readable choice when writing asymptotic-relation markup.
Hexadecimal Code
≄ uses the Unicode hexadecimal value 2244 to display the not-asymptotically-equal symbol.
Decimal HTML Code
≄ uses the decimal Unicode value 8772 to display the same character.
CSS Entity
\2244 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ≄. Unicode U+2244 in Mathematical Operators (U+2200–U+22FF).
Use Cases
The ≄ symbol (≄) is commonly used in:
Expressing that functions or sequences are not asymptotically equal.
Calculus, real analysis, and asymptotic theory published as HTML.
Algorithm analysis and complexity notation in online materials.
Big-O and asymptotic growth comparisons in course content.
Interactive math modules with web-based notation.
Unicode charts and HTML entity documentation for math symbols.
💡 Best Practices
Do
- Use
≄for readable asymptotic-relation markup - Distinguish ≄ from ≃ (asymptotically equal) and ≈ (almost equal)
- Pair ≄ with plain-language description on first use
- Use numeric references in generated or XML-first workflows
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ≄ (
≄) with ≃ (≃) - Confuse ≄ with ≉ (not almost equal) or ≈ (almost equal)
- Use padded Unicode notation like U+02244—the correct value is
U+2244 - Put CSS escape
\2244in HTML text nodes - Use
\02244in CSS—the correct escape is\2244
Key Takeaways
Three HTML references plus CSS all render ≄
≄ ≄ ≄For CSS stylesheets, use the escape in the content property
\2244Unicode U+2244 — NOT ASYMPTOTICALLY EQUAL TO
Mathematical Operators block (U+2200–U+22FF)
≄ is the preferred named entity for readable source markup
❓ Frequently Asked Questions
≄ (named), ≄ (hex), ≄ (decimal), or \2244 in CSS content. All produce ≄.U+2244 (NOT ASYMPTOTICALLY EQUAL TO). Mathematical Operators block (U+2200–U+22FF). Hex 2244, decimal 8772. Named entity: ≄.≃) for asymptotic equality and ≈ (≈) for approximate or almost-equal values.≄, ≄, or ≄) go directly in markup. The CSS escape \2244 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.≄ is the named HTML entity for U+2244 and is the most readable option in source markup.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, and more.
8 people found this page helpful
