HTML Entity for Lowercase O Tilde (õ)

What You'll Learn
How to display the lowercase o with tilde (õ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00F5 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 \00F5. HTML provides the named entity õ for this character. In UTF-8 documents you can also type õ directly. Do not confuse õ with ñ (n tilde) or ã (a tilde).
⚡ Quick Reference — Lowercase O Tilde Entity
U+00F5Latin-1 Supplement
õHexadecimal reference
õDecimal reference
õHTML5 named entity
Name Value
──────────── ──────────
Unicode U+00F5
Hex code õ
HTML code õ
Named entity õ
CSS code \00F5
Meaning Latin small letter o with tilde
Related U+00D5 = Õ (uppercase, Õ)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase o tilde (õ) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00F5";
}
</style>
</head>
<body>
<p>Symbol (hex): õ</p>
<p>Symbol (decimal): õ</p>
<p>Symbol (named): õ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase o tilde (õ) and the named entity õ are supported in all modern browsers:
👀 Live Preview
See the lowercase o tilde (õ) in Portuguese and Estonian contexts:
🧠 How It Works
Named Entity
õ is the HTML named entity for o tilde—readable in source HTML and widely used for Portuguese and Estonian content.
Hexadecimal Code
õ uses the Unicode hexadecimal value 00F5 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
õ uses the decimal Unicode value 245 to display the same character. A common method when a numeric reference is needed.
CSS Entity
\00F5 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: õ. Unicode U+00F5 sits in Latin-1 Supplement. Uppercase equivalent: U+00D5 (Õ, Õ). Do not confuse with ñ (n tilde), ã (a tilde), or plain o.
Use Cases
The lowercase o tilde (õ) is commonly used in:
Essential for correct spelling (não, põe, avô, limões). õ is a distinct letter in Portuguese and Brazilian Portuguese.
Used in Estonian orthography (sõna, õun, sõber). õ is a separate letter in the Estonian alphabet.
Menus, search, forms, and content for Portuguese and Estonian audiences. Correct õ improves readability and SEO.
Lessons, dictionaries, and educational apps teaching Portuguese or Estonian pronunciation and spelling.
Personal names, product names, and localized branding that contain the letter õ.
Using U+00F5 or õ with proper lang attributes ensures assistive technologies pronounce text correctly.
When generating markup, õ or õ guarantees correct Portuguese or Estonian letter output.
💡 Best Practices
Do
- Use U+00F5 (õ) for Portuguese and Estonian text
- Prefer
õover numeric codes when using entities—it is more readable - Set
lang="pt"orlang="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 plain o
Don’t
- Substitute plain
oor~owhen õ is required - Confuse õ with ñ (ñ) or ã (ã)
- Use õ in words that need ã (e.g. São uses a-tilde, not o-tilde)
- Put CSS escape
\00F5in HTML text nodes - Mix entity styles inconsistently within the same project
Key Takeaways
Four references render õ; named entity is õ
õ õ õFor CSS stylesheets, use the escape in the content property
\00F5Unicode U+00F5 — LATIN SMALL LETTER O WITH TILDE
Portuguese & Estonian; uppercase is Õ (Õ)
Previous: Lowercase O Stroke Acute (ǿ) Next: Lowercase O Tilde Macron
❓ Frequently Asked Questions
õ, hexadecimal õ, decimal õ, or \00F5 in CSS content. The named entity is the most readable. In UTF-8 you can also type õ directly.U+00F5 (LATIN SMALL LETTER O WITH TILDE). Latin-1 Supplement block. Hex 00F5, decimal 245. Used in Portuguese and Estonian. Uppercase form is U+00D5 (Õ, Õ).õ. You can also use õ, õ, or the CSS entity \00F5. In UTF-8 pages you can type õ directly.ñ). They are different letters—use the one that matches your language.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
