HTML Entity for Uppercase C Hook (Ƈ)

What You'll Learn
How to display the uppercase C with hook (Ƈ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is the Latin capital letter C with hook, used in linguistics, phonetic notation, and African language orthography such as Serer. It is U+0187 in the Latin Extended-B block.
Render it with Ƈ, Ƈ, or CSS escape \0187. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Uppercase C Hook Entity
U+0187Latin Extended-B
ƇHexadecimal reference
ƇDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0187
Hex code Ƈ
HTML code Ƈ
Named entity (none)
CSS code \0187
Meaning Latin capital letter C with hook
Related U+0188 = lowercase (ƈ)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase C hook (Ƈ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0187";
}
</style>
</head>
<body>
<p>Symbol (hex): Ƈ</p>
<p>Symbol (decimal): Ƈ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase C hook (Ƈ) renders correctly in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase C hook (Ƈ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
Ƈ uses the Unicode hexadecimal value 0187 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ƈ uses the decimal Unicode value 391 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\0187 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+0187 sits in Latin Extended-B. Lowercase equivalent: U+0188 (ƈ). Do not confuse Ƈ with plain C (U+0043). There is no named HTML entity.
Use Cases
The uppercase C hook (Ƈ) is commonly used in:
Phonetic transcriptions and linguistic notation requiring the C-with-hook character.
Extended Latin orthography in languages such as Serer and other African scripts using Ƈ.
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 hooked 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), ℂ (double-struck), and Ċ (C dot above)
Don’t
- Assume a named entity exists—there is none for Ƈ
- Substitute plain
Cwhen Ƈ is required for linguistic accuracy - Put CSS escape
\0187in 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
\0187Unicode U+0187 — LATIN CAPITAL LETTER C WITH HOOK
Used in linguistics, phonetic notation, and African language orthography
Previous: Uppercase C Double Struck (ℂ) Next: Uppercase C Reverse (Ɔ)
❓ Frequently Asked Questions
Ƈ (hex), Ƈ (decimal), or \0187 in CSS content. There is no named HTML entity; use numeric codes or CSS.U+0187 (LATIN CAPITAL LETTER C WITH HOOK). Latin Extended-B block. Hex 0187, decimal 391. Used in linguistics, phonetic notation, and African language orthography.Ƈ or Ƈ) is used in HTML content. The CSS entity (\0187) 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
