HTML Entity for Division Times (⋇)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+22C7

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

Unicode U+22C7

Mathematical Operators block

Hex Code ⋇

Hexadecimal reference

HTML Code ⋇

Decimal reference

Named Entity ⋇

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22C7
Hex code       ⋇
HTML code      ⋇
Named entity   ⋇
CSS code       \22C7
1

Complete 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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22C7";
  }
 </style>
</head>
<body>
<p>Division Times using Hexadecimal: &#x22C7;</p>
<p>Division Times using HTML Code: &#8903;</p>
<p>Division Times using Named Entity: &divonx;</p>
<p id="point">Division Times using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22C7 is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Division Times symbol (⋇) rendered live in mathematical contexts:

Notation a ⋇ b  •  x ⋇ y ⋇ z
Large glyph
vs related ops ⋇ division times   ÷ divide   ∕ div slash   × times
Named entity &divonx; → ⋇
Monospace refs &divonx; &#x22C7; &#8903; \22C7

🧠 How It Works

1

Named Entity

&divonx; is the HTML named entity for the Division Times symbol — easy to remember and readable in source code.

HTML markup
2

Hexadecimal Code

&#x22C7; uses the Unicode hexadecimal value 22C7 to display the Division Times symbol. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#8903; uses the decimal Unicode value 8903 to display the same character.

HTML markup
4

CSS Entity

\22C7 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

∑ Algebra

Advanced expressions and ring theory using the division-times operator.

📐 Operator refs

Documentation listing mathematical operators including ⋇.

📚 Academia

University math, physics, and engineering pages with formal notation.

🔢 Set theory

Logic and set operations where division-times appears in proofs.

📝 Documentation

Scientific articles and API docs with division-times in formulas.

📑 Entity guides

HTML entity references for math and research projects.

💡 Best Practices

Do

  • Use &divonx; 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 \22C7 inside HTML markup
  • Mix hex, decimal, and named styles randomly in one file
  • Forget UTF-8 (<meta charset="utf-8">) in your document

Key Takeaways

1

Three HTML references all render ⋇

&#x22C7; &#8903; &divonx;
2

For CSS stylesheets, use the escape in the content property

\22C7
3

Unicode U+22C7 is DIVISION TIMES in Mathematical Operators

4

Prefer &divonx; for readability in HTML source

5

Next in sequence: Divorce Symbol

❓ Frequently Asked Questions

Use &divonx; (named), &#x22C7; (hex), &#8903; (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.
In algebra, physics, set theory, and any content that needs the division-times (⋇) operator—combining division and multiplication concepts in formal notation.
Division Times (⋇, U+22C7, &divonx;) is a specialized math operator. Division sign (÷, U+00F7, &divide;) is the obelus for arithmetic (e.g. 12 ÷ 3 = 4).
No. Division Times is U+22C7 (⋇). Multiplication sign is U+00D7 (×, &times;). They are different Unicode characters with different meanings.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful