HTML Entity for Lowercase X Latin Subscript (ₓ)

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

What You'll Learn

How to display the Latin subscript small letter x (ₓ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2093 in the Superscripts and Subscripts block. It appears as a small “x” below the baseline, used in mathematical subscripts, scientific notation, and specialized typography.

Render it with ₓ, ₓ, or CSS escape \2093. There is no named HTML entity for this character. In UTF-8 documents you can also type ₓ directly. Do not confuse ₓ with plain x (U+0078) or combining ͯ (U+036F).

⚡ Quick Reference — Lowercase X Latin Subscript Entity

Unicode U+2093

Superscripts and Subscripts

Hex Code ₓ

Hexadecimal reference

HTML Code ₓ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2093";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2093;</p>
<p>Symbol (decimal): &#8339;</p>
<p>Symbol (direct): ₓ</p>
<p id="point">Symbol (CSS): </p>
<p>Subscript: a&#x2093;</p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The Latin subscript small letter x (ₓ) is supported in all modern browsers as part of Superscripts and Subscripts:

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

👀 Live Preview

See the Latin subscript small letter x (ₓ) in notation contexts:

Large glyph
Mathematicalaₓ  |  nₓ  |  vₓ
Unicode nameLatin subscript small letter x
Not the same asx (plain)  |  ͯ (combining x above)
NoteH₂O uses subscript 2 (₂), not subscript x
Numeric refs&#x2093; &#8339; \2093

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#8339; uses the decimal Unicode value 8339 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Direct Character

Type directly in HTML when your document uses UTF-8 encoding. There is no named entity for this subscript letter.

HTML markup
4

CSS Entity

\2093 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods produce the glyph: . Unicode U+2093 sits in Superscripts and Subscripts. Do not confuse with plain x (U+0078) or combining ͯ (U+036F).

Use Cases

The Latin subscript small letter x (ₓ) is commonly used in:

📊 Mathematical notation

Subscripts in equations, indices, and variable names (aₓ, nₓ, vₓ).

🧬 Scientific writing

Papers, textbooks, and documentation requiring a subscript lowercase x below the baseline.

📚 Educational content

Teaching subscript notation and proper Unicode characters on web pages.

🎨 Typography

Font specimens showcasing Superscripts and Subscripts (U+2070–U+209F) support.

⚙ Programmatic HTML

When building HTML from scientific data, using &#8339; or &#x2093; guarantees correct output.

♿ Accessibility

Using U+2093 ensures proper encoding of subscript characters for assistive technologies.

📝 Specialized notation

Any application requiring a small subscript “x” glyph in HTML content.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ₓ directly in UTF-8 source
  • Use numeric references (&#x2093; or &#8339;) when escaping is required
  • Use \2093 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Superscripts and Subscripts (U+2070–U+209F)
  • Distinguish ₓ (subscript) from plain x (U+0078) and combining ͯ (U+036F)

Don’t

  • Use plain x styled smaller when the Unicode subscript ₓ is required
  • Confuse ₓ (subscript x) with ͯ (combining x above a base letter)
  • Use the old incorrect CSS escape \02093—the correct value is \2093
  • Expect a named HTML entity—none exists for ₓ
  • Put CSS escape \2093 in HTML text nodes

Key Takeaways

1

Type ₓ directly, or use hex/decimal references

&#x2093; &#8339;
2

For CSS stylesheets, use the escape in the content property

\2093
3

Unicode U+2093 — LATIN SUBSCRIPT SMALL LETTER X

4

Subscript glyph below baseline; not plain x or combining ͯ

❓ Frequently Asked Questions

Use &#x2093; (hex), &#8339; (decimal), or \2093 in CSS content. There is no named HTML entity for ₓ. In UTF-8 you can also type ₓ directly.
U+2093 (LATIN SUBSCRIPT SMALL LETTER X). Superscripts and Subscripts block. Hex 2093, decimal 8339. Used in mathematical and scientific notation.
When displaying mathematical subscripts (e.g. aₓ, nₓ), scientific notation, or any content that requires a subscript lowercase x below the baseline.
No. Use numeric codes &#8339; or &#x2093;, or the CSS entity \2093. In UTF-8 pages you can type ₓ directly.
ₓ (U+2093) is a subscript x glyph below the baseline. x (U+0078) is the normal lowercase letter. They are different characters for different typographic roles.

Explore More HTML Entities!

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