HTML Entity for Uppercase C Acute (Ć)

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

What You'll Learn

How to display the uppercase C with acute accent (Ć) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is essential for Polish, Croatian, Bosnian, and other Central European languages. It is U+0106 in the Latin Extended-A block.

Render it with Ć, Ć, Ć, or CSS escape \0106. The named entity Ć is often the most readable option in HTML source.

⚡ Quick Reference — Uppercase C Acute Entity

Unicode U+0106

Latin Extended-A

Hex Code Ć

Hexadecimal reference

HTML Code Ć

Decimal reference

Named Entity Ć

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0106
Hex code       Ć
HTML code      Ć
Named entity   Ć
CSS code       \0106
Meaning        Latin capital letter C with acute
Related        U+0107 = ć (lowercase)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the uppercase C acute (Ć) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0106";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0106;</p>
<p>Symbol (decimal): &#262;</p>
<p>Symbol (named): &Cacute;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase C acute (Ć) and the named entity &Cacute; are supported in all modern browsers:

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

👀 Live Preview

See the uppercase C acute (Ć) in language and content contexts:

Large glyphĆ
CroatianĆiro, Ćuk
PolishĆwik, Ćwikła
Named entity&Cacute; renders as Ć
Numeric refs&#x0106; &#262; &Cacute; \0106

🧠 How It Works

1

Hexadecimal Code

&#x0106; uses the Unicode hexadecimal value 0106 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#262; uses the decimal Unicode value 262 to display the same character. A common method for Latin Extended-A characters.

HTML markup
3

Named Entity

&Cacute; is the standard named entity for Ć—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ć. Unicode U+0106 sits in Latin Extended-A. Lowercase equivalent: U+0107 (&cacute;). Do not confuse with plain C (U+0043) or Č (C caron).

Use Cases

The uppercase C acute (Ć) is commonly used in:

🇵 Polish

Proper names and surnames such as Ćwik and Ćwikła in Polish-language content.

🇷🇺 Croatian & Bosnian

Names like Ćiro and Ćuk in Croatian and Bosnian Latin-script text.

🌐 Internationalization

Websites and apps serving Central and Eastern European audiences.

📝 Proper names

Personal names, place names, and brands that include Ć.

🔤 Linguistics

Language learning apps, dictionaries, and phonetic content.

📄 Publishing

Academic, legal, and editorial content in Central European languages.

🔍 Search & SEO

Correct rendering so users can find content with proper accented spelling.

💡 Best Practices

Do

  • Use &Cacute; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ć directly in UTF-8 source
  • Set lang attributes (e.g. lang="pl", lang="hr") for correct pronunciation
  • Use fonts that support Latin Extended-A characters
  • Distinguish Ć (U+0106) from plain C (U+0043)—meaning can change in proper names

Don’t

  • Substitute plain C when Ć is required for correct spelling
  • Confuse Ć (acute) with Č (C caron—different character)
  • Put CSS escape \0106 in HTML text nodes
  • Assume all fonts render Latin Extended-A glyphs identically
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Ć; named entity is most readable

&#x0106; &#262; &Cacute;
2

For CSS stylesheets, use the escape in the content property

\0106
3

Unicode U+0106 — LATIN CAPITAL LETTER C WITH ACUTE

4

Essential for Polish, Croatian, Bosnian, and i18n content

❓ Frequently Asked Questions

Use &Cacute; (named), &#x0106; (hex), &#262; (decimal), or \0106 in CSS content. The named entity &Cacute; is the most readable for HTML content.
U+0106 (LATIN CAPITAL LETTER C WITH ACUTE). Latin Extended-A block. Hex 0106, decimal 262. Used in Polish, Croatian, Bosnian, and other Central European languages.
When writing Polish, Croatian, Bosnian, or other Central European language content, proper names, dictionary entries, multilingual websites, and any text requiring the uppercase C with acute accent.
HTML code (&#262; or &#x0106;) or the named entity &Cacute; is used in HTML content. The CSS entity (\0106) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ć but in different contexts.
Yes. The named HTML entity is &Cacute;. It is part of the HTML5 entity set and is well supported. You can also use &#262; or &#x0106; for numeric references.

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