HTML Entity for Uppercase C Caron (Č)

What You'll Learn
How to display the uppercase C with caron (Č) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is essential for Czech, Slovak, Croatian, and other Central European languages that use the háček diacritic. It is U+010C in the Latin Extended-A block.
Render it with Č, Č, Č, or CSS escape \010C. The named entity Č is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase C Caron Entity
U+010CLatin Extended-A
ČHexadecimal reference
ČDecimal reference
ČMost readable option
Name Value
──────────── ──────────
Unicode U+010C
Hex code Č
HTML code Č
Named entity Č
CSS code \010C
Meaning Latin capital letter C with caron
Related U+010D = č (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase C caron (Č) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\010C";
}
</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 uppercase C caron (Č) and the named entity Č are supported in all modern browsers:
👀 Live Preview
See the uppercase C caron (Č) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Č uses the Unicode hexadecimal value 010C to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Č uses the decimal Unicode value 268 to display the same character. A common method for Latin Extended-A characters.
Named Entity
Č is the standard named entity for Č—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\010C 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+010C sits in Latin Extended-A. Lowercase equivalent: U+010D (č). Do not confuse with plain C (U+0043) or Ć (C acute).
Use Cases
The uppercase C caron (Č) is commonly used in:
Essential in Czech words and names like Český, Čech, and České Budějovice.
Used in Slovak language content, education, and proper names starting with Č.
Part of the Croatian Latin alphabet in names, place names, and official content.
Websites and apps serving Central and Eastern European audiences.
Language learning apps, dictionaries, and phonetic content about háček diacritics.
Academic, legal, and editorial content in Slavic and Central European languages.
Correct rendering so users can find content with proper accented spelling.
💡 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
langattributes (e.g.lang="cs",lang="sk") for correct pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish Č (U+010C) from plain
C(U+0043) and Ć (C acute)
Don’t
- Substitute plain
Cwhen Č is required for correct spelling - Confuse Č (caron) with Ć (C acute—different character)
- Put CSS escape
\010Cin HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render Č; named entity is most readable
Č Č ČFor CSS stylesheets, use the escape in the content property
\010CUnicode U+010C — LATIN CAPITAL LETTER C WITH CARON
Essential for Czech, Slovak, Croatian, and i18n content
Previous: Uppercase C Black Letter (ℭ) Next: Uppercase C Cedilla (Ç)
❓ Frequently Asked Questions
Č (named), Č (hex), Č (decimal), or \010C in CSS content. The named entity Č is the most readable for HTML content.U+010C (LATIN CAPITAL LETTER C WITH CARON). Latin Extended-A block. Hex 010C, decimal 268. Used in Czech, Slovak, Croatian, and other Central European languages.Č or Č) or the named entity Č is used in HTML content. The CSS entity (\010C) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Č but in different contexts.Č. It is part of the HTML5 entity set and is well supported. You can also use Č or Č for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
