HTML Entity for Combining Cedilla (̧)

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

What You'll Learn

How to display the Combining Cedilla (̧) in HTML and CSS. This character is U+0327 (COMBINING CEDILLA) in the Combining Diacritical Marks block (U+0300–U+036F), approved in Unicode 1.1 (1993). It is a nonspacing mark that attaches below the preceding base character—for example, ç renders as ç (c with cedilla).

There is no named HTML entity for U+0327. Use ̧, ̧, or \327 in CSS content. Do not confuse U+0327 with the spacing cedilla U+00B8 (¸), which has the named entity ¸. For common letters like ç, precomposed ç is often simpler than ç.

⚡ Quick Reference — Combining Cedilla

Unicode U+0327

Combining Diacritical Marks (U+0300–U+036F)

Hex Code ̧

Hexadecimal reference

HTML Code ̧

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0327
Hex code       ̧
HTML code      ̧
Named entity   —
CSS code       \327
Related        ¸ = U+00B8 (spacing cedilla)
1

Complete HTML Example

This example shows U+0327 using hexadecimal and decimal references, combining with a base letter, plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\327";
  }
 </style>
</head>
<body>
<p>Cedilla using Hexa Decimal: &#x327;</p>
<p>Cedilla using HTML Code: &#807;</p>
<p id="point">Cedilla using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Combining Cedilla is supported in all modern browsers when paired with a base character:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Combining Cedilla with base letters and compared to the spacing cedilla:

With base letter ç   ş   ţ
French words façade   français   leçon
Standalone mark ̧
Combining vs spacing U+0327 (combining)   vs   U+00B8 ¸ (&cedil;)
Monospace refs &#x327; &#807; \327

🧠 How It Works

1

Hexadecimal Code

&#x327; references code point U+0327 using hex digits 327. Place it immediately after a base letter (e.g. c&#x327;).

HTML markup
2

Decimal HTML Code

&#807; uses the decimal Unicode value 807 for the same combining mark.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Combines with base character

The mark attaches below the preceding letter. c + U+0327 = (same visual as precomposed &#x00E7;). Distinct from spacing cedilla &cedil; (U+00B8).

Use Cases

The Combining Cedilla (̧) commonly appears in:

🇫🇷 French text

Words like façade, français, leçon, and garçon requiring c-cedilla.

🇧🇷 Portuguese

Words like ação, maçã, and coração with cedilla diacritics.

🇹🇷 Turkish & Turkic

Alphabet characters like ç and ş in Turkish and Azerbaijani.

📖 Catalan & Occitan

Catalan (ço, ç) and Occitan language content.

🌐 Multilingual sites

International content, localization, and language-specific pages.

✍️ Linguistics

Phonetic transcription, dictionaries, and language-learning apps.

♿ Accessibility

Ensure screen readers convey the full letter (e.g. “c with cedilla” for ç).

💡 Best Practices

Do

  • Place &#x327; immediately after the base character
  • Prefer precomposed ç (&#x00E7;) when available for storage and display
  • Set <meta charset="utf-8"> on multilingual pages
  • Use serif fonts with good Latin Extended support
  • Set appropriate lang attributes (e.g. lang="fr")

Don’t

  • Confuse U+0327 (combining) with U+00B8 (&cedil;, spacing cedilla)
  • Put the combining mark before the base letter
  • Put CSS escape \327 inside HTML text nodes
  • Assume every font renders combining marks identically
  • Mix decomposed and precomposed forms inconsistently in one document

Key Takeaways

1

Two HTML references for the combining mark

&#x327; &#807;
2

For CSS stylesheets, use the escape in the content property

\327
3

U+0327 attaches below the preceding base character

4

&cedil; is U+00B8 — a different spacing character

5

No named entity for U+0327 — use numeric references

❓ Frequently Asked Questions

Use &#x327; (hex), &#807; (decimal), or \327 in CSS content. Place the mark after the base letter (e.g. c&#x327;). There is no named HTML entity for U+0327.
U+0327 (COMBINING CEDILLA). Combining Diacritical Marks block (U+0300–U+036F). Hex 327, decimal 807. Attaches beneath base characters to form letters like ç.
For French, Portuguese, Catalan, Turkish, Azerbaijani, and other languages that use cedilla diacritics. It combines with letters (e.g. c) to modify pronunciation.
HTML numeric references (&#807; or &#x327;) go in markup after the base character. The CSS escape \327 is used in stylesheets, typically in the content property of pseudo-elements.
No for U+0327. The spacing cedilla U+00B8 (¸) has the named entity &cedil;, which is a standalone punctuation character, not a combining mark.

Explore More HTML Entities!

Discover 1500+ HTML character references — diacritics, currency symbols, arrows, math operators, 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