HTML Entity for Lowercase O Dot Above (ȯ)

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

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

Unicode U+022F

Latin Extended-B

Hex Code ȯ

Hexadecimal reference

HTML Code ȯ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\022F";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x022F;</p>
<p>Symbol (decimal): &#559;</p>
<p>Symbol (direct): ȯ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase o dot above (ȯ) is supported in all modern browsers as part of Latin Extended-B:

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

👀 Live Preview

See the lowercase o dot above (ȯ) in linguistic contexts:

Large glyphȯ
Unicode nameLatin small letter o with dot above
UsageLivonian orthography, linguistics, phonetic notation
UppercaseȮ (U+022E) — LATIN CAPITAL LETTER O WITH DOT ABOVE
Not the same asọ (dot below)  |  ȱ (dot + macron)  |  o (plain)
Numeric refs&#x022F; &#559; \022F

🧠 How It Works

1

Hexadecimal Code

&#x022F; uses the Unicode hexadecimal value 022F to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#559; uses the decimal Unicode value 559 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 Livonian and linguistic symbol.

HTML markup
4

CSS Entity

\022F 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+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:

🇱🇻 Livonian

Display correct spelling in Livonian (a Finnic language), where ȯ is part of the orthography.

📝 Linguistics

Phonetic or phonological notation, language documentation, and academic papers requiring this character.

📚 Dictionaries

Headwords, pronunciation guides, or transliteration that include the o with dot above.

🌐 Language Learning

Lessons and resources for Livonian or other languages that use this character.

📐 Extended Latin

Orthographies or writing systems that require o with a dot above diacritic.

♿ Accessibility

Using the correct character (U+022F) ensures assistive technologies interpret linguistic content correctly.

🎨 CSS Generated Content

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 (&#x022F; or &#559;) when escaping is required
  • Use \022F in CSS content when 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 \022F in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ȯ directly, or use hex/decimal references

&#x022F; &#559;
2

For CSS stylesheets, use the escape in the content property

\022F
3

Unicode U+022F — LATIN SMALL LETTER O WITH DOT ABOVE

4

Livonian and linguistics; uppercase is Ȯ (U+022E)

❓ Frequently Asked Questions

Use &#x022F; (hex), &#559; (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 (Ȯ).
When displaying Livonian language text, linguistics content, phonetic notation, language documentation, or any content that requires o with a dot above.
No. There is no named HTML entity for ȯ. Use numeric codes &#559; or &#x022F;, or the CSS entity \022F. In UTF-8 pages you can type ȯ directly.
ȯ (U+022F) has a dot above the letter and is used in Livonian and linguistics. ọ (U+1ECD) has a dot below and is used in Igbo, Yoruba, and other languages. They are different characters with different uses.

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