HTML Entity for Division Times (⋇)

What You'll Learn
How to display the Division Times symbol (⋇) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+22C7 (DIVISION TIMES) in the Mathematical Operators block (U+2200–U+22FF) and denotes the division-times operation in advanced mathematics (division combined with multiplication).
Render it with the named entity ⋇, ⋇, ⋇, or CSS escape \22C7 in the content property. Do not confuse with Division (÷, ÷) or Division Slash (∕).
⚡ Quick Reference — Division Times
U+22C7Mathematical Operators block
⋇Hexadecimal reference
⋇Decimal reference
⋇Most readable option
Name Value
──────────── ──────────
Unicode U+22C7
Hex code ⋇
HTML code ⋇
Named entity ⋇
CSS code \22C7Complete HTML Example
This example demonstrates the Division Times 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: "\22C7";
}
</style>
</head>
<body>
<p>Division Times using Hexadecimal: ⋇</p>
<p>Division Times using HTML Code: ⋇</p>
<p>Division Times using Named Entity: ⋇</p>
<p id="point">Division Times using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+22C7 is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:
👀 Live Preview
See the Division Times symbol (⋇) rendered live in mathematical contexts:
🧠 How It Works
Named Entity
⋇ is the HTML named entity for the Division Times symbol — easy to remember and readable in source code.
Hexadecimal Code
⋇ uses the Unicode hexadecimal value 22C7 to display the Division Times symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋇ uses the decimal Unicode value 8903 to display the same character.
CSS Entity
\22C7 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the Division Times glyph: ⋇. Unicode U+22C7 is in Mathematical Operators. For ÷, see Division; for ∕, see Division Slash.
Use Cases
The Division Times symbol (⋇) commonly appears in the following scenarios:
Advanced expressions and ring theory using the division-times operator.
Documentation listing mathematical operators including ⋇.
University math, physics, and engineering pages with formal notation.
Logic and set operations where division-times appears in proofs.
Scientific articles and API docs with division-times in formulas.
HTML entity references for math and research projects.
💡 Best Practices
Do
- Use
⋇for readable HTML source - Use fonts that cover Mathematical Operators (U+2200–U+22FF)
- Pair ⋇ with text or ARIA (“division times”) where helpful
- Pick one entity style per project for consistency
- Distinguish ⋇ from ÷ (divide) and × (times)
Don’t
- Use ⋇ when you mean arithmetic division (÷)
- Confuse ⋇ with × (multiplication sign) or ⋅ (dot operator)
- Use CSS escape
\22C7inside HTML markup - Mix hex, decimal, and named styles randomly in one file
- Forget UTF-8 (
<meta charset="utf-8">) in your document
Key Takeaways
Three HTML references all render ⋇
⋇ ⋇ ⋇For CSS stylesheets, use the escape in the content property
\22C7Unicode U+22C7 is DIVISION TIMES in Mathematical Operators
Prefer ⋇ for readability in HTML source
Next in sequence: Divorce Symbol
❓ Frequently Asked Questions
⋇ (named), ⋇ (hex), ⋇ (decimal), or \22C7 in CSS content. All produce ⋇.U+22C7 (hex 22C7, decimal 8903) in the Mathematical Operators block. Used for the division-times operation in advanced mathematics.U+22C7, ⋇) is a specialized math operator. Division sign (÷, U+00F7, ÷) is the obelus for arithmetic (e.g. 12 ÷ 3 = 4).U+22C7 (⋇). Multiplication sign is U+00D7 (×, ×). They are different Unicode characters with different meanings.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, symbols, and more.
8 people found this page helpful
