HTML Entity for Lowercase C Acute (ć)

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
U+0107Latin Extended-A
ćHexadecimal reference
ćDecimal reference
ćMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0107";
}
</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 lowercase c acute (ć) and the named entity ć are supported in all modern browsers:
👀 Live Preview
See the lowercase c acute (ć) in Polish and multilingual contexts:
c (U+0063) or č (c caron)🧠 How It Works
Hexadecimal Code
ć uses the Unicode hexadecimal value 0107 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ć uses the decimal Unicode value 263 to display the same character. One of the most commonly used methods in HTML.
Named Entity
ć is the standard named entity for ć—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\0107 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+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:
Correct spelling in Polish text (e.g. ćma, ćwiczenie, and proper nouns).
Support Polish and other languages that use the Latin script with acute accents.
Pronunciation guides, dictionaries, and language courses with correct characters.
Render personal names, place names, and brand names that contain ć correctly.
Ensure proper typography in papers, books, and publications with Polish or similar scripts.
Showcase Latin Extended-A coverage in font demos and type design.
Support proper rendering for international audiences using Latin Extended-A characters.
💡 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
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
cwhen ć is required for correct Polish spelling - Confuse ć (acute) with č (caron) or other accented c variants
- Put CSS escape
\0107in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Mix entity styles randomly in one file
Key Takeaways
Four references render ć; named entity is most readable
ć ć ćFor CSS stylesheets, use the escape in the content property
\0107Unicode U+0107 — LATIN SMALL LETTER C WITH ACUTE
Essential for Polish and multilingual web content with acute accents
Previous: Lowercase C Next: Lowercase C Caron (č)
❓ Frequently Asked Questions
ć (named), ć (hex), ć (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.ć or ć) or the named entity ć 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.ć is easier to read and maintain in hand-written HTML. Numeric codes (ć or ć) 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.
8 people found this page helpful
