HTML Entity for Lowercase O Ogonek Macron (ǭ)

What You'll Learn
How to display the lowercase o with ogonek and macron (ǭ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01ED in the Latin Extended-B block—a single precomposed glyph with a hook (ogonek) below and a horizontal bar (macron) above the letter o.
Render it with ǭ, ǭ, or CSS escape \01ED. There is no named HTML entity. In UTF-8 documents you can also type ǭ directly. It appears in historical Lithuanian and Samogitian dialect texts, and in linguistic notation where both nasalization and vowel length are marked on o.
⚡ Quick Reference — Lowercase O Ogonek Macron Entity
U+01EDLatin Extended-B
ǭHexadecimal reference
ǭDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01ED
Hex code ǭ
HTML code ǭ
Named entity (none)
CSS code \01ED
Meaning Latin small letter o with ogonek and macron
Related U+01EC = Ǭ (uppercase)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase o ogonek macron (ǭ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01ED";
}
</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 macron (ǭ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the lowercase o ogonek macron (ǭ) in dialect and notation contexts:
🧠 How It Works
Hexadecimal Code
ǭ uses the Unicode hexadecimal value 01ED to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ǭ uses the decimal Unicode value 493 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
\01ED 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+01ED sits in Latin Extended-B. Uppercase equivalent: U+01EC (Ǭ). Do not confuse with ǫ (ogonek only), ō (macron only), or ȫ (diaeresis + macron).
Use Cases
The lowercase o ogonek macron (ǭ) is commonly used in:
Historical orthographies and critical editions where o carries both ogonek and macron.
Dialect texts and linguistic studies of Samogitian and related Baltic varieties.
Phonetic transcription marking both nasalization (ogonek) and vowel length (macron) on o.
Scholarly papers, dictionaries, and language documentation requiring precise diacritic combinations.
Font specimens showcasing Latin Extended-B support for stacked diacritics.
Using U+01ED 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="lt"on Lithuanian or dialect content blocks - Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish ǭ from ǫ (ogonek only), ō (macron only), and ȫ (diaeresis + macron)
Don’t
- Use ǭ for standard modern Lithuanian—use ą, ę, į, or ų instead
- Stack separate combining marks when the precomposed ǭ is the correct character
- Expect a named HTML entity—none exists for ǭ
- Put CSS escape
\01EDin HTML text nodes - Substitute ǫ or ō when ǭ is required in historical or dialect text
Key Takeaways
Type ǭ directly, or use hex/decimal references
ǭ ǭFor CSS stylesheets, use the escape in the content property
\01EDUnicode U+01ED — LATIN SMALL LETTER O WITH OGONEK AND MACRON
Historical/dialect Lithuanian & linguistics; uppercase is Ǭ (U+01EC)
Previous: Lowercase O Ogonek (ǫ) Next: Lowercase O Script Small
❓ Frequently Asked Questions
ǭ (hex), ǭ (decimal), or \01ED in CSS content. There is no named HTML entity for ǭ. In UTF-8 you can also type ǭ directly.U+01ED (LATIN SMALL LETTER O WITH OGONEK AND MACRON). Latin Extended-B block. Hex 01ED, decimal 493. Used in historical Lithuanian, Samogitian dialect texts, and linguistic notation. Uppercase form is U+01EC (Ǭ).ǭ or ǭ, or the CSS entity \01ED. In UTF-8 pages you can type ǭ directly.ō). They are distinct precomposed characters—use the one that matches your text.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
