HTML Entity for Lowercase C Reverse / Open O (ɔ)

What You'll Learn
How to display the Latin small letter open o (ɔ), also called the lowercase c reverse, in HTML using hexadecimal, decimal, and CSS escape methods. In the International Phonetic Alphabet (IPA) it represents the open-mid back rounded vowel /ɔ/, and it is widely used in African language orthographies. It is U+0254 in the IPA Extensions block.
Render it with ɔ, ɔ, or CSS escape \0254. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase C Reverse / Open O
U+0254IPA Extensions
ɔHexadecimal reference
ɔDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0254
Hex code ɔ
HTML code ɔ
Named entity (none)
CSS code \0254
Official name Latin small letter open o
Also known as Lowercase c reverse
IPA usage Open-mid back rounded vowel
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the open o / c reverse (ɔ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0254";
}
</style>
</head>
<body>
<p>Symbol (hex): ɔ</p>
<p>Symbol (decimal): ɔ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The open o / c reverse (ɔ) renders correctly in modern browsers when UTF-8 is used and a font with IPA Extensions support is available:
👀 Live Preview
See the open o / c reverse (ɔ) and how it differs from related characters:
o (U+006F)🧠 How It Works
Hexadecimal Code
ɔ uses the Unicode hexadecimal value 0254 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ɔ uses the decimal Unicode value 596 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\0254 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+0254 sits in IPA Extensions. Typographically a turned “c”, it is officially the open o—not plain c (U+0063). There is no named HTML entity.
Use Cases
The open o / c reverse (ɔ) is commonly used in:
Represent the open-mid back rounded vowel /ɔ in International Phonetic Alphabet notation.
Correct spelling in languages that use the African reference alphabet and include ɔ.
Phonetic transcriptions and pronunciation keys in dictionaries and language resources.
Language courses, textbooks, and pronunciation apps with correct IPA symbols.
Showcase IPA Extensions coverage in font demos and type design.
Ensure correct IPA and orthographic symbols in linguistics papers and publications.
Support proper rendering for African and other languages that use the open o character.
💡 Best Practices
Do
- Use
ɔorɔin HTML (no named entity exists) - Serve pages as UTF-8; you can also type ɔ directly in UTF-8 source
- Use IPA-aware or Unicode-complete fonts for reliable glyph rendering
- Provide IPA context when using phonetic symbols
- Distinguish ɔ (open o) from plain
cand fromo
Don’t
- Assume a named entity exists—there is none for ɔ
- Substitute plain
corowhen ɔ is required - Put CSS escape
\0254in HTML text nodes - Assume all fonts render IPA Extensions glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Three references render ɔ (no named entity)
ɔ ɔFor CSS stylesheets, use the escape in the content property
\0254Unicode U+0254 — LATIN SMALL LETTER OPEN O
IPA /ɔ/ vowel; also called lowercase c reverse
Previous: Combining Latin Small Letter C (ͨ) Next: Lowercase C Stroke
❓ Frequently Asked Questions
ɔ (hex), ɔ (decimal), or \0254 in CSS content. There is no named HTML entity for this character, so numeric codes or CSS must be used.U+0254 (LATIN SMALL LETTER OPEN O). IPA Extensions block. Hex 0254, decimal 596. Represents the open-mid back rounded vowel in IPA and is used in many African language orthographies.ɔ or ɔ) is used in HTML content. The CSS entity (\0254) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ɔ but in different contexts.ɔ or ɔ in HTML, or \0254 in CSS. This is standard for IPA Extensions characters.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
