HTML Entity for Lowercase O Dot Above (ȯ)

What You'll Learn
How to display the lowercase o with dot above (ȯ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+022F in the Latin Extended-B block. It is the letter o with a dot diacritic above it, used in Livonian and in linguistic or phonetic notation.
Render it with ȯ, ȯ, or CSS escape \022F. There is no named HTML entity for this character. In UTF-8 documents you can also type ȯ directly.
⚡ Quick Reference — Lowercase O Dot Above Entity
U+022FLatin Extended-B
ȯHexadecimal reference
ȯDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+022F
Hex code ȯ
HTML code ȯ
Named entity (none)
CSS code \022F
Meaning Latin small letter o with dot above
Related U+022E = Ȯ (uppercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase o dot above (ȯ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\022F";
}
</style>
</head>
<body>
<p>Symbol (hex): ȯ</p>
<p>Symbol (decimal): ȯ</p>
<p>Symbol (direct): ȯ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase o dot above (ȯ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the lowercase o dot above (ȯ) in linguistic contexts:
🧠 How It Works
Hexadecimal Code
ȯ uses the Unicode hexadecimal value 022F to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ȯ uses the decimal Unicode value 559 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 Livonian and linguistic symbol.
CSS Entity
\022F 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+022F sits in Latin Extended-B. Uppercase equivalent: U+022E (Ȯ). Do not confuse with ọ (o with dot below) or ȱ (dot above + macron).
Use Cases
The lowercase o dot above (ȯ) is commonly used in:
Display correct spelling in Livonian (a Finnic language), where ȯ is part of the orthography.
Phonetic or phonological notation, language documentation, and academic papers requiring this character.
Headwords, pronunciation guides, or transliteration that include the o with dot above.
Lessons and resources for Livonian or other languages that use this character.
Orthographies or writing systems that require o with a dot above diacritic.
Using the correct character (U+022F) ensures assistive technologies interpret linguistic content correctly.
Using \022F in the CSS content property to insert ȯ via pseudo-elements.
💡 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
\022Fin CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support Latin Extended-B characters (U+0180–U+024F)
- Distinguish ȯ (dot above) from ọ (dot below)
Don’t
- Expect a named HTML entity—none exists for ȯ
- Confuse ȯ (dot above) with ọ (dot below), ȱ (dot + macron), or plain o
- Combine separate diacritics when the precomposed ȯ is required
- Put CSS escape
\022Fin HTML text nodes - Double-encode numeric references in dynamically generated HTML
Key Takeaways
Type ȯ directly, or use hex/decimal references
ȯ ȯFor CSS stylesheets, use the escape in the content property
\022FUnicode U+022F — LATIN SMALL LETTER O WITH DOT ABOVE
Livonian and linguistics; uppercase is Ȯ (U+022E)
Previous: Lowercase O Diaeresis Macron (ȫ) Next: Lowercase O Double Acute
❓ Frequently Asked Questions
ȯ (hex), ȯ (decimal), or \022F in CSS content. There is no named HTML entity for ȯ. In UTF-8 you can also type ȯ directly.U+022F (LATIN SMALL LETTER O WITH DOT ABOVE). Latin Extended-B block. Hex 022F, decimal 559. Used in Livonian and linguistic notation. Uppercase form is U+022E (Ȯ).ȯ or ȯ, or the CSS entity \022F. In UTF-8 pages you can type ȯ directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
