Latin Capital Letter C With Circumflex

Ĉ

Shortcodes

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

Unicode
U+0108
HTML Code
Ĉ
HEX Code
Ĉ
CSS Code
\0108
JS/JSON
\u0108
Unix/C/PHP/JAVA
0x108
URL-encode
%C4%88

Customize Latin Capital Letter C With Circumflex

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

Ĉ
  

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

Insert in HTML

1. Direct symbol:
<span>Ĉ</span>
HTML Code:
<span>&#264;</span>
HEX Code:
<span>&#x0108;</span>

Add with CSS

.latin-capital-letter-c-with-circumflex::before {
  content: '\\0108';
}

Set it in JavaScript

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