HTML Entity for Does Not Divide (∤)

What You'll Learn
How to display the Does Not Divide symbol (∤) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+2224 (DOES NOT DIVIDE) in the Mathematical Operators block (U+2200–U+22FF) and denotes that one integer does not divide another—the negation of “divides” (∣, ∣).
Render it with the named entity ∤, ∤, ∤, or CSS escape \2224. Do not confuse with Division (÷, ÷) or arithmetic slash notation.
⚡ Quick Reference — Does Not Divide
U+2224Mathematical Operators block
∤Hexadecimal reference
∤Decimal reference
∤Most readable option
Name Value
──────────── ──────────
Unicode U+2224
Hex code ∤
HTML code ∤
Named entity ∤
CSS code \2224Complete HTML Example
This example demonstrates the 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: "\2224";
}
</style>
</head>
<body>
<p>Using Hexadecimal: ∤</p>
<p>Using HTML Code: ∤</p>
<p>Using Named Entity: ∤</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2224 is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:
👀 Live Preview
See the Does Not Divide symbol (∤) in number-theory notation:
🧠 How It Works
Named Entity
∤ is the HTML named entity for Does Not Divide — readable and widely used in divisibility markup.
Hexadecimal Code
∤ uses the Unicode hexadecimal value 2224. The x prefix indicates hexadecimal format.
Decimal HTML Code
∤ uses the decimal Unicode value 8740 to display the same character.
CSS Entity
\2224 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+2224 negates divides (∣, ∣). For ÷, see Division.
Use Cases
The symbol (∤) commonly appears in the following scenarios:
When a ∤ b means a does not divide b (e.g. 5 ∤ 12).
Papers and proofs using correct divisibility Unicode symbols.
Courses teaching ∣ and ∤ in discrete math and algebra.
Divisibility rules and factorization exercises on the web.
Web math notation needing the proper does-not-divide glyph.
HTML entity references for education and research.
💡 Best Practices
Do
- Use
∤for readable HTML source - Pair with Divides (
∣, ∣) when teaching pairs - Use fonts that cover Mathematical Operators (U+2200–U+22FF)
- Pair with text or ARIA (“does not divide”)
- Pick one entity style per project for consistency
Don’t
- Confuse ∤ (divisibility) with ÷ (division sign)
- Swap
∤and∣(different meanings) - Use CSS escape
\2224inside HTML markup - Mix hex, decimal, and named styles randomly in one file
- Rely on the symbol alone without accessible description
Key Takeaways
Three HTML references all render ∤
∤ ∤ ∤For CSS stylesheets, use the escape in the content property
\2224Unicode U+2224 is DOES NOT DIVIDE in number theory
Negation of ∣ divides (∣)
Next: Does Not Exist
❓ Frequently Asked Questions
∤ (named), ∤ (hex), ∤ (decimal), or \2224 in CSS content. All produce ∤.U+2224 (hex 2224, decimal 8740) in the Mathematical Operators block. It means “does not divide” (negation of ∣).U+2224, ∤) means does not divide. ∣ (U+2223, ∣) means divides. They are negations of each other.U+00F7, ÷) is the obelus for arithmetic division (e.g. 12 ÷ 3 = 4).Explore More HTML Entities!
Discover 1500+ HTML character references — divisibility, operators, and more.
8 people found this page helpful
