HTML Entity for Lowercase O Double Grave (ȍ)

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

What You'll Learn

How to display the lowercase o with double grave (ȍ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+020D in the Latin Extended-B block. The double grave (‿) diacritic is used in phonological notation—in Serbo-Croatian and Slovenian it can indicate a short falling tone, and in the International Phonetic Alphabet (IPA) it denotes extra-low tone.

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

⚡ Quick Reference — Lowercase O Double Grave Entity

Unicode U+020D

Latin Extended-B

Hex Code ȍ

Hexadecimal reference

HTML Code ȍ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+020D
Hex code       ȍ
HTML code      ȍ
Named entity   (none)
CSS code       \020D
Meaning        Latin small letter o with double grave
Related        U+020C = Ȍ (uppercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase o double grave (ȍ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

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

🌐 Browser Support

The lowercase o double grave (ȍ) 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 double grave (ȍ) in linguistic contexts:

Large glyphȍ
Unicode nameLatin small letter o with double grave
UsageSlavic phonology, IPA extra-low tone notation
UppercaseȌ (U+020C) — LATIN CAPITAL LETTER O WITH DOUBLE GRAVE
Not the same asò (single grave)  |  ő (double acute)  |  o (plain)
Numeric refs&#x020D; &#525; \020D

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

\020D 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+020D sits in Latin Extended-B. Uppercase equivalent: U+020C (Ȍ). Do not confuse with ò (single grave) or ő (double acute).

Use Cases

The lowercase o double grave (ȍ) is commonly used in:

🇷🇸 Slavic Phonology

Represent short falling tone in Serbo-Croatian and Slovenian phonological descriptions.

🎤 IPA Notation

Denote extra-low tone in phonetic transcription and tone notation systems.

📝 Linguistics

Academic papers, textbooks, and documentation on Slavic phonology and diacritics.

📚 Language Documentation

Phonetic or phonological symbols in language descriptions and dictionaries.

🎨 Typography

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

♿ Accessibility

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

⚙ Programmatic HTML

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

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ȍ directly in UTF-8 source
  • Use numeric references (&#x020D; or &#525;) when escaping is required
  • Use \020D in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B characters (U+0180–U+024F)
  • Distinguish ȍ (double grave) from ò (single grave) and ő (double acute)

Don’t

  • Expect a named HTML entity—none exists for ȍ
  • Confuse ȍ (double grave) with ò (single grave) or ő (double acute)
  • Combine separate diacritics when the precomposed ȍ is required
  • Put CSS escape \020D in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ȍ directly, or use hex/decimal references

&#x020D; &#525;
2

For CSS stylesheets, use the escape in the content property

\020D
3

Unicode U+020D — LATIN SMALL LETTER O WITH DOUBLE GRAVE

4

Slavic phonology and IPA; uppercase is Ȍ (U+020C)

❓ Frequently Asked Questions

Use &#x020D; (hex), &#525; (decimal), or \020D in CSS content. There is no named HTML entity for ȍ. In UTF-8 you can also type ȍ directly.
U+020D (LATIN SMALL LETTER O WITH DOUBLE GRAVE). Latin Extended-B block. Hex 020D, decimal 525. Used in phonological notation and IPA. Uppercase form is U+020C (Ȍ).
When displaying phonological discussions of Serbo-Croatian and Slovenian, IPA extra-low tone notation, linguistics papers, or any content that requires o with double grave.
No. There is no named HTML entity for ȍ. Use numeric codes &#525; or &#x020D;, or the CSS entity \020D. In UTF-8 pages you can type ȍ directly.
ȍ (U+020D) is o with double grave, used in Slavic phonology and IPA tone notation. ò (U+00F2) is o with single grave, used in Italian, Catalan, and other 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