HTML Entity for Uppercase O Diaeresis Macron (Ȫ)

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

What You'll Learn

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

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

⚡ Quick Reference — Uppercase O Diaeresis Macron Entity

Unicode U+022A

Latin Extended-B

Hex Code Ȫ

Hexadecimal reference

HTML Code Ȫ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

A simple example showing the uppercase 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: "\022A";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x022A;</p>
<p>Symbol (decimal): &#554;</p>
<p>Symbol (direct): Ȫ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase 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 uppercase O diaeresis macron (Ȫ) in linguistic contexts:

Large glyphȪ
Unicode nameLATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON
Case pairȪ (uppercase) / ȫ (lowercase)
Not the same asÖ (diaeresis only)  |  Ō (macron only)  |  Ȭ (tilde + macron)
Numeric refs&#x022A; &#554; \022A

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

\022A 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+022A sits in Latin Extended-B. Lowercase equivalent: U+022B (ȫ). Do not confuse with Ö (diaeresis only), Ō (macron only), or Ȭ (tilde + macron).

Use Cases

The uppercase O diaeresis macron (Ȫ) is commonly used in:

📝 Linguistics & Phonology

Represent specific vowel qualities or lengths in phonetic transcription and language documentation at sentence start or in capitalized terms.

🌐 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 capital letter O.

📚 Academic Content

Papers, dictionaries, and language resources requiring precise character representation with multiple diacritics.

🎨 Typography

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

♿ Accessibility

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

⚙ Programmatic HTML

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

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type Ȫ directly in UTF-8 source
  • Use numeric references (&#x022A; or &#554;) when escaping is required
  • Use \022A 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 \022A in HTML text nodes
  • Use \0022A in CSS—the correct escape is \022A

Key Takeaways

1

Type Ȫ directly, or use hex/decimal references

&#x022A; &#554;
2

For CSS stylesheets, use the escape in the content property

\022A
3

Unicode U+022A — LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON

4

Linguistics and transliteration; lowercase is ȫ (U+022B)

❓ Frequently Asked Questions

Use &#x022A; (hex), &#554; (decimal), or \022A in CSS content. There is no named HTML entity for Ȫ. In UTF-8 you can also type Ȫ directly.
U+022A (LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON). Latin Extended-B block. Hex 022A, decimal 554. Lowercase form is U+022B (ȫ).
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 &#554; or &#x022A;, or the CSS entity \022A. In UTF-8 pages you can type Ȫ directly.
HTML code (&#554; or &#x022A;) is used in HTML content; CSS entity \022A 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