HTML Entity for Lowercase C Stroke (ȼ)

What You'll Learn
How to display the Latin small letter c with stroke (ȼ) in HTML using hexadecimal, decimal, and CSS escape methods. Used in phonetic transcription (e.g. the “ts” sound in indigenous Mexican languages), the Saanich (Coast Salish) orthography, Unifon, and in some scientific contexts. It is U+023C in the Latin Extended-B block.
Render it with ȼ, ȼ, or CSS escape \023C. There is no named HTML entity for this character, so numeric codes or CSS must be used.
⚡ Quick Reference — Lowercase C Stroke Entity
U+023CLatin Extended-B
ȼHexadecimal reference
ȼDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+023C
Hex code ȼ
HTML code ȼ
Named entity (none)
CSS code \023C
Meaning Latin small letter c with stroke
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the lowercase c stroke (ȼ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\023C";
}
</style>
</head>
<body>
<p>Symbol (hex): ȼ</p>
<p>Symbol (decimal): ȼ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase c stroke (ȼ) 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 stroke (ȼ) and how it differs from related characters:
🧠 How It Works
Hexadecimal Code
ȼ uses the Unicode hexadecimal value 023C to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ȼ uses the decimal Unicode value 572 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\023C 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+023C sits in Latin Extended-B. Do not confuse ȼ with plain c (U+0063) or ɔ (open o, U+0254). There is no named HTML entity.
Use Cases
The lowercase c stroke (ȼ) is commonly used in:
Represent the “ts” sound in phonetic notation, especially for indigenous languages of Mexico.
Correct spelling in Saanich (Coast Salish) orthography, which uses ȼ.
Support orthographies and language documentation that use the c with stroke.
Display characters in Unifon and other phonemic transcription systems.
In some French-speaking scientific content as a symbol for “cell.”
Language learning and dictionary resources with correct extended Latin characters.
Support proper rendering for orthographies that use the c with stroke.
💡 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
- Choose fonts that support Latin Extended-B—fewer fonts include ȼ
- Test rendering across browsers and devices
- Distinguish ȼ from plain
c, ɔ (open o), and ¢ (cent sign)
Don’t
- Assume a named entity exists—there is none for ȼ
- Substitute the cent sign (¢) when ȼ is required
- Put CSS escape
\023Cin 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
\023CUnicode U+023C — LATIN SMALL LETTER C WITH STROKE
Used in Saanich orthography, phonetic transcription, and indigenous languages
Previous: Lowercase C Reverse (ɔ) Next: Lowercase D
❓ Frequently Asked Questions
ȼ (hex), ȼ (decimal), or \023C in CSS content. There is no named HTML entity for this character, so numeric codes or CSS must be used.U+023C (LATIN SMALL LETTER C WITH STROKE). Latin Extended-B block. Hex 023C, decimal 572. Used in phonetic transcription and orthographies such as the Saanich alphabet.ȼ or ȼ) is used in HTML content. The CSS entity (\023C) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ȼ but in different contexts.ȼ or ȼ in HTML, or \023C in CSS. Choose a font with Latin Extended-B support for reliable rendering.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
