HTML Entity for Lowercase O Latin Subscript (ₒ)

What You'll Learn
How to display the Latin subscript small letter o (ₒ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2092 in the Superscripts and Subscripts block. It appears as a small “o” below the baseline, used in mathematical subscripts, scientific notation, and specialized typography.
Render it with ₒ, ₒ, or CSS escape \2092. There is no named HTML entity for this character. In UTF-8 documents you can also type ₒ directly.
⚡ Quick Reference — Lowercase O Latin Subscript Entity
U+2092Superscripts and Subscripts
ₒHexadecimal reference
ₒDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+2092
Hex code ₒ
HTML code ₒ
Named entity (none)
CSS code \2092
Meaning Latin subscript small letter o
Block Superscripts and Subscripts (U+2070–U+209F)Complete HTML Example
A simple example showing the Latin subscript small letter o (ₒ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2092";
}
</style>
</head>
<body>
<p>Symbol (hex): ₒ</p>
<p>Symbol (decimal): ₒ</p>
<p>Symbol (direct): ₒ</p>
<p id="point">Symbol (CSS): </p>
<p>Subscript: xₒ</p>
</body>
</html>🌐 Browser Support
The Latin subscript small letter o (ₒ) is supported in all modern browsers as part of Superscripts and Subscripts:
👀 Live Preview
See the Latin subscript small letter o (ₒ) in notation contexts:
🧠 How It Works
Hexadecimal Code
ₒ uses the Unicode hexadecimal value 2092 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ₒ uses the decimal Unicode value 8338 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
\2092 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+2092 sits in Superscripts and Subscripts. Do not confuse with plain o (U+006F) or combining ͦ (U+0366).
Use Cases
The Latin subscript small letter o (ₒ) is commonly used in:
Subscripts in equations, indices, and variable names (xₒ, nₒ, vₒ).
Papers, textbooks, and documentation requiring a subscript lowercase o 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+2092 ensures proper encoding of subscript characters for assistive technologies.
Any application requiring a small subscript “o” 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
\2092in CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support Superscripts and Subscripts (U+2070–U+209F)
- Distinguish ₒ (subscript) from plain
o(U+006F) and combining ͦ (U+0366)
Don’t
- Use plain
ostyled smaller when the Unicode subscript ₒ is required - Confuse ₒ (subscript o) with ͦ (combining o above a base letter)
- Expect a named HTML entity—none exists for ₒ
- Put CSS escape
\2092in HTML text nodes - Use ₒ for H₂O-style formulas—those use subscript digits like ₂
Key Takeaways
Type ₒ directly, or use hex/decimal references
ₒ ₒFor CSS stylesheets, use the escape in the content property
\2092Unicode U+2092 — LATIN SUBSCRIPT SMALL LETTER O
Subscript glyph below baseline; not plain o or combining ͦ
Previous: Lowercase O Latin (ͦ) Next: Lowercase O Macron
❓ Frequently Asked Questions
ₒ (hex), ₒ (decimal), or \2092 in CSS content. There is no named HTML entity for ₒ. In UTF-8 you can also type ₒ directly.U+2092 (LATIN SUBSCRIPT SMALL LETTER O). Superscripts and Subscripts block. Hex 2092, decimal 8338. Used in mathematical and scientific notation.ₒ or ₒ, or the CSS entity \2092. In UTF-8 pages you can type ₒ directly.o (U+006F) 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
