HTML Entity for Uppercase C Stroke (Ȼ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+023B

What You'll Learn

How to display the uppercase C with stroke (Ȼ) in HTML using hexadecimal, decimal, and CSS escape methods. Formally LATIN CAPITAL LETTER C WITH STROKE, this character is used in linguistics, phonetic notation, Saanich (Coast Salish) orthography, and academic content. It is U+023B in the Latin Extended-B block.

Render it with Ȼ, Ȼ, or CSS escape \023B. There is no named HTML entity for this character, so numeric codes or CSS must be used.

⚡ Quick Reference — Uppercase C Stroke Entity

Unicode U+023B

Latin Extended-B

Hex Code Ȼ

Hexadecimal reference

HTML Code Ȼ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+023B
Hex code       Ȼ
HTML code      Ȼ
Named entity   (none)
CSS code       \023B
Meaning        Latin capital letter C with stroke
Related        U+023C = lowercase (ȼ)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase C stroke (Ȼ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\023B";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x023B;</p>
<p>Symbol (decimal): &#571;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase C stroke (Ȼ) renders correctly in modern browsers when UTF-8 is used:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase C stroke (Ȼ) and how it differs from related characters:

Large glyphȻ
Character typeLatin capital letter C with stroke
Case pairȻ (U+023B) / ȼ (U+023C)
Not the same asC (U+0043), ʗ (stretched C), or Ɔ (reversed C)
Numeric refs&#x023B; &#571; \023B

🧠 How It Works

1

Hexadecimal Code

&#x023B; uses the Unicode hexadecimal value 023B to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#571; uses the decimal Unicode value 571 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

\023B is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: Ȼ. Unicode U+023B sits in Latin Extended-B. Lowercase equivalent: U+023C (ȼ). Do not confuse Ȼ with plain C (U+0043) or ʗ (stretched C). There is no named HTML entity.

Use Cases

The uppercase C stroke (Ȼ) is commonly used in:

🔤 Linguistics

Phonetic transcriptions and linguistic notation requiring the C-with-stroke character.

🌎 Saanich orthography

Coast Salish (Saanich) alphabet and indigenous language content that uses Ȼ in orthographic text.

🌐 Internationalization

Websites requiring correct rendering of Latin Extended-B for linguistic and specialized language content.

📄 Publishing

Books, articles, and editorial content with phonetic scripts or specialized terminology using Ȼ.

📖 Dictionaries

Online dictionaries and lexicographic content that include phonetic symbols such as Ȼ.

🔍 Search & SEO

Correct encoding so specialized linguistic content is indexed and displayed consistently.

🎓 Academic research

Linguistic research papers, academic publications, and scholarly content using Ȼ.

💡 Best Practices

Do

  • Use &#571; or &#x023B; 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), ʗ (stretched C), and Ɔ (reversed C)

Don’t

  • Assume a named entity exists—there is none for Ȼ
  • Substitute plain C when Ȼ is required for orthographic accuracy
  • Put CSS escape \023B in HTML text nodes
  • Assume all fonts render Latin Extended-B glyphs identically
  • Mix entity styles randomly in one file

Key Takeaways

1

Three references render Ȼ (no named entity)

&#x023B; &#571;
2

For CSS stylesheets, use the escape in the content property

\023B
3

Unicode U+023B — LATIN CAPITAL LETTER C WITH STROKE

4

Used in linguistics, phonetic notation, and Saanich orthography

❓ Frequently Asked Questions

Use &#x023B; (hex), &#571; (decimal), or \023B in CSS content. There is no named HTML entity; use numeric codes or CSS.
U+023B (LATIN CAPITAL LETTER C WITH STROKE). Latin Extended-B block. Hex 023B, decimal 571. Used in linguistics, phonetic notation, and Saanich orthography.
In linguistics documentation, phonetic notation, Saanich orthography, dictionary entries, academic texts, and any content requiring the C-with-stroke character.
HTML code (&#571; or &#x023B;) is used in HTML content. The CSS entity (\023B) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ȼ but in different contexts.
Named HTML entities are mainly for ASCII, Latin-1, and common symbols. Latin Extended-B characters like Ȼ use numeric codes (hex or decimal) because they belong to specialized Unicode blocks. This is standard for extended Latin characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, phonetic symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful