HTML Entity for Uppercase C Acute (Ć)

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
U+0106Latin Extended-A
ĆHexadecimal reference
ĆDecimal reference
ĆMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0106";
}
</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 acute (Ć) and the named entity Ć are supported in all modern browsers:
👀 Live Preview
See the uppercase C acute (Ć) in language and content contexts:
🧠 How It Works
Hexadecimal Code
Ć uses the Unicode hexadecimal value 0106 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ć uses the decimal Unicode value 262 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
\0106 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+0106 sits in Latin Extended-A. Lowercase equivalent: U+0107 (ć). Do not confuse with plain C (U+0043) or Č (C caron).
Use Cases
The uppercase C acute (Ć) is commonly used in:
Proper names and surnames such as Ćwik and Ćwikła in Polish-language content.
Names like Ćiro and Ćuk in Croatian and Bosnian Latin-script text.
Websites and apps serving Central and Eastern European audiences.
Personal names, place names, and brands that include Ć.
Language learning apps, dictionaries, and phonetic content.
Academic, legal, and editorial content in Central European languages.
Correct rendering so users can find content with proper accented spelling.
💡 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
langattributes (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
Cwhen Ć is required for correct spelling - Confuse Ć (acute) with Č (C caron—different character)
- Put CSS escape
\0106in 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
\0106Unicode U+0106 — LATIN CAPITAL LETTER C WITH ACUTE
Essential for Polish, Croatian, Bosnian, and i18n content
Previous: Uppercase C (C) Next: Uppercase C Black Letter (ℭ)
❓ Frequently Asked Questions
Ć (named), Ć (hex), Ć (decimal), or \0106 in CSS content. The named entity Ć 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.Ć or Ć) or the named entity Ć 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.Ć. 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
