Latin Capital Letter C With Cedilla

Ç

Shortcodes

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

Unicode
U+00C7
Alt Code
199
HTML Code
Ç
HTML Entity
Ç
HEX Code
Ç
CSS Code
\00C7
JS/JSON
\u00C7
Unix/C/PHP/JAVA
0xC7
URL-encode
%C3%87

Customize Latin Capital Letter C With Cedilla

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

Ç
  

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

Insert in HTML

1. Direct symbol:
<span>Ç</span>
HTML Code:
<span>&#199;</span>
HTML Entity:
<span>&Ccedil;</span>
HEX Code:
<span>&#x00C7;</span>

Add with CSS

.latin-capital-letter-c-with-cedilla::before {
  content: '\\00C7';
}

Set it in JavaScript

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