HTML Entity for Lowercase O Diaeresis Macron (ȫ)

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

What You'll Learn

How to display the lowercase o with diaeresis and macron (ȫ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+022B in the Latin Extended-B block. It combines the letter o with a diaeresis (two dots) and a macron (long mark), used in linguistics and some extended Latin writing systems.

Render it with ȫ, ȫ, or CSS escape \022B. There is no named HTML entity for this character. In UTF-8 documents you can also type ȫ directly.

⚡ Quick Reference — Lowercase O Diaeresis Macron Entity

Unicode U+022B

Latin Extended-B

Hex Code ȫ

Hexadecimal reference

HTML Code ȫ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+022B
Hex code       ȫ
HTML code      ȫ
Named entity   (none)
CSS code       \022B
Meaning        Latin small letter o with diaeresis and macron
Related        U+022A = Ȫ (uppercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase o diaeresis macron (ȫ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\022B";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x022B;</p>
<p>Symbol (decimal): &#555;</p>
<p>Symbol (direct): ȫ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase o diaeresis 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 diaeresis macron (ȫ) in linguistic contexts:

Large glyphȫ
Unicode nameLatin small letter o with diaeresis and macron
UsageLinguistics, transliteration, extended Latin orthographies
UppercaseȪ (U+022A) — LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON
Not the same asö (diaeresis only)  |  ō (macron only)  |  ȱ (dot above + macron)
Numeric refs&#x022B; &#555; \022B

🧠 How It Works

1

Hexadecimal Code

&#x022B; uses the Unicode hexadecimal value 022B to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#555; uses the decimal Unicode value 555 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 combined diacritic symbol.

HTML markup
4

CSS Entity

\022B 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+022B sits in Latin Extended-B. Uppercase equivalent: U+022A (Ȫ). Do not confuse with ö (diaeresis only), ō (macron only), or ȱ (dot above + macron).

Use Cases

The lowercase o diaeresis macron (ȫ) is commonly used in:

📝 Linguistics & Phonology

Represent specific vowel qualities or lengths in phonetic transcription and language documentation.

🌐 Transliteration

Romanization schemes that require o with both diaeresis and macron for accurate representation.

📐 Extended Latin

Orthographies or writing systems that use this combined diacritic on the letter o.

📚 Academic Content

Papers, dictionaries, and language resources requiring precise character representation.

🎨 Typography

Font specimens and demos showcasing Latin Extended-B combined diacritic support.

♿ Accessibility

Using the correct character (U+022B) ensures assistive technologies interpret linguistic content correctly.

⚙ Programmatic HTML

When building HTML from linguistic data, using &#555; or &#x022B; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ȫ directly in UTF-8 source
  • Use numeric references (&#x022B; or &#555;) when escaping is required
  • Use \022B in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters (U+0180–U+024F)
  • Distinguish ȫ from ö (diaeresis only) and ō (macron only)

Don’t

  • Expect a named HTML entity—none exists for ȫ
  • Confuse ȫ (diaeresis + macron) with ö, ō, or ȱ
  • Combine separate diacritics when the precomposed ȫ is required
  • Put CSS escape \022B in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ȫ directly, or use hex/decimal references

&#x022B; &#555;
2

For CSS stylesheets, use the escape in the content property

\022B
3

Unicode U+022B — LATIN SMALL LETTER O WITH DIAERESIS AND MACRON

4

Linguistics and transliteration; uppercase is Ȫ (U+022A)

❓ Frequently Asked Questions

Use &#x022B; (hex), &#555; (decimal), or \022B in CSS content. There is no named HTML entity for ȫ. In UTF-8 you can also type ȫ directly.
U+022B (LATIN SMALL LETTER O WITH DIAERESIS AND MACRON). Latin Extended-B block. Hex 022B, decimal 555. Uppercase form is U+022A (Ȫ).
When displaying linguistics content, transliteration systems, extended Latin orthographies, language documentation, or any content that requires o with both diaeresis and macron.
No. There is no named HTML entity for ȫ. Use numeric codes &#555; or &#x022B;, or the CSS entity \022B. In UTF-8 pages you can type ȫ directly.
HTML code (&#555; or &#x022B;) is used in HTML content; CSS entity \022B is used in stylesheets in the content property of pseudo-elements. Both produce ȫ.

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