HTML Entity for Oe Ligature (œ)

What You'll Learn
How to display the Latin small ligature oe (œ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character appears in French words such as cœur, œuf, and sœur, and in classical English spellings like fœtus and homœopathy.
This character is U+0153 (LATIN SMALL LIGATURE OE) in the Latin Extended-A block (U+0100–U+017F). Render it with œ, œ, œ, or CSS escape \0153. The uppercase form is Œ (U+0152, Œ)—a distinct character, not just capitalized œ.
⚡ Quick Reference — Oe Ligature
U+0153Latin Extended-A
œHexadecimal reference
œDecimal reference
œMost readable option
Name Value
──────────── ──────────
Unicode U+0153
Hex code œ
HTML code œ
Named entity œ
CSS code \0153
Meaning Latin small ligature oe
Uppercase U+0152 (Œ, Œ)
Related U+00E6 = ae ligature (æ, æ)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing œ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\0153";
}
</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 oe ligature (œ) and the named entity œ are supported in all modern browsers:
👀 Live Preview
See the oe ligature (œ) in French and classical contexts:
oe (U+006F U+0065) or uppercase Œ🧠 How It Works
Named Entity
œ is the HTML named entity for U+0153—readable in source HTML and part of the HTML5 entity set.
Hexadecimal Code
œ uses the Unicode hexadecimal value 0153 to display the oe ligature. The x prefix indicates hexadecimal format.
Decimal HTML Code
œ uses the decimal Unicode value 339 to display the same character.
CSS Entity
\0153 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+0153 sits in Latin Extended-A. œ is a single ligature—do not confuse with two separate letters oe or with uppercase Œ (U+0152).
Use Cases
The oe ligature (œ) is commonly used in:
Correct spelling where œ is required (e.g. cœur, œuf, sœur).
Vocabulary, pronunciation guides, and dictionary entries for French learners.
Websites and apps targeting French-speaking audiences.
Traditional spellings such as fœtus and homœopathy for style or accuracy.
Medical, legal, and scholarly words that retain the oe ligature.
Correct rendering so users can find French content; œ is distinct from oe.
Name fields, addresses, and user input that may contain French characters.
💡 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
oeand from Œ (uppercase) - Use fonts that support Latin Extended-A characters
Don’t
- Substitute
oewhen œ is required for correct French spelling - Confuse œ (
œ) with Œ (Œ, uppercase) - Use padded Unicode notation like U+00153—the correct value is
U+0153 - Put CSS escape
\0153in 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
\0153Unicode U+0153 — LATIN SMALL LIGATURE OE
Latin Extended-A block (U+0100–U+017F); uppercase is U+0152 (Œ)
Previous: Numero Sign (№) Next: Combining Ogonek (̨)
❓ Frequently Asked Questions
œ (named), œ (hex), œ (decimal), or \0153 in CSS content. All four methods render œ correctly.U+0153 (LATIN SMALL LIGATURE OE). Latin Extended-A block. Hex 0153, decimal 339. Named entity: œ. Uppercase form: U+0152 (Œ, Œ).U+0153) is one Unicode ligature character. Typing oe is two separate code points (U+006F + U+0065). In French, the ligature is often required for correct spelling and typography.œ, œ, or œ) go directly in markup. The CSS escape \0153 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.œ is the named HTML entity for U+0153 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
