HTML Entity for Lowercase C Circumflex (ĉ)

What You'll Learn
How to display the lowercase c with circumflex (ĉ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Esperanto and other linguistic content, it appears in words such as ĉar, ĉi, and ĉambro, where ĉ represents the sound /tʃ/. It is U+0109 in the Latin Extended-A block.
Render it with ĉ, ĉ, ĉ, or CSS escape \0109. The named entity ĉ is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase C Circumflex Entity
U+0109Latin Extended-A
ĉHexadecimal reference
ĉDecimal reference
ĉMost readable option
Name Value
──────────── ──────────
Unicode U+0109
Hex code ĉ
HTML code ĉ
Named entity ĉ
CSS code \0109
Meaning Latin small letter c with circumflex
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase c circumflex (ĉ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0109";
}
</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 lowercase c circumflex (ĉ) and the named entity ĉ are supported in all modern browsers:
👀 Live Preview
See the lowercase c circumflex (ĉ) in Esperanto and linguistic contexts:
c (U+0063) or ç (c cedilla)🧠 How It Works
Hexadecimal Code
ĉ uses the Unicode hexadecimal value 0109 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ĉ uses the decimal Unicode value 265 to display the same character. One of the most commonly used methods in HTML.
Named Entity
ĉ is the standard named entity for ĉ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\0109 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+0109 sits in Latin Extended-A. Do not confuse ĉ with plain c (U+0063) or ç (c cedilla, U+00E7).
Use Cases
The lowercase c circumflex (ĉ) is commonly used in:
Correct spelling in Esperanto text (e.g. ĉar, ĉi, ĉambro, ĉevalo).
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.
Ensure proper typography in papers and publications that include Esperanto or similar scripts.
Document Latin Extended-A character codes for developers and linguists.
Support proper rendering for Esperanto and other languages with circumflex accents.
💡 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
lang="eo"on Esperanto content for correct language handling - Use fonts that support Latin Extended-A characters
- Distinguish ĉ (circumflex) from plain
c(U+0063) and ç (cedilla)
Don’t
- Substitute plain
cwhen ĉ is required for correct Esperanto spelling - Confuse ĉ (circumflex) with ć (acute) or ç (cedilla)
- Put CSS escape
\0109in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Four references render ĉ; named entity is most readable
ĉ ĉ ĉFor CSS stylesheets, use the escape in the content property
\0109Unicode U+0109 — LATIN SMALL LETTER C WITH CIRCUMFLEX
Essential for Esperanto and linguistic web content with circumflex accents
Previous: Lowercase C Cedilla (ç) Next: Lowercase C Curl
❓ Frequently Asked Questions
ĉ (named), ĉ (hex), ĉ (decimal), or \0109 in CSS content. All four methods render ĉ correctly.U+0109 (LATIN SMALL LETTER C WITH CIRCUMFLEX). Latin Extended-A block. Hex 0109, decimal 265. Used in Esperanto and other linguistic contexts.ĉ or ĉ) or the named entity ĉ is used in HTML content. The CSS entity (\0109) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ĉ but in different contexts.ĉ. It is defined in HTML5 and supported by modern browsers. Numeric codes (ĉ or ĉ) are useful when generating HTML programmatically.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
