HTML Entity for Fraction Slash (⁄)

What You'll Learn
How to display the Fraction Slash character (⁄) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2044 (FRACTION SLASH) in the General Punctuation block (U+2000–U+206F)—a separator used to compose fractions such as 1⁄2 or 3⁄4.
Render it with the named entity ⁄, ⁄, ⁄, or CSS escape \2044. Do not confuse ⁄ with the solidus (/, U+002F), vulgar fractions like ½ (U+00BD, ½), or typing 1/2 with a regular slash.
⚡ Quick Reference — Fraction Slash
U+2044General Punctuation
⁄Hexadecimal reference
⁄Decimal reference
⁄Fraction slash (most readable)
Name Value
──────────── ──────────
Unicode U+2044
Hex code ⁄
HTML code ⁄
Named entity ⁄
CSS code \2044
Meaning Fraction slash (builds e.g. 1⁄2, 3⁄4)
Related U+002F = Solidus (/); U+00BD = One half (½)Complete HTML Example
This example demonstrates the Fraction Slash symbol (⁄) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2044";
}
</style>
</head>
<body>
<p>Fraction Slash using Hexadecimal: ⁄</p>
<p>Fraction Slash using HTML Code: ⁄</p>
<p>Fraction Slash using HTML Entity: ⁄</p>
<p id="point">Fraction Slash using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Fraction Slash (⁄) is widely supported in modern browsers with a suitable font:
👀 Live Preview
See the fraction slash (⁄) used to build fractions and compared with related characters:
🧠 How It Works
Named Entity
⁄ is the HTML named entity for fraction slash—often preferred in readable recipe and math markup.
Hexadecimal Code
⁄ uses the Unicode hexadecimal value 2044. The x prefix indicates hexadecimal format.
Decimal HTML Code
⁄ uses the decimal Unicode value 8260 to display the same character.
CSS Entity
\2044 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+2044 in General Punctuation. For a precomposed half, see Fraction 1 By 2 (½).
Use Cases
The Fraction Slash symbol (⁄) is commonly used in:
Cooking sites and measurements (e.g. 1⁄2 cup, 3⁄4 teaspoon).
Equations and math content built from digits with ⁄ between numerator and denominator.
Textbooks, tutorials, and lessons on fractions and ratios.
Statistics, ratios, and proportional displays (e.g. 2⁄3 of respondents).
Legal, academic, or technical documents with composed fractions.
HTML entity lists, Unicode charts, and character references.
💡 Best Practices
Do
- Use
⁄for readable HTML in recipes and math - Pair digits on both sides (e.g. 1⁄2 cup) for clear measurements
- Use math-friendly fonts (Cambria Math, STIX Two Math) for clear fractions
- Add
aria-labelon composed fractions (e.g. “one half”) for accessibility - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ⁄ (fraction slash) with
/(solidus, U+002F) - Use ⁄ when a single vulgar fraction glyph (e.g. ½) is available and preferred
- Put CSS escape
\2044in HTML text nodes - Mix entity styles randomly in one file
- Use
1/2when typographic 1⁄2 is required for consistency
Key Takeaways
Three HTML references plus CSS all render ⁄
⁄ ⁄ ⁄For CSS stylesheets, use the escape in the content property
\2044Unicode U+2044 — FRACTION SLASH separator
⁄ is the standard named entity
Next: French Franc Sign (₣) (continues the sequence)
❓ Frequently Asked Questions
⁄ (named), ⁄ (hex), ⁄ (decimal), or \2044 in CSS content. All produce ⁄.U+2044 (FRACTION SLASH). General Punctuation block (U+2000–U+206F). Hex 2044, decimal 8260. Used between digits to build fractions like 1⁄2 (⁄).⁄ is the named HTML entity for U+2044 (⁄). You can also use ⁄ (decimal) or ⁄ (hexadecimal). All render the same symbol.⁄, ⁄, or ⁄) go directly in markup. The CSS escape \2044 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — fractions, symbols, and more.
8 people found this page helpful
