HTML Entity for Division (÷)

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

What You'll Learn

How to display the Division sign (÷) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+00F7 (DIVISION SIGN) in the Latin-1 Supplement block (U+0080–U+00FF) and denotes the arithmetic division operation (e.g. 12 ÷ 3 = 4).

Render it with the named entity ÷, ÷, ÷, or CSS escape \00F7 in the content property. For the divisibility relation ab, use Divides (∣), not ÷.

⚡ Quick Reference — Division

Unicode U+00F7

Latin-1 Supplement (U+0080–U+00FF)

Hex Code ÷

Hexadecimal reference

HTML Code ÷

Decimal reference

Named Entity ÷

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00F7
Hex code       ÷
HTML code      ÷
Named entity   ÷
CSS code       \00F7
1

Complete HTML Example

This example demonstrates the Division sign (÷) 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: "\00F7";
  }
 </style>
</head>
<body>
<p>Division using Hexadecimal: &#x00F7;</p>
<p>Division using HTML Code: &#247;</p>
<p>Division using Named Entity: &divide;</p>
<p id="point">Division using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+00F7 is universally supported in all modern browsers; the division sign is one of the most common math symbols on the web:

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

👀 Live Preview

See the Division sign (÷) rendered live in arithmetic contexts:

Arithmetic 12 ÷ 3 = 4  •  20 ÷ 4 = 5
Large glyph ÷
vs divides ÷ operation   ∣ divisibility relation
vs slash ÷ U+00F7   / U+002F
Monospace refs &divide; &#x00F7; &#247; \00F7

🧠 How It Works

1

Named Entity

&divide; is the HTML named entity for the Division sign — easy to remember and widely used in arithmetic markup.

HTML markup
2

Hexadecimal Code

&#x00F7; uses the Unicode hexadecimal value 00F7 to display the Division sign. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\00F7 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 sign: ÷. Unicode U+00F7 is in Latin-1 Supplement. For ab, use Divides (&mid;).

Use Cases

The Division sign (÷) commonly appears in the following scenarios:

🔢 Arithmetic

Expressions like 20 ÷ 4 = 5 in worksheets, quizzes, and calculator UIs.

📐 Fractions & ratios

Speed = distance ÷ time and other “divided by” formulas in science content.

📚 Education

Online courses and e-learning teaching division and basic math.

💻 Calculators

Web calculators and tools that display division operations to users.

📝 Documentation

quotient = dividend ÷ divisor in technical articles and API docs.

📑 Entity references

Arithmetic symbol lists and HTML entity guides for education apps.

💡 Best Practices

Do

  • Use &divide; for readable source markup
  • Pick one style (hex / decimal / named) per project
  • Pair ÷ with text or ARIA (“divided by”) for accessibility
  • Use ÷ for arithmetic, &mid; for divisibility
  • Prefer ÷ over informal / in formal math content

Don’t

  • Confuse ÷ (operation) with ∣ (divides relation)
  • Use CSS escape \00F7 inside HTML markup
  • Assume / and ÷ are always interchangeable
  • Mix entity styles randomly in one file
  • Forget UTF-8 (<meta charset="utf-8">) in your document

Key Takeaways

1

Three HTML references all render ÷

&#x00F7; &#247; &divide;
2

For CSS stylesheets, use the escape in the content property

\00F7
3

Unicode U+00F7 is the standard division sign (obelus) in Latin-1 Supplement

4

Prefer &divide; for readability in HTML source

5

Next in sequence: Division Slash (U+2215)

❓ Frequently Asked Questions

Use &divide; (named), &#x00F7; (hex), &#247; (decimal), or \00F7 in CSS content. All produce ÷.
U+00F7 (hex 00F7, decimal 247) in the Latin-1 Supplement block. It denotes the arithmetic division operation.
In mathematical content, arithmetic expressions, fractions, educational pages, calculators, and any web content that shows division (e.g. 10 ÷ 2 = 5).
&divide; (U+00F7) is the division sign for arithmetic (e.g. 6 ÷ 2 = 3). &mid; (U+2223) is the divides relation for number theory (e.g. 3∣12). Use each for its intended meaning.
No. ÷ (U+00F7, &divide;) is the obelus for formal arithmetic. / (U+002F) is a general slash. For the division slash, see Division Slash (U+2215).

Explore More HTML Entities!

Discover 1500+ HTML character references — arithmetic symbols, operators, 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