HTML Entity for Fraction 5 By 6 (⅚)

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

What You'll Learn

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

Render it with the named entity ⅚, ⅚, ⅚, or CSS escape \215A. Do not confuse ⅚ with one sixth (⅙, U+2159, ⅙), one fifth (⅕, U+2155, ⅕), or plain text 5/6.

⚡ Quick Reference — Fraction 5 By 6

Unicode U+215A

Number Forms

Hex Code ⅚

Hexadecimal reference

HTML Code ⅚

Decimal reference

Named Entity ⅚

Five sixths (most readable)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+215A
Hex code       ⅚
HTML code      ⅚
Named entity   ⅚
CSS code       \215A
Meaning        Vulgar fraction five sixths (5/6)
Related        U+2159 = One sixth (⅙); U+2155 = One fifth (⅕)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\215A";
  }
 </style>
</head>
<body>
<p>Fraction 5 By 6 using Hexadecimal: &#x215A;</p>
<p>Fraction 5 By 6 using HTML Code: &#8538;</p>
<p>Fraction 5 By 6 using HTML Entity: &frac56;</p>
<p id="point">Fraction 5 By 6 using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Fraction 5 By 6 (⅚) 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 sixths (⅚) in math and compared with related fraction glyphs:

Share ⅚ of a whole
Math 6 × ⅚ = 5   ⅚ = 83.33%
Large glyph
Vulgar fractions ⅙ sixth   ⅚ five-sixths   ⅘ four-fifths
Entity refs &frac56; &#x215A; &#8538; \215A

🧠 How It Works

1

Named Entity

&frac56; is the HTML named entity for five sixths—often preferred in readable math and educational markup.

HTML markup
2

Hexadecimal Code

&#x215A; uses the Unicode hexadecimal value 215A. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\215A 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+215A in Number Forms. For one sixth, see Fraction 1 By 6 (⅙).

Use Cases

The Fraction 5 By 6 symbol (⅚) is commonly used in:

🍳 Recipes

Proportions and measurements (e.g. ⅚ of a total).

∑ Math

Equations, fractions, and math content using five sixths.

📚 Education

Textbooks, tutorials, and lessons on fractions and ratios.

📊 Data

Statistics, scores, and displays showing sixths 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 &frac56; 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 sixths”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⅚ (five sixths) with ⅙ (one sixth, U+2159)
  • Confuse ⅚ (5⁄6) with ⅕ (one fifth, U+2155)
  • Put CSS escape \215A in HTML text nodes
  • Mix entity styles randomly in one file
  • Use 5/6 when typographic ⅚ is required for consistency

Key Takeaways

1

Three HTML references plus CSS all render ⅚

&#x215A; &#8538; &frac56;
2

For CSS stylesheets, use the escape in the content property

\215A
3

Unicode U+215A — vulgar fraction five sixths

4

&frac56; is the standard named entity

5

Next: Fraction 5 By 8 (continues the sequence)

❓ Frequently Asked Questions

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