HTML Entity for Uppercase O Double Acute (Ő)

What You'll Learn
How to display the uppercase O with double acute (Ő) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+0150 in the Latin Extended-A block and is essential for correct Hungarian spelling.
Render it with Ő, Ő, Ő, or CSS escape \0150. The named entity Ő is often the most readable option in HTML source. Do not confuse Ő with Ó (acute) or Ö (diaeresis)—each is a distinct vowel in Hungarian.
⚡ Quick Reference — Uppercase O Double Acute Entity
U+0150Latin Extended-A
ŐHexadecimal reference
ŐDecimal reference
ŐMost readable option
Name Value
──────────── ──────────
Unicode U+0150
Hex code Ő
HTML code Ő
Named entity Ő
CSS code \0150
Meaning Latin capital letter O with double acute
Related U+0151 = ő (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase 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: "\0150";
}
</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 uppercase O double acute (Ő) and the named entity Ő are supported in all modern browsers:
👀 Live Preview
See the uppercase O double acute (Ő) in Hungarian contexts:
🧠 How It Works
Named Entity
Ő is the standard named entity for Ő—readable in source HTML and essential for correct Hungarian spelling.
Hexadecimal Code
Ő uses the Unicode hexadecimal value 150 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ő uses the decimal Unicode value 336 to display the same character. A common method when a numeric reference is needed.
CSS Entity
\0150 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+0150 sits in Latin Extended-A. Lowercase equivalent: U+0151 (ő, ő). Do not confuse with Ö (diaeresis) or Ó (acute) in Hungarian.
Use Cases
The uppercase O double acute (Ő) is commonly used in:
Essential for capitalized words and proper names like Őr and Őz. The double acute is distinct from Ö and Ó in meaning and pronunciation.
Headwords, definitions, and pronunciation guides for Hungarian words beginning with Ő.
Hungarian lessons, flashcards, and vocabulary content with correct Ő spelling at sentence start.
Hungarian localized websites, product names, place names, and user-generated content.
Personal names, surnames, and geographic names that require correct Ő at the start of a word or sentence.
Correct rendering so users can find Hungarian content with proper accented spelling in search results.
💡 Best Practices
Do
- Use
Őin HTML when possible for readability - Serve pages as UTF-8; you can also type Ő directly in UTF-8 source
- Set
lang="hu"on Hungarian content for correct pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish Ő (double acute) from Ö (diaeresis) and Ó (acute)
Don’t
- Substitute plain
O, Ó, or Ö when Ő is required for correct Hungarian spelling - Confuse Ő (double acute) with Ö (diaeresis) or Ó (acute)
- Put CSS escape
\0150in HTML text nodes - Assume Ő and ő are interchangeable—case matters in Hungarian
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render Ő; named entity is most readable
Ő Ő ŐFor CSS stylesheets, use the escape in the content property
\0150Unicode U+0150 — LATIN CAPITAL LETTER O WITH DOUBLE ACUTE
Lowercase pair is U+0151 (ő, ő)
Previous: Uppercase O Dot Above (Ȯ) Next: Uppercase O Double Grave
❓ Frequently Asked Questions
Ő (named), Ő (hex), Ő (decimal), or \0150 in CSS content. The named entity Ő is the most readable for HTML content.U+0150 (LATIN CAPITAL LETTER O WITH DOUBLE ACUTE). Latin Extended-A block. Hex 150, decimal 336. Essential for correct Hungarian spelling.Ő is part of the HTML5 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.
8 people found this page helpful
