HTML Entity for Uppercase Oe (ɶ)

What You'll Learn
How to display the uppercase oe (ɶ) in HTML using hexadecimal, decimal, and CSS escape methods. In Unicode this is U+0276 (LATIN LETTER SMALL CAPITAL OE)—an IPA phonetic symbol used in phonetic notation. It sits in the IPA Extensions block.
Render it with ɶ, ɶ, or CSS escape \0276. There is no named HTML entity. In IPA it represents the open-mid front rounded vowel. Do not confuse ɶ with the French ligature Œ, lowercase œ, or Ö (umlaut).
⚡ Quick Reference — Uppercase Oe Entity
U+0276IPA Extensions
ɶHexadecimal reference
ɶDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0276
Hex code ɶ
HTML code ɶ
Named entity (none)
CSS code \0276
Meaning Latin letter small capital OE
IPA use Open-mid front rounded vowel
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the uppercase oe (ɶ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0276";
}
</style>
</head>
<body>
<p>Symbol (hex): ɶ</p>
<p>Symbol (decimal): ɶ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase oe (ɶ) renders correctly in modern browsers when UTF-8 is used and the font supports IPA Extensions:
👀 Live Preview
See the uppercase oe (ɶ) in phonetic and typographic contexts:
🧠 How It Works
Hexadecimal Code
ɶ uses the Unicode hexadecimal value 0276 to display the uppercase oe. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɶ uses the decimal Unicode value 630 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\0276 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ɶ. Unicode U+0276 sits in IPA Extensions. There is no named HTML entity. Do not confuse with French ligature Œ (U+0152), œ (U+0153), or Ö (umlaut).
Use Cases
The uppercase oe (ɶ) is commonly used in:
Phonetic transcriptions marking the open-mid front rounded vowel in the International Phonetic Alphabet.
Language documentation, phonology research, and academic content requiring precise IPA symbols.
Pronunciation guides and online dictionaries that display IPA vowel symbols.
Language learning platforms and phonetics courses teaching IPA vowel notation.
Scholarly papers, thesis documents, and linguistic journals with phonetic transcription.
Font specimens showcasing IPA Extensions support for phonetic symbols.
When building HTML from phonetic data, ɶ or ɶ guarantees correct output.
💡 Best Practices
Do
- Use U+0276 (ɶ) for IPA phonetic notation and linguistic content
- Serve pages as UTF-8; you can type ɶ directly in UTF-8 source
- Use numeric references (
ɶorɶ) when escaping is required - Choose fonts that support IPA Extensions (e.g. Doulos SIL, Charis SIL, Cambria)
- Distinguish ɶ from Œ (French ligature), œ, and Ö (umlaut)
Don’t
- Use ɶ for French words—use Œ/œ ligatures (
Œ,œ) instead - Substitute the digraph “oe” when ɶ is required in IPA notation
- Confuse ɶ with Ö (umlaut) or ö (lowercase umlaut)
- Expect a named HTML entity—none exists for ɶ
- Put CSS escape
\0276in HTML text nodes
Key Takeaways
Type ɶ directly, or use hex/decimal references
ɶ ɶFor CSS stylesheets, use the escape in the content property
\0276Unicode U+0276 — LATIN LETTER SMALL CAPITAL OE (IPA)
Open-mid front rounded vowel; not Œ/œ (French ligatures)
Previous: Uppercase O Umlaut (Ö) Next: Uppercase Oe Close Cut (Œ)
❓ Frequently Asked Questions
ɶ (hex), ɶ (decimal), or \0276 in CSS content. There is no named HTML entity for ɶ. In UTF-8 you can also type ɶ directly.U+0276 (LATIN LETTER SMALL CAPITAL OE). IPA Extensions block. Hex 0276, decimal 630. Used in IPA phonetic notation for the open-mid front rounded vowel.ɶ or ɶ, or the CSS entity \0276. In UTF-8 pages you can type ɶ directly.Œ). œ (U+0153) is the lowercase oe ligature (œ). They serve different purposes and are not interchangeable.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
