HTML Entity for Fraction 1 By (⅟)

What You'll Learn
How to display the Fraction 1 By symbol (⅟) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+215F (FRACTION NUMERATOR ONE) in the Number Forms block (U+2150–U+218F)—the fraction numerator 1 used in vulgar fractions such as ⅟2 (one half) or ⅟n.
Render it with ⅟, ⅟, or CSS escape \215F. There is no named HTML entity. Do not confuse ⅟ with precomposed one half (½, ½), zero thirds (↉, U+2189), or plain text 1/2.
⚡ Quick Reference — Fraction 1 By
U+215FNumber Forms
⅟Hexadecimal reference
⅟Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+215F
Hex code ⅟
HTML code ⅟
Named entity (none)
CSS code \215F
Meaning Fraction numerator one (1/n)
Related U+2189 = Zero thirds (↉); U+00BD = One half (½)Complete HTML Example
This example demonstrates the Fraction 1 By (⅟) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\215F";
}
</style>
</head>
<body>
<p>Fraction 1 By using Hexadecimal: ⅟</p>
<p>Fraction 1 By using HTML Code: ⅟</p>
<p id="point">Fraction 1 By using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Fraction 1 By is widely supported in modern browsers with a suitable font:
👀 Live Preview
See the fraction numerator one (⅟) in math and compared with related fraction glyphs:
🧠 How It Works
Hexadecimal Code
⅟ uses the Unicode hexadecimal value 215F to display the Fraction 1 By. The x prefix indicates hexadecimal format.
Decimal HTML Code
⅟ uses the decimal Unicode value 8543 to display the same character.
CSS Entity
\215F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ⅟. Unicode U+215F is in Number Forms. No named HTML entity—use numeric codes in markup.
Use Cases
The Fraction 1 By (⅟) is commonly used in:
Equations and vulgar fractions using ⅟ as numerator (e.g. ⅟2, ⅟n).
Textbooks, tutorials, and learning materials for fractions and number theory.
Statistics, ratios, and data expressed with vulgar fractions (⅟2, ⅟n).
Content that uses vulgar fractions for precise typographic display.
Calculators and web apps that display fraction results.
Unicode tables and Number Forms glossaries.
💡 Best Practices
Do
- Add
aria-label="fraction numerator one"when the symbol carries meaning - Use math-friendly fonts (Cambria Math, STIX Two Math) for clear fractions
- Use the CSS escape in
::before/::afterfor repeated markers - Keep hex or decimal encoding consistent within a project
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ⅟ (numerator 1) with ½ (half) or ↉ (zero thirds)
- Expect a named entity—none exists for U+215F
- Put CSS escape
\215Fin HTML text nodes - Use ⅟ alone when a precomposed fraction like ½ or plain
1/2is clearer - Skip cross-browser checks for rare punctuation glyphs
Key Takeaways
Two HTML numeric references plus CSS render ⅟
⅟ ⅟For CSS stylesheets, use the escape in the content property
\215FUnicode U+215F — FRACTION NUMERATOR ONE
Number Forms block (U+2150–U+218F)
Three methods, no named HTML entity
❓ Frequently Asked Questions
⅟ (hex), ⅟ (decimal), or \215F in CSS content. There is no named entity.U+215F (FRACTION NUMERATOR ONE). Number Forms block (U+2150–U+218F). Hex 215F, decimal 8543. Used as numerator in vulgar fractions like ⅟2 (one half).⅟ or ⅟) go in markup. The CSS escape \215F 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, math symbols, and more.
8 people found this page helpful
