HTML Entity for Uppercase O Circumflex (Ô)

What You'll Learn
How to display the uppercase O with circumflex (Ô) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00D4 in the Latin-1 Supplement block and is essential for French, Portuguese, Vietnamese, and other languages.
Render it with Ô, Ô, Ô, or CSS escape \D4. The named entity Ô is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase O Circumflex Entity
U+00D4Latin-1 Supplement
ÔHexadecimal reference
ÔDecimal reference
ÔMost readable option
Name Value
──────────── ──────────
Unicode U+00D4
Hex code Ô
HTML code Ô
Named entity Ô
CSS code \D4
Meaning Latin capital letter O with circumflex
Related U+00F4 = ô (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase O circumflex (Ô) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\D4";
}
</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 circumflex (Ô) and the named entity Ô are universally supported in modern browsers:
👀 Live Preview
See the uppercase O circumflex (Ô) in language and content contexts:
🧠 How It Works
Named Entity
Ô is the standard named entity for Ô—readable in source HTML and part of the HTML Latin-1 entity set.
Hexadecimal Code
Ô uses the Unicode hexadecimal value D4 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ô uses the decimal Unicode value 212 to display the same character. A common method for Latin-1 characters.
CSS Entity
\D4 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+00D4 sits in Latin-1 Supplement. Lowercase equivalent: U+00F4 (ô). Do not confuse with Ó (acute), Ò (grave), or Ö (umlaut).
Use Cases
The uppercase O circumflex (Ô) is commonly used in:
Essential in capitalized words and names like Hôtel, Côte, and Tôt where the circumflex marks a historical omitted letter.
Used in words like Português and Avô where Ô represents the closed o sound at sentence start or in proper nouns.
Ô is a distinct vowel in the Vietnamese alphabet, as in Công and Trôi when capitalized.
Websites, apps, and localization for French-, Portuguese-, and Vietnamese-speaking audiences.
Courses, dictionaries, and educational content teaching circumflex-accented O in multiple languages.
Place names, brand names, and personal names that require correct accented spelling with Ô.
Correct rendering so users can find 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
langattributes (e.g.lang="fr") for correct pronunciation - Use fonts that support Latin-1 Supplement characters
- Distinguish Ô (circumflex) from Ó (acute), Ò (grave), and Ö (umlaut)
Don’t
- Substitute plain
Owhen Ô is required for correct spelling - Confuse Ô (circumflex) with Ó (acute) or Ö (umlaut)
- Put CSS escape
\D4in HTML text nodes - Use
\00D4in CSS when\D4is sufficient and correct - 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
\D4Unicode U+00D4 — LATIN CAPITAL LETTER O WITH CIRCUMFLEX
Lowercase pair is U+00F4 (ô, ô)
Previous: Uppercase O Center Dot (ʘ) Next: Uppercase O Diaeresis Macron
❓ Frequently Asked Questions
Ô (named), Ô (hex), Ô (decimal), or \D4 in CSS content. The named entity Ô is the most readable for HTML content.U+00D4 (LATIN CAPITAL LETTER O WITH CIRCUMFLEX). Latin-1 Supplement block. Hex D4, decimal 212. Used in French, Portuguese, Vietnamese, and other languages.Ô) is more readable and easier to remember. Numeric codes (Ô or Ô) work in all contexts and are useful when escaping is required. Both produce Ô.Ô is part of the HTML5 Latin-1 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
