HTML Entity for Uppercase C Cedilla (Ç)

What You'll Learn
How to display the uppercase C with cedilla (Ç) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is essential for French, Portuguese, Turkish, Catalan, and other languages. It is U+00C7 in the Latin-1 Supplement block.
Render it with Ç, Ç, Ç, or CSS escape \C7. The named entity Ç is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase C Cedilla Entity
U+00C7Latin-1 Supplement
ÇHexadecimal reference
ÇDecimal reference
ÇMost readable option
Name Value
──────────── ──────────
Unicode U+00C7
Hex code Ç
HTML code Ç
Named entity Ç
CSS code \C7
Meaning Latin capital letter C with cedilla
Related U+00E7 = ç (lowercase)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase C cedilla (Ç) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\C7";
}
</style>
</head>
<body>
<p>Symbol (hex): Ç</p>
<p>Symbol (decimal): Ç</p>
<p>Symbol (named): Ç</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase C cedilla (Ç) and the named entity Ç are supported in all modern browsers:
👀 Live Preview
See the uppercase C cedilla (Ç) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ç uses the Unicode hexadecimal value C7 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ç uses the decimal Unicode value 199 to display the same character. A common method for Latin-1 characters.
Named Entity
Ç is the standard named entity for Ç—readable in source HTML and part of the HTML Latin-1 entity set.
CSS Entity
\C7 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ç. Unicode U+00C7 sits in Latin-1 Supplement. Lowercase equivalent: U+00E7 (ç). Do not confuse with plain C (U+0043) or Č (C caron).
Use Cases
The uppercase C cedilla (Ç) is commonly used in:
Words and phrases like Ça and Ça va at the start of sentences in French content.
Essential in Turkish words and place names such as Çek and Çankaya.
Used in Portuguese and Catalan proper names and official content.
Websites and apps serving French-, Turkish-, and Romance-language audiences.
Personal names, cities, and brands that include Ç.
Language learning apps, dictionaries, and phonetic content.
Correct rendering so users can find content with proper accented spelling.
💡 Best Practices
Do
- Use
Çin HTML when possible for readability - Serve pages as UTF-8; you can also type Ç directly in UTF-8 source
- Set
langattributes (e.g.lang="fr",lang="tr") for correct pronunciation - Use fonts that support Latin-1 Supplement characters
- Distinguish Ç (U+00C7) from plain
C(U+0043) and ç (lowercase cedilla)
Don’t
- Substitute plain
Cwhen Ç is required for correct spelling - Confuse Ç (cedilla) with Č (C caron) or Ć (C acute)
- Put CSS escape
\C7in HTML text nodes - Assume all fonts render accented Latin-1 glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render Ç; named entity is most readable
Ç Ç ÇFor CSS stylesheets, use the escape in the content property
\C7Unicode U+00C7 — LATIN CAPITAL LETTER C WITH CEDILLA
Essential for French, Turkish, Portuguese, Catalan, and i18n content
Previous: Uppercase C Caron (Č) Next: Uppercase C Circumflex (Ĉ)
❓ Frequently Asked Questions
Ç (named), Ç (hex), Ç (decimal), or \C7 in CSS content. The named entity Ç is the most readable for HTML content.U+00C7 (LATIN CAPITAL LETTER C WITH CEDILLA). Latin-1 Supplement block. Hex C7, decimal 199. Used in French, Portuguese, Turkish, Catalan, and other languages.Ç or Ç) or the named entity Ç is used in HTML content. The CSS entity (\C7) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ç but in different contexts.Ç. It is part of the standard HTML Latin-1 entity set and is well supported. You can also use Ç or Ç for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
