HTML Entity for Uppercase O Above Dot Macron (Ȱ)

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

What You'll Learn

How to display the uppercase O with dot above and macron (Ȱ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0230 (LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON) in the Latin Extended-B block. It is used in linguistic and phonetic notation where both a dot above and macron diacritic apply to the capital letter O.

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

⚡ Quick Reference — Uppercase O Above Dot Macron Entity

Unicode U+0230

Latin Extended-B

Hex Code Ȱ

Hexadecimal reference

HTML Code Ȱ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0230
Hex code       Ȱ
HTML code      Ȱ
Named entity   (none)
CSS code       \0230
Meaning        Latin capital letter O with dot above and macron
Related        U+0231 = ȱ (lowercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase O above dot macron (Ȱ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0230";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0230;</p>
<p>Symbol (decimal): &#560;</p>
<p>Symbol (direct): Ȱ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase O above dot 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 above dot macron (Ȱ) in linguistic contexts:

Large glyphȰ
Unicode nameLATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON
UsageLinguistic and phonetic transcription systems
Lowercaseȱ (U+0231) — LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON
Not the same asȮ (O dot above)  |  Ō (O macron)  |  O (plain)
Numeric refs&#x0230; &#560; \0230

🧠 How It Works

1

Hexadecimal Code

&#x0230; uses the Unicode hexadecimal value 0230 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#560; uses the decimal Unicode value 560 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 linguistic symbol.

HTML markup
4

CSS Entity

\0230 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+0230 sits in Latin Extended-B. Lowercase equivalent: U+0231 (ȱ). Do not confuse with Ȯ (O dot above), Ō (O macron), or plain O.

Use Cases

The uppercase O above dot macron (Ȱ) is commonly used in:

📝 Linguistics & Phonetics

Used in transcription systems and linguistic description. Entity or UTF-8 ensures correct display in academic content.

📐 Typography

When a font or design uses Ȱ for linguistic or historical text. Use the entity to output it in HTML or CSS.

📚 Documentation

Tutorials on HTML entities, Unicode, or linguistic symbols showing numeric codes for Ȱ.

⚙ Programmatic HTML

When building HTML from linguistic data or dictionaries, using &#560; or &#x0230; guarantees correct output.

🌐 Orthography

Some orthographies or romanization systems may use this character. Correct encoding supports proper representation.

♿ Accessibility

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

🎨 CSS Generated Content

Using \0230 in the CSS content property to insert Ȱ via pseudo-elements.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type Ȱ directly in UTF-8 source
  • Use numeric references (&#x0230; or &#560;) when escaping is required
  • Use \0230 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters
  • Distinguish Ȱ from Ȯ (dot only) and Ō (macron only)

Don’t

  • Expect a named HTML entity—none exists for Ȱ
  • Confuse Ȱ (dot + macron) with Ȯ (dot above), Ō (macron), or plain O
  • Combine separate diacritics when the precomposed Ȱ is required
  • Put CSS escape \0230 in HTML text nodes
  • Use \00230 in CSS—the correct escape is \0230

Key Takeaways

1

Type Ȱ directly, or use hex/decimal references

&#x0230; &#560;
2

For CSS stylesheets, use the escape in the content property

\0230
3

Unicode U+0230 — LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON

4

Linguistic/phonetic notation; lowercase is ȱ

❓ Frequently Asked Questions

Use &#x0230; (hex), &#560; (decimal), or \0230 in CSS content. There is no named HTML entity for Ȱ. In UTF-8 you can also type Ȱ directly.
U+0230 (LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON). Latin Extended-B block. Hex 0230, decimal 560. Lowercase form is U+0231 (ȱ).
When displaying linguistic or phonetic notation, academic content, documentation, or when you need an explicit character reference. In UTF-8 pages you can type Ȱ directly.
No. There is no named HTML entity for Ȱ. Use numeric codes &#560; or &#x0230;, or the CSS entity \0230. In UTF-8 pages you can type Ȱ directly.
HTML code (&#560; or &#x0230;) is used in HTML content; CSS entity \0230 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