Circled Latin Capital Letter C

Shortcodes

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

Unicode
U+24B8
HTML Code
Ⓒ
HEX Code
Ⓒ
CSS Code
\24B8
JS/JSON
\u24B8
Unix/C/PHP/JAVA
0x24B8
URL-encode
%E2%92%B8

Customize Circled Latin Capital Letter C

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

  

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

Insert in HTML

1. Direct symbol:
<span>Ⓒ</span>
HTML Code:
<span>&#9400;</span>
HEX Code:
<span>&#x24B8;</span>

Add with CSS

.circled-latin-capital-letter-c::before {
  content: '\\24B8';
}

Set it in JavaScript

document.querySelector('.circled-latin-capital-letter-c').textContent = 'Ⓒ';
copied