HTML Entity for Lowercase O Double Grave (ȍ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+020D

What Is the Lowercase O Double Grave Entity?

Lowercase o with double grave (ȍ) is the Unicode character at U+020D in Latin Extended-B. Official name: LATIN SMALL LETTER O WITH DOUBLE GRAVE — the letter o with two grave accents. Used in Serbo-Croatian phonological notation.

Remember
Character     ȍ
Unicode       U+020D
Hex entity    ȍ
Decimal       ȍ
CSS escape    \020D
Named entity  (none)
Capital       Ȍ (U+020C)
Not the same  o · ò (ò) · ő (ő)

Prefer ȍ or ȍ in HTML when you need an entity. You can also type ȍ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entityȍHTML markup
Decimal entityȍHTML markup
Direct characterȍHTML text (UTF-8)
CSS escape\020DStylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Need an entity in HTML sourceȍ or ȍ
Phonology / linguisticsȍ → ȍ
Italian / Catalan òò (single grave) — not U+020D
Hungarian őő (double acute) — not U+020D
Uppercase O with double graveUppercase O Double Grave (Ȍ, U+020C)
Generated text via ::before / ::aftercontent: "\020D"
Looking for a named entityDoes not exist — use numeric form

Live Preview

Glyph alone, in a sample line, and next to related forms.

Glyph ȍ
Large glyph ȍ
Sample ȍ · phonological notation
Compared ȍ   o   ò   ő   Ȍ
With entities Hex: ȍ | Decimal: ȍ

Complete HTML Example

One page that shows ȍ with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ȍ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase O Double Grave (ȍ) in HTML</title>
  <style>
    #point::after {
      content: "\020D";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x20D;</p>
  <p>Built with Decimal: &#525;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ȍ</p>
  <p>Notation: [&#x20D;]</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+020D → &#x20D; in HTML. The browser turns it into ȍ.

2. Decimal: same code point as 525 → &#525;. Same result as hex.

3. CSS: use \020D in content (not an HTML entity). #point::after appends ȍ.

4. Typed: paste ȍ in a UTF-8 document for phonological text. There is no named entity — numeric form is required when you need an entity.

Pitfalls & Tips

Common mistakes when working with lowercase o with double grave.

Named?

No named entity

HTML5 does not define a named entity for U+020D. Use &#x20D; or &#525;.

ò

Not &ograve;

ò has a single grave. ȍ has a double grave — different letters for different uses.

Look-alikes

Not double acute

Hungarian ő (&odblac;) uses a double acute (rising). Double grave leans the other way — do not swap them.

Fonts

Need Extended-B coverage

Some fonts omit Latin Extended-B. Prefer a font that includes U+020D for reliable glyphs.

CSS

Pad the CSS escape

Prefer \020D (four hex digits). A short \20D can swallow the next hex digit if one follows immediately.

CSS vs HTML

Do not mix escapes

\020D belongs in CSS strings. &#x20D; / &#525; belong in HTML.

Semicolon

End references

Always finish entities with ; — write &#x20D;, not &#x20D.

Browser Support

Lowercase o with double grave (U+020D) and its entity forms (&#x20D;, &#525;, CSS \\020D) are supported in all mainstream browsers. Visible glyphs depend on Latin Extended-B font coverage.

✓ Universal support

Lowercase O Double Grave (&#x020D;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+020D Full support

Bottom line: Prefer &#x20D; or &#525; in HTML when encoding must be explicit, and \\020D only inside CSS content. There is no named entity.

Key Takeaways

  • Unicode: lowercase o with double grave is U+020D (decimal 525) — glyph ȍ.
  • HTML: use &#x20D; or &#525; — no named entity.
  • CSS: use \020D inside content for generated text.
  • Watch out: ȍ ≠ &ograve; ≠ &odblac; ≠ plain o.

One line: U+020D → &#x20D; / &#525; / CSS \020D (no named entity).

Frequently Asked Questions

Use &#x20D; (hex), &#525; (decimal), type ȍ in UTF-8, or the CSS escape \020D in content. There is no HTML5 named entity for U+020D.
U+020D (LATIN SMALL LETTER O WITH DOUBLE GRAVE). Hex 20D, decimal 525. It belongs to Latin Extended-B (U+0180–U+024F).
No. HTML5 does not define a named entity for this character. Use numeric references like &#525; or &#x20D; when you need an entity form.
Use it for Serbo-Croatian phonological notation, linguistic papers, and related orthographies that need ȍ. Prefer &ograve; for everyday Italian/Catalan ò.
HTML entities (&#525; or &#x20D;) go in markup. The CSS escape \020D goes in stylesheet strings (usually content on ::before/::after).
No. U+020D has a double grave accent. ò (U+00F2, &ograve;) has a single grave. ő (U+0151, &odblac;) has a double acute — different accents.

Did you know?

Lowercase o with double grave is Unicode U+020D (decimal 525) — LATIN SMALL LETTER O WITH DOUBLE GRAVE in Latin Extended-B. HTML5 has no named entity for it — use &#x20D; or &#525;. Capital is U+020C (Ȍ). Used in Serbo-Croatian phonological notation for a short falling tone.

Next: Lowercase O Grave

Learn the HTML entity for lowercase o with grave (ò).

Lowercase O grave tutorial →

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