HTML Entity for Lowercase C Hook (ƈ)

What You'll Learn
How to display the lowercase c with hook (ƈ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is the Latin small letter c with hook, used in African languages such as Serer and in phonetic notation. It is U+0188 in the Latin Extended-B block.
Render it with ƈ, ƈ, or CSS escape \0188. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase C Hook Entity
U+0188Latin Extended-B
ƈHexadecimal reference
ƈDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+0188
Hex code ƈ
HTML code ƈ
Named entity (none)
CSS code \0188
Meaning Latin small letter c with hook
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase c hook (ƈ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0188";
}
</style>
</head>
<body>
<p>Symbol (hex): ƈ</p>
<p>Symbol (decimal): ƈ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase c hook (ƈ) renders correctly in modern browsers when UTF-8 is used and a font with Latin Extended-B support is available:
👀 Live Preview
See the lowercase c hook (ƈ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
ƈ uses the Unicode hexadecimal value 0188 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƈ uses the decimal Unicode value 392 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\0188 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+0188 sits in Latin Extended-B. Do not confuse ƈ with plain c (U+0063) or ċ (c dot above, U+010B). There is no named HTML entity.
Use Cases
The lowercase c hook (ƈ) is commonly used in:
Correct spelling in Serer and other African languages that use the c with hook.
Represent phonetic symbols in linguistics articles and language documentation.
Serer and other language courses, dictionaries, and pronunciation guides.
Showcase Latin Extended-B coverage in font demos and type design.
Ensure proper typography in papers and publications with African language script.
Display headwords and definitions for languages that use this character.
Support proper rendering for Serer and other languages that use the c with hook.
💡 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 fonts that support Latin Extended-B characters
- Set appropriate
langattributes on African language content - Distinguish ƈ from plain
cand from ċ (c dot above)
Don’t
- Assume a named entity exists—there is none for ƈ
- Substitute plain
cwhen ƈ is required for correct spelling - Put CSS escape
\0188in 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
\0188Unicode U+0188 — LATIN SMALL LETTER C WITH HOOK
Used in Serer and other African languages; Latin Extended-B block
Previous: Lowercase C Dot Above (ċ) Next: Lowercase C Latin
❓ Frequently Asked Questions
ƈ (hex), ƈ (decimal), or \0188 in CSS content. There is no named HTML entity for this character, so numeric codes or CSS must be used.U+0188 (LATIN SMALL LETTER C WITH HOOK). Latin Extended-B block. Hex 0188, decimal 392. Used in African languages such as Serer and in phonetic notation.ƈ or ƈ) is used in HTML content. The CSS entity (\0188) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ƈ but in different contexts.ƈ or ƈ in HTML, or \0188 in CSS. This is standard for Latin Extended-B characters.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
