HTML Entity for Uppercase O Inverted Breve (Ȏ)

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

What You'll Learn

How to display the uppercase O with inverted breve (Ȏ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+020E in the Latin Extended-B block. The inverted breve is a rounded diacritical mark used in Slavicist phonology (e.g. long falling accent notation) and in the International Phonetic Alphabet (IPA) for non-syllabic vowels.

Render it with Ȏ, Ȏ, or CSS escape \020E. There is no named HTML entity for this character. In UTF-8 documents you can also type Ȏ directly. Do not confuse Ȏ with Ŏ (regular breve)—they are different characters.

⚡ Quick Reference — Uppercase O Inverted Breve Entity

Unicode U+020E

Latin Extended-B

Hex Code Ȏ

Hexadecimal reference

HTML Code Ȏ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+020E
Hex code       Ȏ
HTML code      Ȏ
Named entity   (none)
CSS code       \020E
Meaning        Latin capital letter O with inverted breve
Related        U+020F = ȏ (lowercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase O inverted breve (Ȏ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\020E";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x020E;</p>
<p>Symbol (decimal): &#526;</p>
<p>Symbol (direct): Ȏ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase O inverted breve (Ȏ) 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 inverted breve (Ȏ) in linguistic contexts:

Large glyphȎ
Slavicist notationLong falling accent on capital O in traditional Serbo-Croatian phonology
IPA usageNon-syllabic vowel notation in phonetic transcription
Lowercaseȏ (U+020F) — LATIN SMALL LETTER O WITH INVERTED BREVE
Not the same asŎ (breve)  |  Ȯ (dot above)  |  O (plain)
Numeric refs&#x020E; &#526; \020E

🧠 How It Works

1

Hexadecimal Code

&#x020E; uses the Unicode hexadecimal value 020E to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
4

CSS Entity

\020E 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+020E sits in Latin Extended-B. Lowercase equivalent: U+020F (ȏ). Do not confuse with Ŏ (regular breve) or Ȯ (dot above).

Use Cases

The uppercase O inverted breve (Ȏ) is commonly used in:

🗣 Slavicist Phonology

Represent long falling accent on capital O in traditional Serbo-Croatian phonological notation and scholarly descriptions.

🎤 IPA Notation

Denote non-syllabic vowels in phonetic transcription and linguistic notation at sentence start or in capitalized forms.

📝 Linguistics

Academic papers, textbooks, and documentation on Slavic phonology, accent systems, or phonetic diacritics.

📚 Language Documentation

Phonetic or phonological symbols in language descriptions and specialized reference works.

🎨 Typography

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

♿ Accessibility

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

⚙ Programmatic HTML

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

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type Ȏ directly in UTF-8 source
  • Use numeric references (&#x020E; or &#526;) when escaping is required
  • Use \020E in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters (U+0180–U+024F)
  • Distinguish Ȏ (inverted breve) from Ŏ (breve) and Ȯ (dot above)

Don’t

  • Expect a named HTML entity—none exists for Ȏ
  • Confuse Ȏ (inverted breve) with Ŏ (regular breve) or Ȯ (dot above)
  • Combine separate diacritics when the precomposed Ȏ is required
  • Put CSS escape \020E in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type Ȏ directly, or use hex/decimal references

&#x020E; &#526;
2

For CSS stylesheets, use the escape in the content property

\020E
3

Unicode U+020E — LATIN CAPITAL LETTER O WITH INVERTED BREVE

4

Slavicist notation and IPA; lowercase is ȏ (U+020F)

❓ Frequently Asked Questions

Use &#x020E; (hex), &#526; (decimal), or \020E in CSS content. There is no named HTML entity for Ȏ. In UTF-8 you can also type Ȏ directly.
U+020E (LATIN CAPITAL LETTER O WITH INVERTED BREVE). Latin Extended-B block. Hex 020E, decimal 526. Used in Slavicist phonology and IPA for non-syllabic vowels. Lowercase form is U+020F (ȏ).
When displaying capitalized Slavicist notation, IPA phonetic transcription for non-syllabic vowels at sentence start, linguistics papers, or any content requiring O with inverted breve.
No. There is no named HTML entity for Ȏ. Use numeric codes &#526; or &#x020E;, or the CSS entity \020E. In UTF-8 pages you can type Ȏ directly.
Ȏ (U+020E) has an inverted breve (rounded, above), used in Slavicist and IPA notation. Ŏ (U+014E) has a regular breve, used in different orthographies. They are different characters.

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