HTML Entity for Fraction 1 By 3 (⅓)

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

What You'll Learn

How to display the Fraction 1 By 3 symbol (⅓) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2153 (VULGAR FRACTION ONE THIRD) in the Number Forms block (U+2150–U+218F)—a vulgar fraction representing 1⁄3 (one third).

Render it with the named entity ⅓, ⅓, ⅓, or CSS escape \2153. Do not confuse ⅓ with one half (½, U+00BD, ½), two thirds (⅔, U+2154), or plain text 1/3.

⚡ Quick Reference — Fraction 1 By 3

Unicode U+2153

Number Forms

Hex Code ⅓

Hexadecimal reference

HTML Code ⅓

Decimal reference

Named Entity ⅓

One third (most readable)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2153
Hex code       ⅓
HTML code      ⅓
Named entity   ⅓
CSS code       \2153
Meaning        Vulgar fraction one third (1/3)
Related        U+00BD = One half (½); U+2154 = Two thirds (⅔)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2153";
  }
 </style>
</head>
<body>
<p>Fraction 1 By 3 using Hexadecimal: &#x2153;</p>
<p>Fraction 1 By 3 using HTML Code: &#8531;</p>
<p>Fraction 1 By 3 using HTML Entity: &frac13;</p>
<p id="point">Fraction 1 By 3 using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Fraction 1 By 3 (⅓) 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 one third (⅓) in recipes, math, and compared with related glyphs:

Recipe ⅓ cup sugar   ⅓ tsp salt
Math 3 × ⅓ = 1   ⅓ + ⅓ + ⅓ = 1
Large glyph
Vulgar fractions ½ half   ⅓ third   ¼ quarter
Entity refs &frac13; &#x2153; &#8531; \2153

🧠 How It Works

1

Named Entity

&frac13; is the HTML named entity for one third—often preferred in readable recipe and math markup.

HTML markup
2

Hexadecimal Code

&#x2153; uses the Unicode hexadecimal value 2153. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2153 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+2153 in Number Forms. For one half, see Fraction 1 By 2 (½).

Use Cases

The Fraction 1 By 3 symbol (⅓) is commonly used in:

🍳 Recipes

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

∑ Math

Equations, fractions, and math content using one third.

📚 Education

Textbooks, tutorials, and lessons on fractions and ratios.

📊 Data

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

Don’t

  • Confuse ⅓ (one third) with ½ (one half, U+00BD)
  • Confuse ⅓ (1⁄3) with ⅔ (two thirds, U+2154)
  • Put CSS escape \2153 in HTML text nodes
  • Mix entity styles randomly in one file
  • Use 1/3 when typographic ⅓ is required for consistency

Key Takeaways

1

Three HTML references plus CSS all render ⅓

&#x2153; &#8531; &frac13;
2

For CSS stylesheets, use the escape in the content property

\2153
3

Unicode U+2153 — vulgar fraction one third

4

&frac13; is the standard named entity

5

Next: Fraction 1 By 4 (¼, U+00BC)

❓ Frequently Asked Questions

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