HTML Entity for Not Parallel To (∦)

What You'll Learn
How to display the Not Parallel To symbol (∦) in HTML using named, hexadecimal, decimal, and CSS escape methods. This geometric relation operator states that two lines or objects are not parallel (e.g. line AB ∦ line CD).
This character is U+2226 (NOT PARALLEL TO) in the Mathematical Operators block (U+2200–U+22FF). Render it with the named entity ∦, ∦, ∦, or CSS escape \2226. Compare with the parallel symbol (∥, ∥, U+2225) and Equal Parallel To (⋕, ⋕).
⚡ Quick Reference — Not Parallel To
U+2226Mathematical Operators
∦Hexadecimal reference
∦Decimal reference
∦HTML5 named entity for U+2226
Name Value
──────────── ──────────
Unicode U+2226
Hex code ∦
HTML code ∦
Named entity ∦
CSS code \2226
Meaning Not parallel to
Related U+2225 = parallel (∥, ∥)
U+22D5 = equal and parallel (⋕, ⋕)
U+22A5 = perpendicular (⊥, ⊥)
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: "\2226";
}
</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+2226 is widely supported wherever Unicode Mathematical Operators render correctly:
👀 Live Preview
See ∦ in geometry and mathematical relation contexts:
🧠 How It Works
Named Entity
∦ is the HTML named entity for U+2226—the most readable choice when writing geometry-relation markup.
Hexadecimal Code
∦ uses the Unicode hexadecimal value 2226 to display the not-parallel symbol.
Decimal HTML Code
∦ uses the decimal Unicode value 8742 to display the same character.
CSS Entity
\2226 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+2226 in Mathematical Operators (U+2200–U+22FF).
Use Cases
The ∦ symbol (∦) is commonly used in:
Expressing that two lines or planes are not parallel.
Textbooks, papers, and lecture notes published as HTML.
Technical drawings and specifications in web documentation.
Computer graphics and geometry courses with web notation.
Interactive math modules with web-based notation.
Unicode charts and HTML entity documentation for math symbols.
💡 Best Practices
Do
- Use
∦for readable geometry-relation markup - Distinguish ∦ from ∥ (parallel) and ⋕ (equal and parallel)
- 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 ⊥ (
⊥, perpendicular) - Use padded Unicode notation like U+02226—the correct value is
U+2226 - Put CSS escape
\2226in HTML text nodes - Use
\02226in CSS—the correct escape is\2226
Key Takeaways
Three HTML references plus CSS all render ∦
∦ ∦ ∦For CSS stylesheets, use the escape in the content property
\2226Unicode U+2226 — NOT PARALLEL TO
Mathematical Operators block (U+2200–U+22FF)
∦ is the preferred named entity for readable source markup
❓ Frequently Asked Questions
∦ (named), ∦ (hex), ∦ (decimal), or \2226 in CSS content. All produce ∦.U+2226 (NOT PARALLEL TO). Mathematical Operators block (U+2200–U+22FF). Hex 2226, decimal 8742. Named entity: ∦.∥, U+2225) for the parallel relation.∦, ∦, or ∦) go directly in markup. The CSS escape \2226 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+2226 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
