HTML Entity for Fraction 1 By 4 (¼)

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

What You'll Learn

How to display the Fraction 1 By 4 symbol (¼) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+00BC (VULGAR FRACTION ONE QUARTER) in the Latin-1 Supplement block (U+0080–U+00FF)—a vulgar fraction representing 1⁄4 (one quarter).

Render it with the named entity ¼, ¼, ¼, or CSS escape \00BC. Do not confuse ¼ with one half (½, U+00BD, ½), one third (⅓, U+2153), or plain text 1/4.

⚡ Quick Reference — Fraction 1 By 4

Unicode U+00BC

Latin-1 Supplement

Hex Code ¼

Hexadecimal reference

HTML Code ¼

Decimal reference

Named Entity ¼

One quarter (most readable)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00BC
Hex code       ¼
HTML code      ¼
Named entity   ¼
CSS code       \00BC
Meaning        Vulgar fraction one quarter (1/4)
Related        U+00BD = One half (½); U+2153 = One third (⅓)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\00BC";
  }
 </style>
</head>
<body>
<p>Fraction 1 By 4 using Hexadecimal: &#x00BC;</p>
<p>Fraction 1 By 4 using HTML Code: &#188;</p>
<p>Fraction 1 By 4 using HTML Entity: &frac14;</p>
<p id="point">Fraction 1 By 4 using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Fraction 1 By 4 (¼) is widely supported in modern browsers with any standard font:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Fraction 1 By 4 symbol (¼) in recipes, math, and measurements:

Recipe ¼ cup sugar   ¼ tsp vanilla
Math 4 ¼ = 1   ¼ + ¼ + ¼ + ¼ = 1
Large glyph ¼
Vulgar fractions ½ half   ⅓ third   ¼ quarter
Entity refs &frac14; &#x00BC; &#188; \00BC

🧠 How It Works

1

Named Entity

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

HTML markup
2

Hexadecimal Code

&#x00BC; uses the Unicode hexadecimal value 00BC. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\00BC 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+00BC in Latin-1 Supplement. For one third, see Fraction 1 By 3 (⅓).

Use Cases

The Fraction 1 By 4 symbol (¼) is commonly used in:

🍳 Recipes

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

∑ Math

Equations, fractions, and math content using one quarter.

📚 Education

Textbooks, tutorials, and lessons on fractions and ratios.

📊 Data

Statistics, scores, and displays showing quarters or 25%.

📄 Documents

Legal, academic, or technical documents with vulgar fractions.

🌐 Symbol guides

HTML entity lists, Unicode charts, and character references.

💡 Best Practices

Do

  • Use &frac14; for readable HTML in recipes and math
  • Pair with units (e.g. ¼ cup) for clear measurements
  • Latin-1 Supplement (U+00BC) is widely supported in standard fonts
  • Add aria-label (e.g. “one quarter”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

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

Key Takeaways

1

Three HTML references plus CSS all render ¼

&#x00BC; &#188; &frac14;
2

For CSS stylesheets, use the escape in the content property

\00BC
3

Unicode U+00BC — vulgar fraction one quarter

4

&frac14; is the standard named entity

5

Next: Fraction 1 By 5 (⅕, U+2155)

❓ Frequently Asked Questions

Use &frac14; (named), &#x00BC; (hex), &#188; (decimal), or \00BC in CSS content. All produce ¼.
U+00BC (VULGAR FRACTION ONE QUARTER). Latin-1 Supplement block (U+0080–U+00FF). Hex 00BC, decimal 188. Represents the vulgar fraction one quarter (¼).
In recipes and measurements, mathematical notation and fractions, educational content, data display, and any content that requires the one-quarter (¼) symbol in typographic form.
Yes. &frac14; is the named HTML entity for U+00BC (¼). You can also use &#188; (decimal) or &#x00BC; (hexadecimal). All render the same symbol.
HTML entities (&#188;, &#x00BC;, or &frac14;) go directly in markup. The CSS escape \00BC 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