Latin Small Letter C With Dot Above

ċ

Shortcodes

Copy useful codes for latin small letter c with dot above symbol ċ to use in websites, apps, blogs, and docs.

Unicode
U+010B
HTML Code
ċ
HEX Code
ċ
CSS Code
\010B
JS/JSON
\u010B
Unix/C/PHP/JAVA
0x10B
URL-encode
%C4%8B

Customize Latin Small Letter C With Dot Above

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

ċ
  

How to use Latin Small Letter C With Dot Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ċ</span>
HTML Code:
<span>&#267;</span>
HEX Code:
<span>&#x010B;</span>

Add with CSS

.latin-small-letter-c-with-dot-above::before {
  content: '\\010B';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-c-with-dot-above').textContent = 'ċ';
copied