HTML Entity for Uppercase O Dot Above (Ȯ)

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

What You'll Learn

How to display the uppercase O with dot above (Ȯ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+022E in the Latin Extended-B block. It is the capital letter O with a dot diacritic above it, used in Livonian and in linguistic or phonetic notation.

Render it with Ȯ, Ȯ, or CSS escape \022E. There is no named HTML entity for this character. In UTF-8 documents you can also type Ȯ directly.

⚡ Quick Reference — Uppercase O Dot Above Entity

Unicode U+022E

Latin Extended-B

Hex Code Ȯ

Hexadecimal reference

HTML Code Ȯ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+022E
Hex code       Ȯ
HTML code      Ȯ
Named entity   (none)
CSS code       \022E
Meaning        Latin capital letter O with dot above
Related        U+022F = ȯ (lowercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase 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: "\022E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x022E;</p>
<p>Symbol (decimal): &#558;</p>
<p>Symbol (direct): Ȯ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase 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 uppercase O dot above (Ȯ) in linguistic contexts:

Large glyphȮ
Unicode nameLATIN CAPITAL LETTER O WITH DOT ABOVE
UsageLivonian orthography, linguistics, phonetic notation
Case pairȮ (uppercase) / ȯ (lowercase)
Not the same asȰ (dot + macron)  |  ọ (dot below)  |  O (plain)
Numeric refs&#x022E; &#558; \022E

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#558; uses the decimal Unicode value 558 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

\022E 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+022E sits in Latin Extended-B. Lowercase equivalent: U+022F (ȯ). Do not confuse with Ȱ (dot + macron) or ọ (dot below).

Use Cases

The uppercase O dot above (Ȯ) is commonly used in:

🇱🇻 Livonian

Display correct capitalized 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

Capitalized 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 at sentence start or in proper nouns.

📄 Academic Content

Research papers and scholarly articles on Finnic languages, phonetics, or diacritical notation.

♿ Accessibility

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

⚙ Programmatic HTML

When building HTML from linguistic data, using &#558; or &#x022E; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type Ȯ directly in UTF-8 source
  • Use numeric references (&#x022E; or &#558;) when escaping is required
  • Use \022E 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 + macron)

Don’t

  • Expect a named HTML entity—none exists for Ȯ
  • Confuse Ȯ (dot above) with Ȱ (dot + macron) or ọ (dot below)
  • Substitute plain O + combining dot when the precomposed Ȯ is required
  • Put CSS escape \022E in HTML text nodes
  • Use \0022E in CSS—the correct escape is \022E

Key Takeaways

1

Type Ȯ directly, or use hex/decimal references

&#x022E; &#558;
2

For CSS stylesheets, use the escape in the content property

\022E
3

Unicode U+022E — LATIN CAPITAL LETTER O WITH DOT ABOVE

4

Livonian and linguistics; lowercase is ȯ (U+022F)

❓ Frequently Asked Questions

Use &#x022E; (hex), &#558; (decimal), or \022E in CSS content. There is no named HTML entity for Ȯ. In UTF-8 you can also type Ȯ directly.
U+022E (LATIN CAPITAL LETTER O WITH DOT ABOVE). Latin Extended-B block. Hex 022E, decimal 558. Used in Livonian and linguistic notation. Lowercase form is U+022F (ȯ).
When displaying Livonian language text, linguistics content, phonetic notation, language documentation, or any content that requires O with a dot above diacritic.
No. There is no named HTML entity for Ȯ. Use numeric codes &#558; or &#x022E;, or the CSS entity \022E. In UTF-8 pages you can type Ȯ directly.
U+022E has only a dot above the letter. U+0230 (Ȱ) combines a dot above and a macron—a different precomposed character. Do not substitute one for the other.

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