HTML Entity for Lowercase O Ogonek (ǫ)

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
U+01EBLatin Extended-B
ǫHexadecimal reference
ǫDecimal reference
—No named entity
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01EB";
}
</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 ogonek (ǫ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the lowercase o ogonek (ǫ) in language and notation contexts:
🧠 How It Works
Hexadecimal Code
ǫ uses the Unicode hexadecimal value 01EB to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǫ uses the decimal Unicode value 491 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 letter.
CSS Entity
\01EB 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+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:
Nasal vowel notation in Navajo orthography and language learning materials.
Historical Lithuanian and linguistic editions that use o with ogonek.
Phonetic transcription, language documentation, and scholarly notation requiring ǫ.
Language courses and bilingual content for Navajo and indigenous language programs.
Font specimens showcasing Latin Extended-B ogonek support.
Using U+01EB with proper lang attributes ensures assistive technologies interpret text correctly.
When building HTML from translation data, using ǫ or ǫ guarantees correct output.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type ǫ directly in UTF-8 source
- Use numeric references (
ǫorǫ) 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
owhen ǫ is required in Navajo text - Expect a named HTML entity—none exists for ǫ
- Put CSS escape
\01EBin 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
\01EBUnicode U+01EB — LATIN SMALL LETTER O WITH OGONEK
Primary use: Navajo; uppercase is Ǫ (U+01EA)
Previous: Lowercase O Macron (ō) Next: Lowercase O Ogonek Macron
❓ Frequently Asked Questions
ǫ (hex), ǫ (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 (Ǫ).ǫ or ǫ, or the CSS entity \01EB. In UTF-8 pages you can type ǫ directly. (Compare with į for į, which does have a named entity.)Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
