HTML Entity for Fraction 1 By 10 (⅒)

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

What You'll Learn

How to display the Fraction 1 By 10 symbol (⅒) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2152 (VULGAR FRACTION ONE TENTH) in the Number Forms block (U+2150–U+218F)—a vulgar fraction representing 1⁄10 (one tenth).

Render it with ⅒, ⅒, or CSS escape \2152. There is no named HTML entity. Do not confuse ⅒ with one ninth (⅑, U+2151), one third (⅓, U+2153), or plain text 1/10.

⚡ Quick Reference — Fraction 1 By 10

Unicode U+2152

Number Forms

Hex Code ⅒

Hexadecimal reference

HTML Code ⅒

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2152
Hex code       ⅒
HTML code      ⅒
Named entity   (none)
CSS code       \2152
Meaning        Vulgar fraction one tenth (1/10)
Related        U+2151 = One ninth (⅑); U+2153 = One third (⅓)
1

Complete HTML Example

This example demonstrates the Fraction 1 By 10 (⅒) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2152";
  }
 </style>
</head>
<body>
<p>Fraction 1 By 10 using Hexadecimal: &#x2152;</p>
<p>Fraction 1 By 10 using HTML Code: &#8530;</p>
<p id="point">Fraction 1 By 10 using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Fraction 1 By 10 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 tenth (⅒) in math and compared with related fraction glyphs:

Percentage ⅒ = 10%
Equation 10 × ⅒ = 1
Vulgar fractions ⅑ ninth   ⅒ tenth   ⅓ third
Large glyph
Numeric refs &#x2152; &#8530; \2152

🧠 How It Works

1

Hexadecimal Code

&#x2152; uses the Unicode hexadecimal value 2152 to display the Fraction 1 By 10. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2152 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+2152 is in Number Forms. No named HTML entity—use numeric codes in markup.

Use Cases

The Fraction 1 By 10 (⅒) is commonly used in:

📐 Mathematical notation

Equations, fractions, and math content that use the 1⁄10 (one tenth) value.

📚 Educational content

Textbooks, tutorials, and learning materials for fractions and number theory.

📊 Data display

Statistics, percentages, and data expressed as tenths (⅒).

📝 Recipes & measurements

Content that uses vulgar fractions for precise typographic display.

💻 Math tools

Calculators and web apps that display fraction results.

🔤 Symbol references

Unicode tables and Number Forms glossaries.

💡 Best Practices

Do

  • Add aria-label="one tenth" when the symbol carries meaning
  • Use math-friendly fonts (Cambria Math, STIX Two Math) for clear fractions
  • Use the CSS escape in ::before / ::after for repeated markers
  • Keep hex or decimal encoding consistent within a project
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⅒ (1⁄10) with ⅑ (one ninth) or ⅓ (one third)
  • Expect a named entity—none exists for U+2152
  • Put CSS escape \2152 in HTML text nodes
  • Use the glyph without context when plain 10% or 1/10 is clearer for readers
  • Skip cross-browser checks for rare punctuation glyphs

Key Takeaways

1

Two HTML numeric references plus CSS render ⅒

&#x2152; &#8530;
2

For CSS stylesheets, use the escape in the content property

\2152
3

Unicode U+2152 — VULGAR FRACTION ONE TENTH

4

Number Forms block (U+2150–U+218F)

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x2152; (hex), &#8530; (decimal), or \2152 in CSS content. There is no named entity.
U+2152 (VULGAR FRACTION ONE TENTH). Number Forms block (U+2150–U+218F). Hex 2152, decimal 8530. Represents one tenth (1⁄10).
In mathematical notation and fractions, educational content, recipes and measurements, data display and statistics, scientific content, and any content that requires the 1⁄10 fraction in a single character form.
HTML references (&#8530; or &#x2152;) go in markup. The CSS escape \2152 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover a subset of common characters. Symbols in the Number Forms block like U+2152 use numeric codes (hexadecimal or decimal). This is standard practice for such symbols in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — fractions, math 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