HTML Entity for Lowercase C Dot Above (ċ)

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

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

Unicode U+010B

Latin Extended-A

Hex Code ċ

Hexadecimal reference

HTML Code ċ

Decimal reference

Named Entity

No named entity

Reference Table
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 ċ
1

Complete HTML Example

A simple example showing the lowercase c dot above (ċ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\010B";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x010B;</p>
<p>Symbol (decimal): &#267;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 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:

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

👀 Live Preview

See the lowercase c dot above (ċ) in Maltese and linguistic contexts:

Large glyphċ
Maltese examplesċent, ċirku, ċavetta, ċereż
Not the same as&cdot; renders · (middle dot), not ċ
Related characterplain c (U+0063) or ɕ (c curl)
Numeric refs&#x010B; &#267; \010B

🧠 How It Works

1

Hexadecimal Code

&#x010B; uses the Unicode hexadecimal value 010B to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#267; uses the decimal Unicode value 267 to display the same character. One of the most commonly used methods in HTML.

HTML markup
3

CSS Entity

\010B is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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 &cdot; (middle dot ·, U+00B7). There is no named HTML entity.

Use Cases

The lowercase c dot above (ċ) is commonly used in:

🇲🇹 Maltese content

Correct spelling in Maltese text, where ċ is a standard letter of the alphabet.

🇮🇪 Old Irish orthography

Represent the dotted c in historical or old Irish orthography and linguistic documentation.

🔤 Linguistic content

Display extended Latin symbols in linguistics articles and language documentation.

📚 Language learning

Maltese and Irish language courses, dictionaries, and pronunciation guides with correct characters.

🎨 Typography

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

📄 Academic publishing

Ensure proper typography in papers and publications that include Maltese or Irish script.

🌐 Internationalization

Support proper rendering for Maltese and other languages that use the dotted c.

💡 Best Practices

Do

  • Use &#267; or &#x010B; 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 c and from · (middle dot)

Don’t

  • Use &cdot; for ċ—it renders the middle dot (·, U+00B7)
  • Substitute plain c when ċ is required for correct Maltese spelling
  • Put CSS escape \010B in HTML text nodes
  • Assume all fonts render Latin Extended-A glyphs identically
  • Mix entity styles randomly in one file

Key Takeaways

1

Three references render ċ (no named entity)

&#x010B; &#267;
2

For CSS stylesheets, use the escape in the content property

\010B
3

Unicode U+010B — LATIN SMALL LETTER C WITH DOT ABOVE

4

Essential for Maltese and old Irish orthography on the web

❓ Frequently Asked Questions

Use &#x010B; (hex), &#267; (decimal), or \010B in CSS content. There is no named HTML entity for this character. Do not use &cdot;, 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.
For Maltese language content, old Irish orthography, linguistic and phonetic content, multilingual websites, language learning resources, and any text requiring the Latin small letter c with dot above.
HTML code (&#267; or &#x010B;) 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.
No. &cdot; 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.

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