HTML Entity for Lowercase A Latin Subscript (ₐ)

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

What You'll Learn

How to display the Latin subscript small letter a (ₐ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is used in chemical formulas, linguistic notation, and mathematics. It is U+2090 in the Superscripts and Subscripts block.

Render it with ₐ, ₐ, or CSS escape \2090. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Lowercase A Latin Subscript Entity

Unicode U+2090

Superscripts and Subscripts

Hex Code ₐ

Hexadecimal reference

HTML Code ₐ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2090
Hex code       ₐ
HTML code      ₐ
Named entity   (none)
CSS code       \2090
Meaning        Latin subscript small letter a
Block          Superscripts and Subscripts (U+2070–U+209F)
1

Complete HTML Example

A simple example showing the Latin subscript small letter a (ₐ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2090";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2090;</p>
<p>Symbol (decimal): &#8336;</p>
<p id="point">Symbol (CSS): </p>
<p>In context: x&#x2090;</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Latin subscript small letter a (ₐ) renders correctly in modern browsers when UTF-8 is used:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Latin subscript small letter a (ₐ) in context:

Large glyph
In formulaxₐ
Not the same as<sub>a</sub> (styled text) or plain a
Numeric refs&#x2090; &#8336; \2090

🧠 How It Works

1

Hexadecimal Code

&#x2090; uses the Unicode hexadecimal value 2090 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8336; uses the decimal Unicode value 8336 to display the same character. A common method for subscript characters.

HTML markup
3

CSS Entity

\2090 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+2090 is a standalone subscript character, not the same as <sub>a</sub>. There is no named HTML entity.

Use Cases

The Latin subscript small letter a (ₐ) is commonly used in:

🧪 Chemistry

Variable subscripts in chemical notation when the subscript is a letter.

🔤 Linguistics & IPA

Phonetic notation where subscript letters indicate sounds or variants.

📐 Mathematics

Expressions with letter subscripts (e.g. xₐ, vₐ) for consistent rendering.

📄 Publishing

Academic and scientific content requiring correct subscript letter glyphs.

🎨 Typography

Equations and styled text needing the subscript a glyph across fonts.

🔍 Accessibility

Using the actual character ₐ for consistent indexing and screen reader behavior.

📚 Education

Textbooks and reference sites explaining subscript notation in formulas.

💡 Best Practices

Do

  • Use &#8336; or &#x2090; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type ₐ directly in UTF-8 source
  • Use fonts that support Superscripts and Subscripts (U+2070–U+209F)
  • Use ₐ when you need a standard subscript glyph character
  • Distinguish ₐ (U+2090) from plain a (U+0061)

Don’t

  • Assume a named entity exists—there is none for ₐ
  • Confuse ₐ with <sub>a</sub> (styled text, not the same glyph)
  • Put CSS escape \2090 in HTML text nodes
  • Assume all fonts render subscript characters identically
  • Omit UTF-8 encoding on pages with subscript characters

Key Takeaways

1

Three references render ₐ (no named entity)

&#x2090; &#8336;
2

For CSS stylesheets, use the escape in the content property

\2090
3

Unicode U+2090 — LATIN SUBSCRIPT SMALL LETTER A

4

Used in chemistry, linguistics, mathematics, and phonetic notation

❓ Frequently Asked Questions

Use &#x2090; (hex), &#8336; (decimal), or \2090 in CSS content. There is no named HTML entity for this character.
U+2090 (LATIN SUBSCRIPT SMALL LETTER A). Superscripts and Subscripts block. Hex 2090, decimal 8336. Used in chemistry, linguistics, and mathematics.
In chemical formulas with letter subscripts, linguistic or phonetic notation, mathematics with letter subscripts, and any content requiring a small a below the baseline.
HTML code (&#8336; or &#x2090;) is used in HTML content. The CSS entity (\2090) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ₐ but in different contexts.
No. There is no named HTML entity for ₐ. Use &#8336; or &#x2090; in HTML, or \2090 in CSS. This is standard for subscript characters in Unicode.

Explore More HTML Entities!

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