HTML Entity for Lowercase O Ogonek (ǫ)

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

What You'll Learn

How to display the lowercase o with ogonek (ǫ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01EB 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 \01EB. There is no named HTML entity for this character (unlike į for į). In UTF-8 documents you can also type ǫ directly.

⚡ Quick Reference — Lowercase O Ogonek Entity

Unicode U+01EB

Latin Extended-B

Hex Code ǫ

Hexadecimal reference

HTML Code ǫ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

A simple example showing the lowercase 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: "\01EB";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01EB;</p>
<p>Symbol (decimal): &#491;</p>
<p>Symbol (direct): ǫ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase 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 lowercase o ogonek (ǫ) in language and notation contexts:

Large glyphǫ
NavajoNasal vowel in Navajo orthography
UppercaseǪ (U+01EA) — LATIN CAPITAL LETTER O WITH OGONEK
Not the same asą (a ogonek)  |  į (i ogonek)  |  o (plain)
NoteModern Lithuanian uses ą, ę, į, ų—not standard ǫ
Numeric refs&#x01EB; &#491; \01EB

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

\01EB 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+01EB sits in Latin Extended-B. Uppercase equivalent: U+01EA (Ǫ). Do not confuse with ą (a ogonek) or į (i ogonek).

Use Cases

The lowercase o ogonek (ǫ) is commonly used in:

🇺🇲 Navajo

Nasal vowel notation in Navajo orthography and language learning materials.

📜 Historical texts

Historical Lithuanian and linguistic editions that use o with ogonek.

🔤 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.

♿ Accessibility

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

⚙ Programmatic HTML

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

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ǫ directly in UTF-8 source
  • Use numeric references (&#x01EB; or &#491;) 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 \01EB in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ǫ directly, or use hex/decimal references

&#x01EB; &#491;
2

For CSS stylesheets, use the escape in the content property

\01EB
3

Unicode U+01EB — LATIN SMALL LETTER O WITH OGONEK

4

Primary use: Navajo; uppercase is Ǫ (U+01EA)

❓ Frequently Asked Questions

Use &#x01EB; (hex), &#491; (decimal), or \01EB in CSS content. There is no named HTML entity for ǫ. In UTF-8 you can also type ǫ directly.
U+01EB (LATIN SMALL LETTER O WITH OGONEK). Latin Extended-B block. Hex 01EB, decimal 491. Used in Navajo orthography and historical or linguistic texts. Uppercase form is U+01EA (Ǫ).
When displaying Navajo text, historical Lithuanian or linguistic content, academic notation, or any page that requires o with ogonek.
No. Use numeric codes &#491; or &#x01EB;, or the CSS entity \01EB. In UTF-8 pages you can type ǫ directly. (Compare with &iogon; for į, which does have a named entity.)
ǫ (U+01EB) is o with ogonek, used in Navajo and some historical texts. ą (U+0105) 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