HTML Entity for Not Tilde (≁)

What You'll Learn
How to display the Not Tilde symbol (≁) in HTML using named, hexadecimal, decimal, and CSS escape methods. This mathematical operator negates the tilde (similarity) relation (e.g. a ≁ b means a is not similar to b).
This character is U+2241 (NOT TILDE) in the Mathematical Operators block (U+2200–U+22FF). Render it with the named entity ≁, ≁, ≁, or CSS escape \2241. Compare with tilde operator (∼, ∼) and Not Asymptotically Equal To (≄, ≄).
⚡ Quick Reference — Not Tilde
U+2241Mathematical Operators
≁Hexadecimal reference
≁Decimal reference
≁HTML5 named entity for U+2241
Name Value
──────────── ──────────
Unicode U+2241
Hex code ≁
HTML code ≁
Named entity ≁
CSS code \2241
Meaning Not similar to (negated tilde)
Related U+223C = tilde operator (∼, ∼)
U+2242 = minus tilde (≂, ≂)
U+2244 = not asymptotically 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: "\2241";
}
</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+2241 is widely supported wherever Unicode Mathematical Operators render correctly:
👀 Live Preview
See ≁ in mathematics and formal relation notation:
🧠 How It Works
Named Entity
≁ is the HTML named entity for U+2241—the most readable choice when writing mathematical relation markup.
Hexadecimal Code
≁ uses the Unicode hexadecimal value 2241 to display the not-tilde symbol.
Decimal HTML Code
≁ uses the decimal Unicode value 8769 to display the same character.
CSS Entity
\2241 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+2241 in Mathematical Operators (U+2200–U+22FF).
Use Cases
The ≁ symbol (≁) is commonly used in:
Negating the similarity or tilde relation between expressions.
Asymptotic and limit notation where similarity does not hold.
Textbooks, papers, and lecture notes on relations and equivalence.
Discrete math and formal methods courses with web-based notation.
Interactive math modules covering comparison and relation symbols.
Unicode charts and HTML entity documentation for math symbols.
💡 Best Practices
Do
- Use
≁for readable mathematical relation markup - Distinguish ≁ (not similar) from ≄ (
≄, not asymptotically 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 ~ (ASCII tilde, keyboard character) - Confuse
≁with≄(≄, not asymptotically equal) - Use padded Unicode notation like U+02241—the correct value is
U+2241 - Put CSS escape
\2241in HTML text nodes - Use
\02241in CSS—the correct escape is\2241
Key Takeaways
Three HTML references plus CSS all render ≁
≁ ≁ ≁For CSS stylesheets, use the escape in the content property
\2241Unicode U+2241 — NOT TILDE
Mathematical Operators block (U+2200–U+22FF)
≁ is the preferred named entity for readable source markup
❓ Frequently Asked Questions
≁ (named), ≁ (hex), ≁ (decimal), or \2241 in CSS content. All produce ≁.U+2241 (NOT TILDE). Mathematical Operators block (U+2200–U+22FF). Hex 2241, decimal 8769. Named entity: ≁.∼).≁, ≁, or ≁) go directly in markup. The CSS escape \2241 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+2241 and is the most readable option in mathematical markup.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, and more.
8 people found this page helpful
