HTML Entity for Fraction 5 By 8 (⅝)

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

What You'll Learn

How to display the Fraction 5 By 8 symbol (⅝) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+215D (VULGAR FRACTION FIVE EIGHTHS) in the Number Forms block (U+2150–U+218F)—a vulgar fraction representing 5⁄8 (five eighths).

Render it with the named entity ⅝, ⅝, ⅝, or CSS escape \215D. Do not confuse ⅝ with three eighths (⅜, U+215C, ⅜), one eighth (⅛, U+215B, ⅛), or plain text 5/8.

⚡ Quick Reference — Fraction 5 By 8

Unicode U+215D

Number Forms

Hex Code ⅝

Hexadecimal reference

HTML Code ⅝

Decimal reference

Named Entity ⅝

Five eighths (most readable)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+215D
Hex code       ⅝
HTML code      ⅝
Named entity   ⅝
CSS code       \215D
Meaning        Vulgar fraction five eighths (5/8)
Related        U+215C = Three eighths (⅜); U+215B = One eighth (⅛)
1

Complete HTML Example

This example demonstrates the Fraction 5 By 8 symbol (⅝) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\215D";
  }
 </style>
</head>
<body>
<p>Fraction 5 By 8 using Hexadecimal: &#x215D;</p>
<p>Fraction 5 By 8 using HTML Code: &#8541;</p>
<p>Fraction 5 By 8 using HTML Entity: &frac58;</p>
<p id="point">Fraction 5 By 8 using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Fraction 5 By 8 (⅝) is widely supported in modern browsers with a suitable font:

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

👀 Live Preview

See the vulgar fraction five eighths (⅝) in recipes, math, and compared with related glyphs:

Recipe ⅝ cup flour   ⅝ tsp vanilla
Math 8 × ⅝ = 5   ⅝ = 62.5%
Large glyph
Vulgar fractions ⅛ eighth   ⅜ three-eighths   ⅝ five-eighths
Entity refs &frac58; &#x215D; &#8541; \215D

🧠 How It Works

1

Named Entity

&frac58; is the HTML named entity for five eighths—often preferred in readable recipe and math markup.

HTML markup
2

Hexadecimal Code

&#x215D; uses the Unicode hexadecimal value 215D. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\215D 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: . Unicode U+215D in Number Forms. For three eighths, see Fraction 3 By 8 (⅜).

Use Cases

The Fraction 5 By 8 symbol (⅝) is commonly used in:

🍳 Recipes

Cooking sites and measurements (e.g. ⅝ cup, ⅝ teaspoon).

∑ Math

Equations, fractions, and math content using five eighths.

📚 Education

Textbooks, tutorials, and lessons on fractions and ratios.

📊 Data

Statistics, scores, and displays showing five-eighths or proportional shares.

📄 Documents

Legal, academic, or technical documents with vulgar fractions.

🌐 Symbol guides

HTML entity lists, Unicode charts, and character references.

💡 Best Practices

Do

  • Use &frac58; for readable HTML in recipes and math
  • Pair with units (e.g. ⅝ cup) for clear measurements
  • Use math-friendly fonts (Cambria Math, STIX Two Math) for clear fractions
  • Add aria-label (e.g. “five eighths”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⅝ (five eighths) with ⅜ (three eighths, U+215C)
  • Confuse ⅝ (5⁄8) with ⅛ (one eighth, U+215B)
  • Put CSS escape \215D in HTML text nodes
  • Mix entity styles randomly in one file
  • Use 5/8 when typographic ⅝ is required for consistency

Key Takeaways

1

Three HTML references plus CSS all render ⅝

&#x215D; &#8541; &frac58;
2

For CSS stylesheets, use the escape in the content property

\215D
3

Unicode U+215D — vulgar fraction five eighths

4

&frac58; is the standard named entity

5

Next: Fraction 7 By 8 (continues the sequence)

❓ Frequently Asked Questions

Use &frac58; (named), &#x215D; (hex), &#8541; (decimal), or \215D in CSS content. All produce ⅝.
U+215D (VULGAR FRACTION FIVE EIGHTHS). Number Forms block (U+2150–U+218F). Hex 215D, decimal 8541. Represents the vulgar fraction five eighths (⅝).
In mathematical notation and fractions, recipes and measurements, educational content, data display, and any content that requires the five-eighths (⅝) symbol in typographic form.
Yes. &frac58; is the named HTML entity for U+215D (⅝). You can also use &#8541; (decimal) or &#x215D; (hexadecimal). All render the same symbol.
HTML entities (&#8541;, &#x215D;, or &frac58;) go directly in markup. The CSS escape \215D 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.

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