HTML Entity for Uppercase C Circumflex (Ĉ)

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
U+0108Latin Extended-A
ĈHexadecimal reference
ĈDecimal reference
ĈMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0108";
}
</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 circumflex (Ĉ) and the named entity Ĉ are supported in all modern browsers:
👀 Live Preview
See the uppercase C circumflex (Ĉ) in Esperanto and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ĉ uses the Unicode hexadecimal value 0108 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ĉ uses the decimal Unicode value 264 to display the same character. A common method for Latin Extended-A characters.
Named Entity
Ĉ is the standard named entity for Ĉ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\0108 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+0108 sits in Latin Extended-A. Lowercase equivalent: U+0109 (ĉ). Do not confuse with plain C (U+0043), Č (C caron), or Ç (C cedilla).
Use Cases
The uppercase C circumflex (Ĉ) is commonly used in:
Correct spelling in Esperanto text (e.g. Ĉu, Ĉi, Ĉiam, Ĉef).
Support orthography in linguistic documentation and constructed-language resources.
Esperanto courses, dictionaries, and pronunciation guides with correct characters.
Showcase Latin Extended-A coverage in font demos and type design.
Linguistics papers, encyclopedias, and scholarly content about constructed languages.
Websites and apps serving Esperanto-speaking communities worldwide.
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="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
Cwhen Ĉ is required for correct spelling - Confuse Ĉ (circumflex) with Č (C caron) or Ç (C cedilla—different characters)
- Put CSS escape
\0108in HTML text nodes - Assume all fonts render Latin Extended-A 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
\0108Unicode U+0108 — LATIN CAPITAL LETTER C WITH CIRCUMFLEX
Essential for Esperanto, linguistics, and multilingual content
Previous: Uppercase C Cedilla (Ç) Next: Uppercase C Dot Above (Ċ)
❓ Frequently Asked Questions
Ĉ (named), Ĉ (hex), Ĉ (decimal), or \0108 in CSS content. The named entity Ĉ 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.Ĉ or Ĉ) or the named entity Ĉ 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.Ĉ. It is part of the HTML5 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
