HTML Entity for Uppercase O Above Dot Macron (Ȱ)

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
U+0230Latin Extended-B
ȰHexadecimal reference
ȰDecimal reference
—No named entity
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0230";
}
</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 uppercase O above dot macron (Ȱ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase O above dot macron (Ȱ) in linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ȱ uses the Unicode hexadecimal value 0230 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ȱ uses the decimal Unicode value 560 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 linguistic symbol.
CSS Entity
\0230 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+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:
Used in transcription systems and linguistic description. Entity or UTF-8 ensures correct display in academic content.
When a font or design uses Ȱ for linguistic or historical text. Use the entity to output it in HTML or CSS.
Tutorials on HTML entities, Unicode, or linguistic symbols showing numeric codes for Ȱ.
When building HTML from linguistic data or dictionaries, using Ȱ or Ȱ guarantees correct output.
Some orthographies or romanization systems may use this character. Correct encoding supports proper representation.
Using the correct character (U+0230) ensures assistive technologies interpret linguistic content correctly.
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 (
ȰorȰ) when escaping is required - Use
\0230in CSScontentwhen 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
\0230in HTML text nodes - Use
\00230in CSS—the correct escape is\0230
Key Takeaways
Type Ȱ directly, or use hex/decimal references
Ȱ ȰFor CSS stylesheets, use the escape in the content property
\0230Unicode U+0230 — LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON
Linguistic/phonetic notation; lowercase is ȱ
Previous: Uppercase O Next: Uppercase O Acute (Ó)
❓ Frequently Asked Questions
Ȱ (hex), Ȱ (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 (ȱ).Ȱ or Ȱ, or the CSS entity \0230. In UTF-8 pages you can type Ȱ directly.Ȱ or Ȱ) 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.
8 people found this page helpful
