HTML Entity for Lowercase C Dot Above (ċ)

What You'll Learn
How to display the lowercase c with dot above (ċ) in HTML using hexadecimal, decimal, and CSS escape methods. Essential for Maltese and old Irish orthography, it is a standard letter in the Maltese alphabet and appears in words such as ċent, ċirku, and ċavetta. It is U+010B in the Latin Extended-A block.
Render it with ċ, ċ, or CSS escape \010B. There is no named HTML entity for ċ—do not use ċ, which renders the middle dot (·, U+00B7) instead.
⚡ Quick Reference — Lowercase C Dot Above Entity
U+010BLatin Extended-A
ċHexadecimal reference
ċDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+010B
Hex code ċ
HTML code ċ
Named entity (none)
CSS code \010B
Meaning Latin small letter c with dot above
Block Latin Extended-A (U+0100–U+017F)
Note ċ is · (U+00B7), not ċComplete HTML Example
A simple example showing the lowercase c dot above (ċ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\010B";
}
</style>
</head>
<body>
<p>Symbol (hex): ċ</p>
<p>Symbol (decimal): ċ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase c dot above (ċ) renders correctly in modern browsers when UTF-8 is used and a font with Latin Extended-A support is available:
👀 Live Preview
See the lowercase c dot above (ċ) in Maltese and linguistic contexts:
ċ renders · (middle dot), not ċc (U+0063) or ɕ (c curl)🧠 How It Works
Hexadecimal Code
ċ uses the Unicode hexadecimal value 010B to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ċ uses the decimal Unicode value 267 to display the same character. One of the most commonly used methods in HTML.
CSS Entity
\010B is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ċ. Unicode U+010B sits in Latin Extended-A. Do not confuse ċ with plain c (U+0063) or ċ (middle dot ·, U+00B7). There is no named HTML entity.
Use Cases
The lowercase c dot above (ċ) is commonly used in:
Correct spelling in Maltese text, where ċ is a standard letter of the alphabet.
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
ċorċin HTML (no named entity exists) - 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 ċ from plain
cand from · (middle dot)
Don’t
- Use
ċfor ċ—it renders the middle dot (·, U+00B7) - Substitute plain
cwhen ċ is required for correct Maltese spelling - Put CSS escape
\010Bin HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Three references render ċ (no named entity)
ċ ċFor CSS stylesheets, use the escape in the content property
\010BUnicode U+010B — LATIN SMALL LETTER C WITH DOT ABOVE
Essential for Maltese and old Irish orthography on the web
Previous: Lowercase C Curl (ɕ) Next: Lowercase C Hook
❓ Frequently Asked Questions
ċ (hex), ċ (decimal), or \010B in CSS content. There is no named HTML entity for this character. Do not use ċ, which renders the middle dot (·) instead of ċ.U+010B (LATIN SMALL LETTER C WITH DOT ABOVE). Latin Extended-A block. Hex 010B, decimal 267. Used in Maltese and in old Irish orthography.ċ or ċ) is used in HTML content. The CSS entity (\010B) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ċ but in different contexts.ċ renders the middle dot (·, U+00B7), not ċ. There is no standard named HTML entity for the lowercase c with dot above. Use numeric codes or CSS instead.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
