HTML Entity for Lowercase X Latin Subscript (ₓ)

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
U+2093Superscripts and Subscripts
ₓHexadecimal reference
ₓDecimal reference
—No named entity
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2093";
}
</style>
</head>
<body>
<p>Symbol (hex): ₓ</p>
<p>Symbol (decimal): ₓ</p>
<p>Symbol (direct): ₓ</p>
<p id="point">Symbol (CSS): </p>
<p>Subscript: aₓ</p>
</body>
</html>🌐 Browser Support
The Latin subscript small letter x (ₓ) is supported in all modern browsers as part of Superscripts and Subscripts:
👀 Live Preview
See the Latin subscript small letter x (ₓ) in notation contexts:
🧠 How It Works
Hexadecimal Code
ₓ uses the Unicode hexadecimal value 2093 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ₓ uses the decimal Unicode value 8339 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type ₓ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this subscript letter.
CSS Entity
\2093 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Subscripts in equations, indices, and variable names (aₓ, nₓ, vₓ).
Papers, textbooks, and documentation requiring a subscript lowercase x below the baseline.
Teaching subscript notation and proper Unicode characters on web pages.
Font specimens showcasing Superscripts and Subscripts (U+2070–U+209F) support.
When building HTML from scientific data, using ₓ or ₓ guarantees correct output.
Using U+2093 ensures proper encoding of subscript characters for assistive technologies.
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 (
ₓorₓ) when escaping is required - Use
\2093in CSScontentwhen 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
xstyled 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
\2093in HTML text nodes
Key Takeaways
Type ₓ directly, or use hex/decimal references
ₓ ₓFor CSS stylesheets, use the escape in the content property
\2093Unicode U+2093 — LATIN SUBSCRIPT SMALL LETTER X
Subscript glyph below baseline; not plain x or combining ͯ
Previous: Lowercase X Latin (ͯ) Next: Lowercase Y (y)
❓ Frequently Asked Questions
ₓ (hex), ₓ (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.ₓ or ₓ, or the CSS entity \2093. In UTF-8 pages you can type ₓ directly.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.
8 people found this page helpful
