HTML Entity for Lowercase C Caron (č)

What You'll Learn
How to display the lowercase c with caron (č) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Czech, Slovak, and other Slavic languages that use the Latin script with háček, it appears in words such as český, čeština, and čo. It is U+010D in the Latin Extended-A block.
Render it with č, č, č, or CSS escape \010D. The named entity č is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase C Caron Entity
U+010DLatin Extended-A
čHexadecimal reference
čDecimal reference
čMost readable option
Name Value
──────────── ──────────
Unicode U+010D
Hex code č
HTML code č
Named entity č
CSS code \010D
Meaning Latin small letter c with caron
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase c caron (č) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\010D";
}
</style>
</head>
<body>
<p>Symbol (hex): č</p>
<p>Symbol (decimal): č</p>
<p>Symbol (named): č</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase c caron (č) and the named entity č are supported in all modern browsers:
👀 Live Preview
See the lowercase c caron (č) in Czech, Slovak, and multilingual contexts:
c (U+0063) or ć (c acute)🧠 How It Works
Hexadecimal Code
č uses the Unicode hexadecimal value 010D to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
č uses the decimal Unicode value 269 to display the same character. One of the most commonly used methods in HTML.
Named Entity
č is the standard named entity for č—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\010D is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: č. Unicode U+010D sits in Latin Extended-A. Do not confuse č with plain c (U+0063) or ć (c acute, U+0107).
Use Cases
The lowercase c caron (č) is commonly used in:
Correct spelling in Czech text (e.g. český, čeština, and proper nouns).
Support correct orthography in Slovak (e.g. čo, človek, čakáť).
Support Czech, Slovak, and other Slavic languages that use the Latin script with caron.
Pronunciation guides, dictionaries, and Slavic language courses with correct characters.
Render personal names, place names (e.g. České Budějovice), and brand names that contain č correctly.
Ensure proper typography in papers, books, and publications with Czech, Slovak, or similar scripts.
Support proper rendering for international audiences using Latin Extended-A characters.
💡 Best Practices
Do
- Use
čin HTML when possible for readability - Serve pages as UTF-8; you can also type č directly in UTF-8 source
- Set
lang="cs"orlang="sk"on Czech or Slovak content - Use fonts that support Latin Extended-A characters
- Distinguish č (caron) from plain
c(U+0063) and ć (acute)
Don’t
- Substitute plain
cwhen č is required for correct Czech or Slovak spelling - Confuse č (caron) with ć (acute) or other accented c variants
- Put CSS escape
\010Din HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Four references render č; named entity is most readable
č č čFor CSS stylesheets, use the escape in the content property
\010DUnicode U+010D — LATIN SMALL LETTER C WITH CARON
Essential for Czech, Slovak, and Slavic multilingual web content
Previous: Lowercase C Acute (ć) Next: Lowercase C Cedilla (ç)
❓ Frequently Asked Questions
č (named), č (hex), č (decimal), or \010D in CSS content. All four methods render č correctly.U+010D (LATIN SMALL LETTER C WITH CARON). Latin Extended-A block. Hex 010D, decimal 269. Used in Czech, Slovak, and other Slavic languages.č or č) or the named entity č is used in HTML content. The CSS entity (\010D) is used in CSS, e.g. in the content property of pseudo-elements. Both produce č but in different contexts.č. It is defined in HTML5 and supported by modern browsers. Numeric codes (č or č) are useful when generating HTML programmatically.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
