Latin Letter Small Capital C

Shortcodes

Copy useful codes for latin letter small capital c symbol ᴄ to use in websites, apps, blogs, and docs.

Unicode
U+1D04
HTML Code
ᴄ
HEX Code
ᴄ
CSS Code
\1D04
JS/JSON
\u1D04
Unix/C/PHP/JAVA
0x1D04
URL-encode
%E1%B4%84

Customize Latin Letter Small Capital C

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᴄ</span>
HTML Code:
<span>&#7428;</span>
HEX Code:
<span>&#x1D04;</span>

Add with CSS

.latin-letter-small-capital-c::before {
  content: '\\1D04';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-c').textContent = 'ᴄ';
copied