HTML Entity for Lowercase C Acute (ć)

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

What You'll Learn

How to display the lowercase c with acute accent (ć) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Polish and other languages that use Latin Extended-A characters, it appears in words such as ćma and ćwiczenie. It is U+0107 in the Latin Extended-A block.

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

⚡ Quick Reference — Lowercase C Acute Entity

Unicode U+0107

Latin Extended-A

Hex Code ć

Hexadecimal reference

HTML Code ć

Decimal reference

Named Entity ć

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0107
Hex code       ć
HTML code      ć
Named entity   ć
CSS code       \0107
Meaning        Latin small letter c with acute
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the lowercase 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: "\0107";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0107;</p>
<p>Symbol (decimal): &#263;</p>
<p>Symbol (named): &cacute;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The lowercase 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 lowercase c acute (ć) in Polish and multilingual contexts:

Large glyphć
Polish examplesćma, ćwiczenie, ćwierć
Named entity&cacute; renders as ć
Not the same asplain c (U+0063) or č (c caron)
Numeric refs&#x0107; &#263; &cacute; \0107

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

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

\0107 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+0107 sits in Latin Extended-A. Do not confuse ć with plain c (U+0063) or č (c caron, U+010D).

Use Cases

The lowercase c acute (ć) is commonly used in:

🇵🇱 Polish content

Correct spelling in Polish text (e.g. ćma, ćwiczenie, and proper nouns).

🌐 Multilingual sites

Support Polish and other languages that use the Latin script with acute accents.

📚 Language learning

Pronunciation guides, dictionaries, and language courses with correct characters.

✍️ Names & places

Render personal names, place names, and brand names that contain ć correctly.

📄 Academic publishing

Ensure proper typography in papers, books, and publications with Polish or similar scripts.

🎨 Typography

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

🌐 Internationalization

Support proper rendering for international audiences using Latin Extended-A characters.

💡 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="pl" on Polish content for correct language handling
  • Use fonts that support Latin Extended-A characters
  • Distinguish ć (acute) from plain c (U+0063) and č (caron)

Don’t

  • Substitute plain c when ć is required for correct Polish spelling
  • Confuse ć (acute) with č (caron) or other accented c variants
  • Put CSS escape \0107 in HTML text nodes
  • Assume all fonts render Latin Extended-A glyphs identically
  • Mix entity styles randomly in one file

Key Takeaways

1

Four references render ć; named entity is most readable

&#x0107; &#263; &cacute;
2

For CSS stylesheets, use the escape in the content property

\0107
3

Unicode U+0107 — LATIN SMALL LETTER C WITH ACUTE

4

Essential for Polish and multilingual web content with acute accents

❓ Frequently Asked Questions

Use &cacute; (named), &#x0107; (hex), &#263; (decimal), or \0107 in CSS content. All four methods render ć correctly.
U+0107 (LATIN SMALL LETTER C WITH ACUTE). Latin Extended-A block. Hex 0107, decimal 263. Used in Polish and other languages with Latin diacritics.
For Polish language content, multilingual websites, language learning resources, names and proper nouns, academic papers, and any text requiring the Latin small letter c with acute accent.
HTML code (&#263; or &#x0107;) or the named entity &cacute; is used in HTML content. The CSS entity (\0107) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ć but in different contexts.
The named entity &cacute; is easier to read and maintain in hand-written HTML. Numeric codes (&#263; or &#x0107;) are useful when generating HTML programmatically. All produce the same character ć.

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