HTML Entity for Uppercase O Tilde (Õ)

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

What You'll Learn

How to display the uppercase O with tilde (Õ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00D5 in the Latin-1 Supplement block—the letter O with a tilde (˜) above. It is a distinct letter in Portuguese and Estonian orthography.

Render it with Õ, Õ, Õ, or CSS escape \00D5. HTML provides the named entity Õ for this character. In UTF-8 documents you can also type Õ directly. Do not confuse Õ with Ñ (N tilde), Ã (A tilde), or Ɵ (O middle tilde).

⚡ Quick Reference — Uppercase O Tilde Entity

Unicode U+00D5

Latin-1 Supplement

Hex Code Õ

Hexadecimal reference

HTML Code Õ

Decimal reference

Named Entity Õ

HTML5 named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00D5
Hex code       Õ
HTML code      Õ
Named entity   Õ
CSS code       \00D5
Meaning        Latin capital letter O with tilde
Related        U+00F5 = õ (lowercase, õ)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\00D5";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x00D5;</p>
<p>Symbol (decimal): &#213;</p>
<p>Symbol (named): &Otilde;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase O tilde (Õ) and the named entity &Otilde; are supported in all modern browsers:

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

👀 Live Preview

See the uppercase O tilde (Õ) in Portuguese and Estonian contexts:

Large glyphÕ
PortuguesePÕE  |  LIMÕES (capitalized)
EstonianÕUN  |  SÕBER
Named entity&Otilde; renders as Õ
Lowercaseõ (U+00F5) — use &otilde;
Not the same asÑ (N tilde)  |  Ã (A tilde)  |  Ɵ (middle tilde)
Numeric refs&#x00D5; &#213; &Otilde; \00D5

🧠 How It Works

1

Named Entity

&Otilde; is the HTML named entity for O tilde—readable in source HTML and widely used for Portuguese and Estonian content.

HTML markup
2

Hexadecimal Code

&#x00D5; uses the Unicode hexadecimal value 00D5 to display the character. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#213; uses the decimal Unicode value 213 to display the same character. A common method when a numeric reference is needed.

HTML markup
4

CSS Entity

\00D5 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+00D5 sits in Latin-1 Supplement. Lowercase equivalent: U+00F5 (õ, &otilde;). Do not confuse with Ñ (N tilde), Ã (A tilde), or Ɵ (middle tilde).

Use Cases

The uppercase O tilde (Õ) is commonly used in:

🇧🇷 Portuguese

Capitalized words and titles (PÕE, LIMÕES). Õ is a distinct letter in Portuguese and Brazilian Portuguese.

🇪🇪 Estonian

Used in Estonian orthography at sentence start or in titles (ÕUN, SÕBER). Õ is a separate letter in the Estonian alphabet.

🌐 Multilingual sites

Menus, search, forms, and content for Portuguese and Estonian audiences. Correct Õ improves readability and SEO.

📚 Language learning

Lessons, dictionaries, and educational apps teaching Portuguese or Estonian pronunciation and spelling.

📝 Names & branding

Personal names, product names, and localized branding that contain the capital letter Õ.

♿ Accessibility

Using U+00D5 or &Otilde; with proper lang attributes ensures assistive technologies pronounce text correctly.

⚙ Programmatic HTML

When generating markup, &Otilde; or &#213; guarantees correct Portuguese or Estonian letter output.

💡 Best Practices

Do

  • Use U+00D5 (Õ) for Portuguese and Estonian text
  • Prefer &Otilde; over numeric codes when using entities—it is more readable
  • Set lang="pt" or lang="et" on content blocks
  • Serve pages as UTF-8; you can also type Õ directly in UTF-8 source
  • Distinguish Õ from Ñ (N tilde), Ã (A tilde), and Ɵ (middle tilde)

Don’t

  • Substitute plain O or ~O when Õ is required
  • Confuse Õ (tilde above) with Ɵ (middle tilde through the letter)
  • Use Õ in words that need à (e.g. SÃo uses A-tilde, not O-tilde)
  • Put CSS escape \00D5 in HTML text nodes
  • Mix entity styles inconsistently within the same project

Key Takeaways

1

Four references render Õ; named entity is &Otilde;

&Otilde; &#x00D5; &#213;
2

For CSS stylesheets, use the escape in the content property

\00D5
3

Unicode U+00D5 — LATIN CAPITAL LETTER O WITH TILDE

4

Portuguese & Estonian; lowercase is õ (&otilde;)

❓ Frequently Asked Questions

Use the named entity &Otilde;, hexadecimal &#x00D5;, decimal &#213;, or \00D5 in CSS content. The named entity is the most readable. In UTF-8 you can also type Õ directly.
U+00D5 (LATIN CAPITAL LETTER O WITH TILDE). Latin-1 Supplement block. Hex 00D5, decimal 213. Used in Portuguese and Estonian. Lowercase form is U+00F5 (õ, &otilde;).
When displaying Portuguese or Estonian text at sentence start or in capitalized words (e.g. PÕE, ÕUN), multilingual websites, and any content that requires O with tilde.
Yes. The named HTML entity for Õ is &Otilde;. You can also use &#x00D5;, &#213;, or the CSS entity \00D5. In UTF-8 pages you can type Õ directly.
Õ (U+00D5) is O with tilde, used in Portuguese and Estonian. Ñ (U+00D1) is N with tilde, used in Spanish (&Ntilde;). They are different letters—use the one that matches your language.

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