HTML Entity for Subscript Eight (₈)

Beginner
⏱️ 5 min read
📚 Updated: Aug 2025
🎯 1 Code Example
Unicode U+2088

What You'll Learn

How to display the subscript eight (₈) in HTML using hex, decimal, and CSS entity methods. This character lives in the Superscripts and Subscripts Unicode block and is commonly used for chemical formulas, mathematical expressions, molecular notation, and technical content.

₈ has no named HTML entity, so you’ll use numeric references (₈ or ₈) or a CSS escape (\2088 in content).

⚡ Quick Reference — ₈ Entity

Unicode U+2088

Superscripts & Subscripts block

Hex Code ₈

Hexadecimal reference

HTML Code ₈

Decimal reference

CSS Code \2088

Use in CSS content

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2088
Hex code       ₈
HTML code      ₈
Named entity   (none)
CSS code       \2088
1

Complete HTML Example

This example demonstrates ₈ using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2088";
  }
 </style>
</head>
<body>

<p>Subscript Eight using Hexa Decimal: &#x2088;</p>
<p>Subscript Eight using HTML Code: &#8328;</p>
<p id="point">Subscript Eight using CSS Entity: </p>

</body>
</html>
Try It Yourself

🌐 Browser Support

The character ₈ (U+2088) is supported in all modern browsers. Rendering depends on font support for the Superscripts and Subscripts block, so include a sensible fallback font stack:

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

👀 Live Preview

See ₈ rendered in a few practical contexts:

Chemical formula C₈ (eight-carbon fragment)
Math index x₈
Large glyph
Semantic note For non-digit subscripts, prefer <sub> (e.g., H2O).

🧠 How It Works

1

Hexadecimal Code

&#x2088; references Unicode 2088 in hexadecimal to produce the glyph in HTML.

HTML markup
2

Decimal HTML Code

&#8328; uses the decimal code point value 8328 to render the same character.

HTML markup
3

CSS Entity (Escape)

\2088 is used in CSS (often in content) to generate ₈ in pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods render . Unicode is U+2088 (Superscripts and Subscripts). There is no named HTML entity for this character.

Use Cases

The subscript eight (₈) commonly appears in the following scenarios:

🧪 Chemistry

Molecular formulas and carbon counts (e.g., C₈ in chain or ring notation).

📐 Math

Indices and sequences like x₈, a₈ in notation.

📋 Footnotes

Compact subscript markers in text-heavy content.

💻 CS / Notation

Base notation like 10₈ for base-8 (octal) examples.

📚 Education

Textbooks and tutorials with simple subscripts.

🎨 Typography

Use the glyph when you need a single subscript digit.

💡 Best Practices

Do

  • Use <sub> when the subscript is a word or phrase
  • Use numeric references (&#x2088; / &#8328;) for portability
  • Keep formula formatting consistent across the page
  • Verify font support for Superscripts/Subscripts when important
  • Consider MathML/MathJax for complex equations

Don’t

  • Mix Unicode subscripts with random <sub> usage without reason
  • Assume every font renders ₈ at the same size and position
  • Use the CSS escape inside HTML content
  • Let line-height collapse around formulas (adjust if needed)
  • Use ₈ where a normal “8” is intended

Key Takeaways

1

Use numeric references in HTML

&#x2088; &#8328;
2

For CSS, use the escape in the content property

\2088
3

Unicode U+2088 is in Superscripts/Subscripts

4

Useful for formulas and indices like C₈ and x₈

5

There is no named HTML entity for ₈

❓ Frequently Asked Questions

Use &#x2088; (hex) or &#8328; (decimal) in HTML. In CSS, use \2088 in the content property. All render ₈.
U+2088 (hex 2088, decimal 8328). It’s part of the Superscripts and Subscripts Unicode block.
Use it for chemical formulas, math indices, molecular notation, and technical content where a digit must appear below the baseline.
HTML numeric references (&#8328; or &#x2088;) are used directly in markup. The CSS escape \2088 is used in stylesheets (often in content on pseudo-elements). Same glyph, different layer.
Superscripts and Subscripts characters like ₈ are normally referenced using numeric Unicode codes. It’s standard to use &#x2088; or &#8328; instead of a named entity.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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