HTML Entity for Uppercase O Grave (Ò)

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

What You'll Learn

How to display the uppercase O with grave accent (Ò) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00D2 in the Latin-1 Supplement block and is essential for Italian, Catalan, Occitan, Scottish Gaelic, and other languages.

Render it with Ò, Ò, Ò, or CSS escape \D2. The named entity Ò is often the most readable option in HTML source. Do not confuse Ò with Ó (acute) or Ȍ (double grave)—each is a distinct character.

⚡ Quick Reference — Uppercase O Grave Entity

Unicode U+00D2

Latin-1 Supplement

Hex Code Ò

Hexadecimal reference

HTML Code Ò

Decimal reference

Named Entity Ò

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00D2
Hex code       Ò
HTML code      Ò
Named entity   Ò
CSS code       \D2
Meaning        Latin capital letter O with grave
Related        U+00F2 = ò (lowercase)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

A simple example showing the uppercase O grave (Ò) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\D2";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xD2;</p>
<p>Symbol (decimal): &#210;</p>
<p>Symbol (named): &Ograve;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase O grave (Ò) and the named entity &Ograve; are universally supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase O grave (Ò) in language and content contexts:

Large glyphÒ
CatalanÒscar, Òmnia
ItalianCosì, Può, Però (capitalized)
Named entity&Ograve; renders as Ò
Lowercaseò (U+00F2) — use &ograve;
Not the same asÓ (acute)  |  Ô (circumflex)  |  Ȍ (double grave)  |  O (plain)
Numeric refs&#xD2; &#210; &Ograve; \D2

🧠 How It Works

1

Named Entity

&Ograve; is the standard named entity for Ò—readable in source HTML and part of the HTML Latin-1 entity set.

HTML markup
2

Hexadecimal Code

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

HTML markup
3

Decimal HTML Code

&#210; uses the decimal Unicode value 210 to display the same character. A common method for Latin-1 characters.

HTML markup
4

CSS Entity

\D2 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ò. Unicode U+00D2 sits in Latin-1 Supplement. Lowercase equivalent: U+00F2 (&ograve;). Do not confuse with Ó (acute), Ô (circumflex), or Ȍ (double grave).

Use Cases

The uppercase O grave (Ò) is commonly used in:

🇮🇹 Italian

Capitalized words and titles where grave-accented O appears at sentence start, such as Così or Però in headings.

🇨🇳 Catalan & Occitan

Proper names and words like Òscar and Òmnia where Ò marks the correct orthography.

🇬🇧 Scottish Gaelic

Capitalized Gaelic text and place names that require correct grave-accented O spelling.

🌐 Multilingual Sites

Websites, apps, and localization for Italian-, Catalan-, and Gaelic-speaking audiences.

📚 Language Learning

Courses, dictionaries, and educational content teaching grave-accented O in multiple languages.

📝 Proper names

Personal names, surnames, and geographic names that require correct Ò at the start of a word or sentence.

🔍 Search & SEO

Correct rendering so users can find content with proper accented spelling in search results.

💡 Best Practices

Do

  • Use &Ograve; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ò directly in UTF-8 source
  • Set lang attributes (e.g. lang="it", lang="ca") for correct pronunciation
  • Use fonts that support Latin-1 Supplement characters
  • Distinguish Ò (grave) from Ó (acute), Ô (circumflex), and Ȍ (double grave)

Don’t

  • Substitute plain O when Ò is required for correct spelling
  • Confuse Ò (grave) with Ó (acute) or Ȍ (double grave)
  • Put CSS escape \D2 in HTML text nodes
  • Use \00D2 in CSS when \D2 is sufficient and correct
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Ò; named entity is most readable

&#xD2; &#210; &Ograve;
2

For CSS stylesheets, use the escape in the content property

\D2
3

Unicode U+00D2 — LATIN CAPITAL LETTER O WITH GRAVE

4

Lowercase pair is U+00F2 (ò, &ograve;)

❓ Frequently Asked Questions

Use &Ograve; (named), &#xD2; (hex), &#210; (decimal), or \D2 in CSS content. The named entity &Ograve; is the most readable for HTML content.
U+00D2 (LATIN CAPITAL LETTER O WITH GRAVE). Latin-1 Supplement block. Hex D2, decimal 210. Used in Italian, Catalan, Occitan, Scottish Gaelic, and other languages.
When writing capitalized words and proper names in Italian, Catalan, Occitan, Scottish Gaelic, and other languages that use this character at sentence start or in titles, plus multilingual websites and language-learning content.
Ò (U+00D2) is O with grave accent; Ó (U+00D3) is O with acute accent. In Italian and other languages they represent different sounds and meanings—for example, però vs peró. Use the correct character for your language.
Yes. &Ograve; is part of the HTML5 Latin-1 entity set and is well supported in all modern browsers. Numeric codes remain a reliable alternative for older systems.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented 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