HTML Entity for Fraction 3 By 5 (⅗)

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

What You'll Learn

How to display the Fraction 3 By 5 symbol (⅗) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2157 (VULGAR FRACTION THREE FIFTHS) in the Number Forms block (U+2150–U+218F)—a vulgar fraction representing 3⁄5 (three fifths).

Render it with the named entity ⅗, ⅗, ⅗, or CSS escape \2157. Do not confuse ⅗ with two fifths (⅖, U+2156), four fifths (⅘, U+2158), or plain text 3/5.

⚡ Quick Reference — Fraction 3 By 5

Unicode U+2157

Number Forms

Hex Code ⅗

Hexadecimal reference

HTML Code ⅗

Decimal reference

Named Entity ⅗

Three fifths (most readable)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2157
Hex code       ⅗
HTML code      ⅗
Named entity   ⅗
CSS code       \2157
Meaning        Vulgar fraction three fifths (3/5)
Related        U+2156 = Two fifths (⅖); U+2158 = Four fifths (⅘)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2157";
  }
 </style>
</head>
<body>
<p>Fraction 3 By 5 using Hexadecimal: &#x2157;</p>
<p>Fraction 3 By 5 using HTML Code: &#8535;</p>
<p>Fraction 3 By 5 using HTML Entity: &frac35;</p>
<p id="point">Fraction 3 By 5 using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Fraction 3 By 5 (⅗) 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 three fifths (⅗) in recipes, math, and compared with related glyphs:

Recipe ⅗ cup flour   ⅗ tsp vanilla
Math 5 × ⅗ = 3   ⅗ = 60%
Large glyph
Vulgar fractions ⅖ two-fifths   ⅗ three-fifths   ⅘ four-fifths
Entity refs &frac35; &#x2157; &#8535; \2157

🧠 How It Works

1

Named Entity

&frac35; is the HTML named entity for three fifths—often preferred in readable recipe and math markup.

HTML markup
2

Hexadecimal Code

&#x2157; uses the Unicode hexadecimal value 2157. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2157 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+2157 in Number Forms. For two fifths, see Fraction 2 By 5 (⅖).

Use Cases

The Fraction 3 By 5 symbol (⅗) is commonly used in:

🍳 Recipes

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

∑ Math

Equations, fractions, and math content using three fifths.

📚 Education

Textbooks, tutorials, and lessons on fractions and ratios.

📊 Data

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

Don’t

  • Confuse ⅗ (three fifths) with ⅖ (two fifths, U+2156)
  • Confuse ⅗ (3⁄5) with ⅘ (four fifths, U+2158)
  • Put CSS escape \2157 in HTML text nodes
  • Mix entity styles randomly in one file
  • Use 3/5 when typographic ⅗ is required for consistency

Key Takeaways

1

Three HTML references plus CSS all render ⅗

&#x2157; &#8535; &frac35;
2

For CSS stylesheets, use the escape in the content property

\2157
3

Unicode U+2157 — vulgar fraction three fifths

4

&frac35; is the standard named entity

5

Next: Fraction 3 By 8 (continues the sequence)

❓ Frequently Asked Questions

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