HTML Entity for Lowercase O Double Acute (ő)

What You'll Learn
How to display the lowercase o with double acute (ő) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0151 in the Latin Extended-A block. The double acute (˝) diacritic is used in Hungarian; ő represents a long front rounded vowel, distinct from ö (diaeresis) and ó (acute).
Render it with ő, ő, ő, or CSS escape \0151. The named entity ő is the standard HTML character reference for Hungarian ő.
⚡ Quick Reference — Lowercase O Double Acute Entity
U+0151Latin Extended-A
őHexadecimal reference
őDecimal reference
őMost readable option
Name Value
──────────── ──────────
Unicode U+0151
Hex code ő
HTML code ő
Named entity ő
CSS code \0151
Meaning Latin small letter o with double acute
Related U+0150 = Ő (Ő)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase o double acute (ő) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0151";
}
</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 double acute (ő) and the named entity ő are supported in all modern browsers:
👀 Live Preview
See the lowercase o double acute (ő) in Hungarian contexts:
🧠 How It Works
Hexadecimal Code
ő uses the Unicode hexadecimal value 0151 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ő uses the decimal Unicode value 337 to display the same character. A common method when a numeric reference is needed.
Named Entity
ő is the named entity for o double acute—readable in source HTML and essential for correct Hungarian spelling.
CSS Entity
\0151 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+0151 sits in Latin Extended-A. Uppercase equivalent: U+0150 (Ő, Ő). Do not confuse with ö (diaeresis) or ó (acute) in Hungarian.
Use Cases
The lowercase o double acute (ő) is commonly used in:
Essential for correct spelling (hős, fő, cső, szőr). The double acute is distinct from ö and ó in meaning and pronunciation.
Headwords, definitions, and pronunciation guides for Hungarian words containing ő.
Hungarian lessons, flashcards, and vocabulary content with correct ő spelling.
Hungarian localized websites, product names, place names, and user-generated content.
Articles, books, and formal documents requiring correct Hungarian typography.
Using the correct character (U+0151) with lang="hu" ensures assistive technologies pronounce Hungarian correctly.
Using \0151 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
lang="hu"on Hungarian content for correct pronunciation - Use
\0151in CSScontentwhen generating the symbol via pseudo-elements - Distinguish ő (double acute) from ö (diaeresis) and ó (acute)
Don’t
- Substitute ö or ó when ő is required in Hungarian text
- Confuse ő (double acute), ö (diaeresis), and ó (acute)
- Put CSS escape
\0151in HTML text nodes - Double-encode entity references in dynamically generated HTML
- Omit
lang="hu"attributes on Hungarian pages
Key Takeaways
The named entity is the standard form for Hungarian
őNumeric alternatives: hex and decimal
ő őUnicode U+0151 — LATIN SMALL LETTER O WITH DOUBLE ACUTE
Essential for Hungarian; uppercase is Ő (Ő)
Previous: Lowercase O Dot Above (ȯ) Next: Lowercase O Double Grave
❓ Frequently Asked Questions
ő (named), ő (hex), ő (decimal), or \0151 in CSS content. In UTF-8 you can also type ő directly.U+0151 (LATIN SMALL LETTER O WITH DOUBLE ACUTE). Latin Extended-A block. Hex 0151, decimal 337. Used in Hungarian. Uppercase form is U+0150 (Ő).ő. You can also use ő or ő, or the CSS entity \0151.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
