HTML Entity for Fraction 3 By 4 (¾)

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

What You'll Learn

How to display the Fraction 3 By 4 symbol (¾) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+00BE (VULGAR FRACTION THREE QUARTERS) in the Latin-1 Supplement block (U+0080–U+00FF)—a vulgar fraction representing 3⁄4 (three quarters).

Render it with the named entity ¾, ¾, ¾, or CSS escape \00BE. Do not confuse ¾ with one quarter (¼, U+00BC, ¼), one half (½, U+00BD, ½), or plain text 3/4.

⚡ Quick Reference — Fraction 3 By 4

Unicode U+00BE

Latin-1 Supplement

Hex Code ¾

Hexadecimal reference

HTML Code ¾

Decimal reference

Named Entity ¾

Three quarters (most readable)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00BE
Hex code       ¾
HTML code      ¾
Named entity   ¾
CSS code       \00BE
Meaning        Vulgar fraction three quarters (3/4)
Related        U+00BC = One quarter (¼); U+00BD = One half (½)
1

Complete HTML Example

This example demonstrates the Fraction 3 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: "\00BE";
  }
 </style>
</head>
<body>
<p>Fraction 3 By 4 using Hexadecimal: &#x00BE;</p>
<p>Fraction 3 By 4 using HTML Code: &#190;</p>
<p>Fraction 3 By 4 using HTML Entity: &frac34;</p>
<p id="point">Fraction 3 By 4 using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Fraction 3 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 3 By 4 symbol (¾) in recipes, math, and measurements:

Recipe ¾ cup sugar   ¾ tsp vanilla
Math 4 × ¾ = 3   ¾ = 75%
Large glyph ¾
Vulgar fractions ¼ quarter   ¾ three-quarters   ½ half
Entity refs &frac34; &#x00BE; &#190; \00BE

🧠 How It Works

1

Named Entity

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

HTML markup
2

Hexadecimal Code

&#x00BE; uses the Unicode hexadecimal value 00BE. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\00BE 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+00BE in Latin-1 Supplement. For one quarter, see Fraction 1 By 4 (¼).

Use Cases

The Fraction 3 By 4 symbol (¾) is commonly used in:

🍳 Recipes

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

∑ Math

Equations, fractions, and math content using three quarters.

📚 Education

Textbooks, tutorials, and lessons on fractions and ratios.

📊 Data

Statistics, scores, and displays showing three-quarters or 75%.

📄 Documents

Legal, academic, or technical documents with vulgar fractions.

🌐 Symbol guides

HTML entity lists, Unicode charts, and character references.

💡 Best Practices

Do

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

Don’t

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

Key Takeaways

1

Three HTML references plus CSS all render ¾

&#x00BE; &#190; &frac34;
2

For CSS stylesheets, use the escape in the content property

\00BE
3

Unicode U+00BE — vulgar fraction three quarters

4

&frac34; is the standard named entity

5

Next: Fraction 3 By 5 (continues the sequence)

❓ Frequently Asked Questions

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