HTML Entity for Uppercase C Circumflex (Ĉ)

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

What You'll Learn

How to display the uppercase C with circumflex (Ĉ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Esperanto and linguistic content, it appears at the start of words such as Ĉu, Ĉi, and Ĉiam, where Ĉ represents the sound /tʃ/. It is U+0108 in the Latin Extended-A block.

Render it with Ĉ, Ĉ, Ĉ, or CSS escape \0108. The named entity Ĉ is often the most readable option in HTML source.

⚡ Quick Reference — Uppercase C Circumflex Entity

Unicode U+0108

Latin Extended-A

Hex Code Ĉ

Hexadecimal reference

HTML Code Ĉ

Decimal reference

Named Entity Ĉ

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0108
Hex code       Ĉ
HTML code      Ĉ
Named entity   Ĉ
CSS code       \0108
Meaning        Latin capital letter C with circumflex
Related        U+0109 = ĉ (lowercase)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the uppercase C circumflex (Ĉ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

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

🌐 Browser Support

The uppercase C circumflex (Ĉ) and the named entity &Ccirc; are supported in all modern browsers:

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

👀 Live Preview

See the uppercase C circumflex (Ĉ) in Esperanto and linguistic contexts:

Large glyphĈ
Esperanto examplesĈu, Ĉi, Ĉiam, Ĉef
Named entity&Ccirc; renders as Ĉ
Not the same asplain C (U+0043), Č (C caron), or Ç (C cedilla)
Numeric refs&#x0108; &#264; &Ccirc; \0108

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&Ccirc; is the standard named entity for Ĉ—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\0108 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+0108 sits in Latin Extended-A. Lowercase equivalent: U+0109 (&ccirc;). Do not confuse with plain C (U+0043), Č (C caron), or Ç (C cedilla).

Use Cases

The uppercase C circumflex (Ĉ) is commonly used in:

🌍 Esperanto content

Correct spelling in Esperanto text (e.g. Ĉu, Ĉi, Ĉiam, Ĉef).

🔤 Linguistic notation

Support orthography in linguistic documentation and constructed-language resources.

📚 Language learning

Esperanto courses, dictionaries, and pronunciation guides with correct characters.

🎨 Typography

Showcase Latin Extended-A coverage in font demos and type design.

📄 Academic publishing

Linguistics papers, encyclopedias, and scholarly content about constructed languages.

🌐 Internationalization

Websites and apps serving Esperanto-speaking communities worldwide.

🔍 Search & SEO

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

💡 Best Practices

Do

  • Use &Ccirc; 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="eo") for correct pronunciation
  • Use fonts that support Latin Extended-A characters
  • Distinguish Ĉ (U+0108) from plain C (U+0043), Č (C caron), and Ç (C cedilla)

Don’t

  • Substitute plain C when Ĉ is required for correct spelling
  • Confuse Ĉ (circumflex) with Č (C caron) or Ç (C cedilla—different characters)
  • Put CSS escape \0108 in HTML text nodes
  • Assume all fonts render Latin Extended-A glyphs identically
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Ĉ; named entity is most readable

&#x0108; &#264; &Ccirc;
2

For CSS stylesheets, use the escape in the content property

\0108
3

Unicode U+0108 — LATIN CAPITAL LETTER C WITH CIRCUMFLEX

4

Essential for Esperanto, linguistics, and multilingual content

❓ Frequently Asked Questions

Use &Ccirc; (named), &#x0108; (hex), &#264; (decimal), or \0108 in CSS content. The named entity &Ccirc; is the most readable for HTML content.
U+0108 (LATIN CAPITAL LETTER C WITH CIRCUMFLEX). Latin Extended-A block. Hex 0108, decimal 264. Used in Esperanto and linguistic notation.
When writing Esperanto language content, linguistics documentation, academic papers, dictionary entries, multilingual websites, and any text requiring the uppercase C with circumflex accent.
HTML code (&#264; or &#x0108;) or the named entity &Ccirc; is used in HTML content. The CSS entity (\0108) 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 &Ccirc;. It is part of the HTML5 entity set and is well supported. You can also use &#264; or &#x0108; 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