HTML Entity for Division Slash (∕)

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

What You'll Learn

How to display the Division Slash (∕) in HTML using hexadecimal, decimal, and CSS entity methods. This glyph is U+2215 (DIVISION SLASH) in the Mathematical Operators block (U+2200–U+22FF) and is used for division in fractions and notation (e.g. 1∕2, 3∕4).

There is no named HTML entity for U+2215. Use ∕, ∕, or \2215 in CSS content. Do not confuse with Division (÷, ÷) or the solidus / (U+002F).

⚡ Quick Reference — Division Slash

Unicode U+2215

Mathematical Operators block

Hex Code ∕

Hexadecimal reference

HTML Code ∕

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2215
Hex code       ∕
HTML code      ∕
Named entity   —
CSS code       \2215
1

Complete HTML Example

This example demonstrates the Division Slash symbol (∕) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2215";
  }
 </style>
</head>
<body>
<p>Division Slash using Hexadecimal: &#x2215;</p>
<p>Division Slash using HTML Code: &#8725;</p>
<p id="point">Division Slash using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2215 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 Slash (∕) rendered live in fraction and ratio contexts:

Fractions 1∕2   3∕4   5∕8
Aspect ratio 16∕9 widescreen
vs other slashes ∕ division   / solidus   ÷ obelus   ∣ divides
Large glyph
Monospace refs &#x2215; &#8725; \2215

🧠 How It Works

1

Hexadecimal Code

&#x2215; uses the Unicode hexadecimal value 2215 to display the Division Slash symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8725; uses the decimal Unicode value 8725 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the Division Slash glyph: . Unicode U+2215 is in Mathematical Operators (U+2200–U+22FF). No named HTML entity exists.

Use Cases

The Division Slash symbol (∕) commonly appears in the following scenarios:

½ Fractions

Display 1∕2, 3∕4, and similar fraction notation in math content.

📐 Math notation

Algebra and formulas using a∕b for quotient-style expressions.

📚 Education

Courses and worksheets teaching fractions with proper Unicode symbols.

📅 Ratios & dates

16∕9 aspect ratios or year∕month∕day when a dedicated slash is needed.

📝 Documentation

Technical articles and specs that require the correct division slash character.

📑 Entity references

Math operator lists and HTML entity guides for science projects.

💡 Best Practices

Do

  • Use ∕ for explicit fraction-style division notation
  • Use fonts that cover Mathematical Operators (U+2200–U+22FF)
  • Pair with text or ARIA (“one half”, “divided by”)
  • Pick one numeric style (hex or decimal) per project
  • Link to Division (÷) when users need the obelus

Don’t

  • Expect a named HTML entity (none exists for U+2215)
  • Use / when ∕ is required for semantic correctness
  • Confuse ∕ with ÷ (division sign) or ∣ (divides)
  • Use CSS escape \2215 inside HTML markup
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

Two numeric references render ∕

&#x2215; &#8725;
2

For CSS stylesheets, use the escape in the content property

\2215
3

Unicode U+2215 is DIVISION SLASH for fractions and math notation

4

No named HTML entity—use numeric codes or CSS only

5

Distinct from / (solidus), ÷ (divide), and ∣ (mid)

❓ Frequently Asked Questions

Use &#x2215; (hex), &#8725; (decimal), or \2215 in CSS content. There is no named HTML entity. All three produce ∕.
U+2215 (hex 2215, decimal 8725) in the Mathematical Operators block. Used for division in fractions and mathematical notation.
In fractions (e.g. 1∕2), ratios, mathematical content, and anywhere you need a division slash distinct from the solidus (/) or division sign (÷).
Division Slash (∕, U+2215) is for fraction-style notation (e.g. 3∕4). Division sign (÷, U+00F7, &divide;) is the obelus for arithmetic (e.g. 12 ÷ 3 = 4).
Division Slash (U+2215) is semantically for division in fractions. Solidus (U+002F, /) is the common forward slash for paths, URLs, and informal division. Use ∕ when the distinction matters.

Explore More HTML Entities!

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