Latin Capital Letter C With Acute

Ć

Shortcodes

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

Unicode
U+0106
HTML Code
Ć
HEX Code
Ć
CSS Code
\0106
JS/JSON
\u0106
Unix/C/PHP/JAVA
0x106
URL-encode
%C4%86

Customize Latin Capital Letter C With Acute

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

Ć
  

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

Insert in HTML

1. Direct symbol:
<span>Ć</span>
HTML Code:
<span>&#262;</span>
HEX Code:
<span>&#x0106;</span>

Add with CSS

.latin-capital-letter-c-with-acute::before {
  content: '\\0106';
}

Set it in JavaScript

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