HTML Entity for Lowercase O Above Dot Macron (ȱ)

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

What You'll Learn

How to display the lowercase o with dot above and macron (ȱ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0231 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 letter o.

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

⚡ Quick Reference — Lowercase O Above Dot Macron Entity

Unicode U+0231

Latin Extended-B

Hex Code ȱ

Hexadecimal reference

HTML Code ȱ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

A simple example showing the lowercase 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: "\0231";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0231;</p>
<p>Symbol (decimal): &#561;</p>
<p>Symbol (direct): ȱ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase 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 lowercase o above dot macron (ȱ) in linguistic contexts:

Large glyphȱ
Unicode nameLatin small letter o with dot above and macron
UsageLinguistic and phonetic transcription systems
UppercaseȰ (U+0230) — LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON
Not the same asȯ (o dot above)  |  ō (o macron)  |  o (plain)
Numeric refs&#x0231; &#561; \0231

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

\0231 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+0231 sits in Latin Extended-B. Uppercase equivalent: U+0230 (Ȱ). Do not confuse with ȯ (o dot above), ō (o macron), or plain o.

Use Cases

The lowercase 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 &#561; or &#x0231; guarantees correct output.

🌐 Orthography

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

♿ Accessibility

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

🎨 CSS Generated Content

Using \0231 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 (&#x0231; or &#561;) when escaping is required
  • Use \0231 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 \0231 in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ȱ directly, or use hex/decimal references

&#x0231; &#561;
2

For CSS stylesheets, use the escape in the content property

\0231
3

Unicode U+0231 — LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON

4

Linguistic/phonetic notation; uppercase is Ȱ

❓ Frequently Asked Questions

Use &#x0231; (hex), &#561; (decimal), or \0231 in CSS content. There is no named HTML entity for ȱ. In UTF-8 you can also type ȱ directly.
U+0231 (LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON). Latin Extended-B block. Hex 0231, decimal 561. Uppercase form is U+0230 (Ȱ).
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 &#561; or &#x0231;, or the CSS entity \0231. In UTF-8 pages you can type ȱ directly.
HTML code (&#561; or &#x0231;) is used in HTML content; CSS entity \0231 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