HTML Entity for Uppercase O Ogonek (Ǫ)

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

What You'll Learn

How to display the uppercase O with ogonek (Ǫ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01EA in the Latin Extended-B block. The ogonek (hook) below the letter marks a nasal or historically distinct vowel—notably in Navajo orthography and in historical or linguistic Lithuanian texts.

Render it with Ǫ, Ǫ, or CSS escape \01EA. There is no named HTML entity for this character (unlike Į for Į). In UTF-8 documents you can also type Ǫ directly.

⚡ Quick Reference — Uppercase O Ogonek Entity

Unicode U+01EA

Latin Extended-B

Hex Code Ǫ

Hexadecimal reference

HTML Code Ǫ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01EA
Hex code       Ǫ
HTML code      Ǫ
Named entity   (none)
CSS code       \01EA
Meaning        Latin capital letter O with ogonek
Related        U+01EB = ǫ (lowercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase O ogonek (Ǫ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01EA";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01EA;</p>
<p>Symbol (decimal): &#490;</p>
<p>Symbol (direct): Ǫ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase O ogonek (Ǫ) 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 ogonek (Ǫ) in language and notation contexts:

Large glyphǪ
Unicode nameLatin capital letter O with ogonek
NavajoCapital nasal vowel in Navajo orthography
Lowercaseǫ (U+01EB) — LATIN SMALL LETTER O WITH OGONEK
Not the same asĄ (A ogonek)  |  Į (I ogonek)  |  O (plain)
NoteModern Lithuanian uses Ą, Ę, Į, Ų—not standard Ǫ
Numeric refs&#x01EA; &#490; \01EA

🧠 How It Works

1

Hexadecimal Code

&#x01EA; uses the Unicode hexadecimal value 01EA to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
4

CSS Entity

\01EA 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+01EA sits in Latin Extended-B. Lowercase equivalent: U+01EB (ǫ). Do not confuse with Ą (A ogonek) or Į (I ogonek).

Use Cases

The uppercase O ogonek (Ǫ) is commonly used in:

🇺🇲 Navajo

Capital nasal vowel at sentence start or in capitalized words in Navajo orthography and language materials.

📜 Historical texts

Historical Lithuanian and linguistic editions that use O with ogonek in capitalized form.

🔤 Linguistics

Phonetic transcription, language documentation, and scholarly notation requiring Ǫ.

📚 Education

Language courses and bilingual content for Navajo and indigenous language programs.

🎨 Typography

Font specimens showcasing Latin Extended-B ogonek support on uppercase letters.

♿ Accessibility

Using U+01EA with proper lang attributes ensures assistive technologies interpret text correctly.

⚙ Programmatic HTML

When building HTML from translation data, using &#490; or &#x01EA; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type Ǫ directly in UTF-8 source
  • Use numeric references (&#x01EA; or &#490;) when escaping is required
  • Set lang="nv" on Navajo content blocks
  • Use fonts that support Latin Extended-B (U+0180–U+024F)
  • Distinguish Ǫ from Ą (A ogonek), Į (I ogonek), and plain O

Don’t

  • Use Ǫ for standard modern Lithuanian—use Ą, Ę, Į, or Ų instead
  • Substitute plain O when Ǫ is required in Navajo text
  • Expect a named HTML entity—none exists for Ǫ
  • Put CSS escape \01EA in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type Ǫ directly, or use hex/decimal references

&#x01EA; &#490;
2

For CSS stylesheets, use the escape in the content property

\01EA
3

Unicode U+01EA — LATIN CAPITAL LETTER O WITH OGONEK

4

Primary use: Navajo; lowercase is ǫ (U+01EB)

❓ Frequently Asked Questions

Use &#x01EA; (hex), &#490; (decimal), or \01EA in CSS content. There is no named HTML entity for Ǫ. In UTF-8 you can also type Ǫ directly.
U+01EA (LATIN CAPITAL LETTER O WITH OGONEK). Latin Extended-B block. Hex 01EA, decimal 490. Used in Navajo orthography and historical or linguistic texts. Lowercase form is U+01EB (ǫ).
When displaying Navajo text at sentence start or in capitalized words, historical Lithuanian or linguistic content, academic notation, or any page that requires O with ogonek (hook diacritic below O).
No. There is no named HTML entity for Ǫ. Use numeric codes &#490; or &#x01EA;, or the CSS entity \01EA. In UTF-8 pages you can type Ǫ directly.
Ǫ (U+01EA) is O with ogonek, used in Navajo and some historical texts. Ą (U+0104) is A with ogonek, used in modern Lithuanian and Polish. They are different letters.

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