HTML Entity for Uppercase C Reverse (Ɔ)

What You'll Learn
How to display the uppercase C reverse (Ɔ) in HTML using hexadecimal, decimal, and CSS escape methods. Formally LATIN CAPITAL LETTER OPEN O, this character is also called reversed C and is used in linguistics, phonetic notation, and African language orthography. It is U+0186 in the Latin Extended-B block.
Render it with Ɔ, Ɔ, or CSS escape \0186. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase C Reverse Entity
U+0186Latin Extended-B
ƆHexadecimal reference
ƆDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0186
Hex code Ɔ
HTML code Ɔ
Named entity (none)
CSS code \0186
Meaning Latin capital letter open O (reversed C)
Related U+0254 = lowercase (ɔ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase C reverse (Ɔ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0186";
}
</style>
</head>
<body>
<p>Symbol (hex): Ɔ</p>
<p>Symbol (decimal): Ɔ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase C reverse (Ɔ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase C reverse (Ɔ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
Ɔ uses the Unicode hexadecimal value 0186 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ɔ uses the decimal Unicode value 390 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\0186 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+0186 sits in Latin Extended-B. Lowercase equivalent: U+0254 (ɔ). Do not confuse Ɔ with plain C (U+0043) or Ƈ (C hook). There is no named HTML entity.
Use Cases
The uppercase C reverse (Ɔ) is commonly used in:
Phonetic transcriptions and linguistic notation requiring the open-O / reversed-C character.
Extended Latin orthography in African scripts and languages that use Ɔ in their alphabet.
Websites requiring correct rendering of Latin Extended-B for African and specialized language content.
Books, articles, and editorial content with phonetic scripts or specialized terminology using Ɔ.
Extended Latin orthographic systems where the open-O (reversed C) variant is required for accuracy.
Correct encoding so specialized content is indexed and displayed consistently.
User input that may contain Ɔ; use UTF-8 encoding and numeric entities as needed.
💡 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
- Pick one style (hex or decimal) per project for consistency
- Use fonts that support Latin Extended-B (U+0180–U+024F)
- Distinguish Ɔ from plain
C(U+0043), Ƈ (C hook), and ℂ (double-struck)
Don’t
- Assume a named entity exists—there is none for Ɔ
- Substitute plain
Cwhen Ɔ is required for linguistic accuracy - Put CSS escape
\0186in HTML text nodes - Assume all fonts render Latin Extended-B 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
\0186Unicode U+0186 — LATIN CAPITAL LETTER OPEN O
Used in linguistics, phonetic notation, and African language orthography
Previous: Uppercase C Hook (Ƈ) Next: Uppercase C Stretched (ʗ)
❓ Frequently Asked Questions
Ɔ (hex), Ɔ (decimal), or \0186 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+0186 (LATIN CAPITAL LETTER OPEN O). Latin Extended-B block. Hex 0186, decimal 390. Also called reversed C; used in linguistics, phonetic notation, and African language orthography.Ɔ or Ɔ) is used in HTML content. The CSS entity (\0186) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ɔ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, phonetic symbols, and more.
8 people found this page helpful
