HTML Entity for Uppercase C Dot Above (Ċ)

What You'll Learn
How to display the uppercase C with dot above (Ċ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Maltese and linguistic content, it is a standard letter in the Maltese alphabet and appears in words such as Ċent, Ċirk, and Ċavetta, where Ċ represents the sound /tʃ/. It is U+010A in the Latin Extended-A block.
Render it with Ċ, Ċ, Ċ, or CSS escape \010A. The named entity Ċ is often the most readable option in HTML source. Do not confuse Ċ (Ċ) with ċ, which renders the middle dot (·, U+00B7).
⚡ Quick Reference — Uppercase C Dot Above Entity
U+010ALatin Extended-A
ĊHexadecimal reference
ĊDecimal reference
ĊMost readable option
Name Value
──────────── ──────────
Unicode U+010A
Hex code Ċ
HTML code Ċ
Named entity Ċ
CSS code \010A
Meaning Latin capital letter C with dot above
Related U+010B = lowercase c dot above (no named entity)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase C dot above (Ċ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\010A";
}
</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 dot above (Ċ) and the named entity Ċ are supported in all modern browsers:
👀 Live Preview
See the uppercase C dot above (Ċ) in Maltese and linguistic contexts:
ċ renders · (middle dot), not ĊC (U+0043) or Ĉ (C circumflex)🧠 How It Works
Hexadecimal Code
Ċ uses the Unicode hexadecimal value 010A to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ċ uses the decimal Unicode value 266 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
\010A 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+010A sits in Latin Extended-A. Lowercase equivalent: U+010B (no named entity—use numeric refs). Do not confuse Ċ (Ċ) with ċ (middle dot, U+00B7).
Use Cases
The uppercase C dot above (Ċ) is commonly used in:
Correct spelling in Maltese text (e.g. Ċent, Ċirk, Ċavetta), where Ċ is a standard letter.
Represent the dotted C in historical or old Irish orthography and linguistic documentation.
Display extended Latin symbols in linguistics articles and language documentation.
Maltese and Irish language 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 Maltese or Irish script.
Support proper rendering for Maltese and other languages that use the dotted C.
💡 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="mt"on Maltese content for correct language handling - Use fonts that support Latin Extended-A characters
- Distinguish Ċ (U+010A) from plain
C(U+0043) and from · (middle dot)
Don’t
- Use
ċfor Ċ—it renders the middle dot (·, U+00B7) - Substitute plain
Cwhen Ċ is required for correct Maltese spelling - Confuse Ċ (dot above) with Ĉ (C circumflex—different character)
- Put CSS escape
\010Ain 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
\010AUnicode U+010A — LATIN CAPITAL LETTER C WITH DOT ABOVE
Essential for Maltese, linguistics, and multilingual content
Previous: Uppercase C Circumflex (Ĉ) Next: Uppercase C Double Struck (ℂ)
❓ Frequently Asked Questions
Ċ (named), Ċ (hex), Ċ (decimal), or \010A in CSS content. The named entity Ċ is the most readable for HTML content.U+010A (LATIN CAPITAL LETTER C WITH DOT ABOVE). Latin Extended-A block. Hex 010A, decimal 266. Used in Maltese and linguistic notation.Ċ or Ċ) or the named entity Ċ is used in HTML content. The CSS entity (\010A) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ċ but in different contexts.Ċ renders Ċ (uppercase C with dot above, U+010A). ċ renders · (middle dot, U+00B7). They are different characters with different Unicode values.Ċ. 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
