Latin Capital Letter C With Caron

Č

Shortcodes

Copy useful codes for latin capital letter c with caron symbol Č to use in websites, apps, blogs, and docs.

Unicode
U+010C
HTML Code
Č
HEX Code
Č
CSS Code
\010C
JS/JSON
\u010C
Unix/C/PHP/JAVA
0x10C
URL-encode
%C4%8C

Customize Latin Capital Letter C With Caron

Customize Č, download it as SVG or PNG, or copy the generated HTML snippet.

Č
  

How to use Latin Capital Letter C With Caron Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Č</span>
HTML Code:
<span>&#268;</span>
HEX Code:
<span>&#x010C;</span>

Add with CSS

.latin-capital-letter-c-with-caron::before {
  content: '\\010C';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-c-with-caron').textContent = 'Č';
copied