HTML Entity for Uppercase Oe Close Cut (Œ)

What You'll Learn
How to display the Latin capital ligature oe (Œ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This is the uppercase form of the French oe ligature—used in capitalized words such as ŒUVRE and CŒUR, and in classical all-caps spellings.
This character is U+0152 (LATIN CAPITAL LIGATURE OE) in the Latin Extended-A block (U+0100–U+017F). Render it with Œ, Œ, Œ, or CSS escape \0152. The lowercase form is œ (U+0153, œ). Do not confuse Œ with IPA symbol ɶ or the digraph “OE.”
⚡ Quick Reference — Uppercase Oe Close Cut Entity
U+0152Latin Extended-A
ŒHexadecimal reference
ŒDecimal reference
ŒMost readable option
Name Value
──────────── ──────────
Unicode U+0152
Hex code Œ
HTML code Œ
Named entity Œ
CSS code \0152
Meaning Latin capital ligature oe
Lowercase U+0153 (œ, œ)
Related U+00C6 = ae ligature (Æ, Æ)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing Œ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\0152";
}
</style>
</head>
<body>
<p>Symbol (named): Œ</p>
<p>Symbol (hex): Œ</p>
<p>Symbol (decimal): Œ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase oe ligature (Œ) and the named entity Œ are supported in all modern browsers:
👀 Live Preview
See the uppercase oe ligature (Œ) in French and classical contexts:
🧠 How It Works
Named Entity
Œ is the HTML named entity for U+0152—readable in source HTML and part of the HTML5 entity set.
Hexadecimal Code
Œ uses the Unicode hexadecimal value 0152 to display the uppercase oe ligature. The x prefix indicates hexadecimal format.
Decimal HTML Code
Œ uses the decimal Unicode value 338 to display the same character.
CSS Entity
\0152 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+0152 sits in Latin Extended-A. Œ is a single ligature—do not confuse with two separate letters OE, lowercase œ (U+0153), or IPA ɶ (U+0276).
Use Cases
The uppercase oe ligature (Œ) is commonly used in:
Capitalized words and titles where Œ is required (e.g. ŒUVRE, CŒUR, ŒUF).
Vocabulary, pronunciation guides, and dictionary entries showing uppercase French forms.
Headings, menus, and UI labels for French-speaking audiences.
All-caps spellings such as FŒTUS and HOMŒOPATHY for style or historical accuracy.
Medical, legal, and scholarly words in capitalized or title-case form.
Correct rendering so users can find French content; Œ is distinct from OE.
Name fields, addresses, and user input that may contain French characters in uppercase.
💡 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="fr"on French content for correct hyphenation and pronunciation - Distinguish Œ (ligature) from two letters
OE, œ (lowercase), and ɶ (IPA) - Use fonts that support Latin Extended-A characters
Don’t
- Substitute
OEwhen Œ is required for correct French spelling - Confuse Œ (
Œ) with œ (œ, lowercase) - Use Œ when IPA symbol ɶ is intended—those are different characters
- Put CSS escape
\0152in HTML text nodes - Mix entity styles randomly in one file
Key Takeaways
Four references render Œ; named entity is most readable
Œ Œ ŒFor CSS stylesheets, use the escape in the content property
\0152Unicode U+0152 — LATIN CAPITAL LIGATURE OE
Latin Extended-A block; lowercase is U+0153 (œ, œ)
Previous: Uppercase Oe (ɶ) Next: Uppercase Oi
❓ Frequently Asked Questions
Œ (named), Œ (hex), Œ (decimal), or \0152 in CSS content. All four methods render Œ correctly.U+0152 (LATIN CAPITAL LIGATURE OE). Latin Extended-A block. Hex 0152, decimal 338. Named entity: Œ. Lowercase form: U+0153 (œ, œ).U+0152) is one Unicode ligature character. Typing OE is two separate code points (U+004F + U+0045). In French, the ligature is often required for correct spelling and typography.Œ). œ (U+0153) is the lowercase oe ligature (œ). ɶ (U+0276) is an IPA phonetic symbol—not the French ligature. Use the character that matches your text.Œ is the named HTML entity for U+0152 and is the standard readable reference in HTML5 markup.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, ligatures, and more.
8 people found this page helpful
