HTML Entity for Lowercase O Ogonek Macron (ǭ)

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

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

Unicode U+01ED

Latin Extended-B

Hex Code ǭ

Hexadecimal reference

HTML Code ǭ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

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:

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

🌐 Browser Support

The lowercase o ogonek macron (ǭ) 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 macron (ǭ) in dialect and notation contexts:

Large glyphǭ
Unicode nameLatin small letter o with ogonek and macron
UsageHistorical Lithuanian, Samogitian dialect, linguistic notation
UppercaseǬ (U+01EC) — LATIN CAPITAL LETTER O WITH OGONEK AND MACRON
Not the same asǫ (ogonek only)  |  ō (macron only)  |  ȫ (diaeresis + macron)
NoteStandard modern Lithuanian uses ą, ę, į, ų—not ǭ
Numeric refs&#x01ED; &#493; \01ED

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

\01ED 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+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 Lithuanian

Historical orthographies and critical editions where o carries both ogonek and macron.

📜 Samogitian dialect

Dialect texts and linguistic studies of Samogitian and related Baltic varieties.

🔤 Linguistics

Phonetic transcription marking both nasalization (ogonek) and vowel length (macron) on o.

📚 Academic publishing

Scholarly papers, dictionaries, and language documentation requiring precise diacritic combinations.

🎨 Typography

Font specimens showcasing Latin Extended-B support for stacked diacritics.

♿ Accessibility

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

⚙ Programmatic HTML

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

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ǭ directly in UTF-8 source
  • Use numeric references (&#x01ED; or &#493;) 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 \01ED in HTML text nodes
  • Substitute ǫ or ō when ǭ is required in historical or dialect text

Key Takeaways

1

Type ǭ directly, or use hex/decimal references

&#x01ED; &#493;
2

For CSS stylesheets, use the escape in the content property

\01ED
3

Unicode U+01ED — LATIN SMALL LETTER O WITH OGONEK AND MACRON

4

Historical/dialect Lithuanian & linguistics; uppercase is Ǭ (U+01EC)

❓ Frequently Asked Questions

Use &#x01ED; (hex), &#493; (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 (Ǭ).
When displaying historical or dialect Lithuanian text, phonetic notation that marks both nasalization and vowel length on o, academic editions, or any page that requires the combined ogonek-and-macron diacritic.
No. Use numeric codes &#493; or &#x01ED;, or the CSS entity \01ED. In UTF-8 pages you can type ǭ directly.
ǭ (U+01ED) is o with both ogonek and macron. ǫ (U+01EB) is o with ogonek only. ō (U+014D) is o with macron only (&omacr;). 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.

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