HTML Entity for Uppercase C Cedilla (Ç)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+00C7

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

Unicode U+00C7

Latin-1 Supplement

Hex Code Ç

Hexadecimal reference

HTML Code Ç

Decimal reference

Named Entity Ç

Most readable option

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\C7";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#xC7;</p>
<p>Symbol (decimal): &#199;</p>
<p>Symbol (named): &Ccedil;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase C cedilla (Ç) and the named entity &Ccedil; are supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase C cedilla (Ç) in language and content contexts:

Large glyphÇ
FrenchÇa, Ça va
TurkishÇek, Çankaya
Named entity&Ccedil; renders as Ç
Numeric refs&#xC7; &#199; &Ccedil; \C7

🧠 How It Works

1

Hexadecimal Code

&#xC7; uses the Unicode hexadecimal value C7 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#199; uses the decimal Unicode value 199 to display the same character. A common method for Latin-1 characters.

HTML markup
3

Named Entity

&Ccedil; is the standard named entity for Ç—readable in source HTML and part of the HTML Latin-1 entity set.

HTML markup
4

CSS Entity

\C7 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ç. Unicode U+00C7 sits in Latin-1 Supplement. Lowercase equivalent: U+00E7 (&ccedil;). Do not confuse with plain C (U+0043) or Č (C caron).

Use Cases

The uppercase C cedilla (Ç) is commonly used in:

🇫🇷 French

Words and phrases like Ça and Ça va at the start of sentences in French content.

🇹🇫 Turkish

Essential in Turkish words and place names such as Çek and Çankaya.

🇧🇷 Portuguese & Catalan

Used in Portuguese and Catalan proper names and official content.

🌐 Internationalization

Websites and apps serving French-, Turkish-, and Romance-language audiences.

📝 Proper names

Personal names, cities, and brands that include Ç.

🔤 Linguistics

Language learning apps, dictionaries, and phonetic content.

🔍 Search & SEO

Correct rendering so users can find content with proper accented spelling.

💡 Best Practices

Do

  • Use &Ccedil; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ç directly in UTF-8 source
  • Set lang attributes (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 C when Ç is required for correct spelling
  • Confuse Ç (cedilla) with Č (C caron) or Ć (C acute)
  • Put CSS escape \C7 in HTML text nodes
  • Assume all fonts render accented Latin-1 glyphs identically
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Ç; named entity is most readable

&#xC7; &#199; &Ccedil;
2

For CSS stylesheets, use the escape in the content property

\C7
3

Unicode U+00C7 — LATIN CAPITAL LETTER C WITH CEDILLA

4

Essential for French, Turkish, Portuguese, Catalan, and i18n content

❓ Frequently Asked Questions

Use &Ccedil; (named), &#xC7; (hex), &#199; (decimal), or \C7 in CSS content. The named entity &Ccedil; 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.
When writing French, Portuguese, Turkish, Catalan, or other language content, proper names, dictionary entries, multilingual websites, and any text requiring the uppercase C with cedilla.
HTML code (&#199; or &#xC7;) or the named entity &Ccedil; 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.
Yes. The named HTML entity is &Ccedil;. It is part of the standard HTML Latin-1 entity set and is well supported. You can also use &#199; or &#xC7; for numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful