HTML Entity for Lowercase O Acute (ó)

What You'll Learn
How to display the lowercase o with acute accent (ó) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00F3 in the Latin-1 Supplement block. It is used in Spanish, Portuguese, Irish (Gaeilge), Hungarian, Czech, Slovak, and many other languages to indicate stress or a specific vowel quality.
Render it with ó, ó, ó, or CSS escape \00F3. The named entity ó is one of the most common HTML character references for accented letters.
⚡ Quick Reference — Lowercase O Acute Entity
U+00F3Latin-1 Supplement
óHexadecimal reference
óDecimal reference
óMost readable option
Name Value
──────────── ──────────
Unicode U+00F3
Hex code ó
HTML code ó
Named entity ó
CSS code \00F3
Meaning Latin small letter o with acute
Related U+00D3 = Ó (Ó)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase o acute (ó) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00F3";
}
</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 acute (ó) and the named entity ó are supported in all modern browsers:
👀 Live Preview
See the lowercase o acute (ó) in language and content contexts:
🧠 How It Works
Hexadecimal Code
ó uses the Unicode hexadecimal value 00F3 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ó uses the decimal Unicode value 243 to display the same character. A common method when a numeric reference is needed.
Named Entity
ó is the named entity for o acute—readable in source HTML and widely used for Spanish and Portuguese content.
CSS Entity
\00F3 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+00F3 sits in Latin-1 Supplement. Uppercase equivalent: U+00D3 (Ó, Ó). Do not confuse with ò (grave) or ô (circumflex).
Use Cases
The lowercase o acute (ó) is commonly used in:
Essential for correct spelling (español, avión, coração). Use the entity or UTF-8 for proper display and SEO.
Used in Irish (Gaeilge) and other Celtic orthographies. Correct character (U+00F3) supports proper spelling.
Hungarian, Czech, Slovak, and Polish use ó. Correct characters improve readability for those languages.
When building HTML from CMS content or translation data, using ó or ó guarantees correct output.
Tutorials on HTML entities, Unicode, or language learning showing ó and numeric codes for ó.
Using the correct character (U+00F3) with proper lang attributes ensures assistive technologies pronounce content correctly.
Using \00F3 in the CSS content property to insert ó via pseudo-elements.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type ó directly in UTF-8 source
- Use
ófor readable HTML when a named form is preferred - Set
langattributes (e.g.lang="es",lang="pt") on language-specific content - Use
\00F3in CSScontentwhen generating the symbol via pseudo-elements - Distinguish ó (acute) from ò (grave) and ô (circumflex)
Don’t
- Substitute plain
owhen ó is required in Spanish or Portuguese text - Confuse ó (acute) with ò (grave), ô (circumflex), or plain o
- Put CSS escape
\00F3in HTML text nodes - Double-encode entity references in dynamically generated HTML
- Omit
langattributes on pages with Spanish or Portuguese content
Key Takeaways
The named entity is the most familiar form
óNumeric alternatives: hex and decimal
ó óUnicode U+00F3 — LATIN SMALL LETTER O WITH ACUTE
Essential for Spanish and Portuguese; uppercase is Ó (Ó)
Previous: Lowercase O Above Dot Macron (ȱ) Next: Lowercase O Barred
❓ Frequently Asked Questions
ó (named), ó (hex), ó (decimal), or \00F3 in CSS content. In UTF-8 you can also type ó directly.U+00F3 (LATIN SMALL LETTER O WITH ACUTE). Latin-1 Supplement block. Hex 00F3, decimal 243. Used in Spanish, Portuguese, Irish, and other languages. Uppercase form is U+00D3 (Ó).ó. You can also use ó or ó, or the CSS entity \00F3.ó, ó, or ó) is used in HTML content; CSS entity \00F3 is used in stylesheets in the content property of pseudo-elements. Both produce ó.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
