HTML Entity for Lowercase C Curl (ɕ)

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

What You'll Learn

How to display the lowercase c with curl (ɕ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is the Latin small letter c with curl, used in the International Phonetic Alphabet (IPA) for the voiceless alveolo-palatal fricative—often in Mandarin Chinese phonetic transcription (pinyin “x” as in xi). It is U+0255 in the IPA Extensions block.

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

⚡ Quick Reference — Lowercase C Curl Entity

Unicode U+0255

IPA Extensions

Hex Code ɕ

Hexadecimal reference

HTML Code ɕ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0255
Hex code       ɕ
HTML code      ɕ
Named entity   (none)
CSS code       \0255
Meaning        Latin small letter c with curl
IPA usage      Voiceless alveolo-palatal fricative
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase c curl (ɕ) using hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The lowercase c curl (ɕ) renders correctly in modern browsers when UTF-8 is used and a font with IPA Extensions support is available:

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

👀 Live Preview

See the lowercase c curl (ɕ) and how it differs from related characters:

Large glyphɕ
IPA meaningVoiceless alveolo-palatal fricative
Mandarin examplePinyin “x” as in xi (ɕi)
Not the same asc (plain c) or ĉ (c circumflex)
Numeric refs&#x0255; &#597; \0255

🧠 How It Works

1

Hexadecimal Code

&#x0255; uses the Unicode hexadecimal value 0255 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#597; uses the decimal Unicode value 597 to display the same character. A common method for IPA Extensions characters.

HTML markup
3

CSS Entity

\0255 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+0255 sits in IPA Extensions. Do not confuse ɕ with plain c (U+0063) or ĉ (c circumflex, U+0109). There is no named HTML entity.

Use Cases

The lowercase c curl (ɕ) is commonly used in:

🔤 IPA transcription

Display the voiceless alveolo-palatal fricative in International Phonetic Alphabet notation.

📖 Linguistic content

Represent ɕ in linguistics articles, phonetic notation, and language documentation.

🇨🇳 Mandarin phonetics

Transcribe Mandarin sounds (pinyin “x” as in xi) using standard IPA symbols.

📚 Academic papers

Use in phonetics and phonology research on Chinese and other languages with this sound.

🎓 Language learning

Show correct IPA symbols in pronunciation guides, dictionaries, and language courses.

📋 Character reference

Document IPA Extensions character codes for developers and linguists.

🌐 Internationalization

Support proper rendering of phonetic and linguistic content in multilingual sites.

💡 Best Practices

Do

  • Use &#597; or &#x0255; in HTML (no named entity exists)
  • Serve pages as UTF-8; you can also type ɕ directly in UTF-8 source
  • Use IPA-aware or Unicode-complete fonts for reliable glyph rendering
  • Provide context (e.g. IPA notation) when using phonetic symbols
  • Distinguish ɕ from plain c and from ĉ (c circumflex)

Don’t

  • Assume a named entity exists—there is none for ɕ
  • Substitute plain c when ɕ is required for phonetic accuracy
  • Put CSS escape \0255 in HTML text nodes
  • Assume all fonts render IPA Extensions glyphs identically
  • Mix entity styles randomly in one file

Key Takeaways

1

Three references render ɕ (no named entity)

&#x0255; &#597;
2

For CSS stylesheets, use the escape in the content property

\0255
3

Unicode U+0255 — LATIN SMALL LETTER C WITH CURL

4

IPA voiceless alveolo-palatal fricative; common in Mandarin transcription

❓ Frequently Asked Questions

Use &#x0255; (hex), &#597; (decimal), or \0255 in CSS content. There is no named HTML entity for this character, so numeric codes or CSS must be used.
U+0255 (LATIN SMALL LETTER C WITH CURL). IPA Extensions block. Hex 0255, decimal 597. Used in IPA for the voiceless alveolo-palatal fricative, often in Mandarin Chinese transcription.
For IPA phonetic transcription, linguistic and phonetic content, Mandarin Chinese phonetics documentation, language learning and pronunciation guides, academic papers on phonetics, and any text requiring the Latin small letter c with curl.
HTML code (&#597; or &#x0255;) is used in HTML content. The CSS entity (\0255) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ɕ but in different contexts.
No. There is no named HTML entity for ɕ. Use &#597; or &#x0255; in HTML, or \0255 in CSS. This is standard for IPA and extended Latin characters.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, 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