HTML Entity for Cedilla (U+0327)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+0327

What Is Cedilla?

Combining cedilla (U+0327) is a combining mark in the Combining Diacritical Marks block. It does not stand alone like a normal letter — it stacks below the character that comes before it. Example: c + ̧ renders as ç (same look as precomposed ç).

Remember
Character     combining cedilla (after a base)
Unicode       U+0327
Hex entity    ̧
Decimal       ̧
CSS escape    \0327
Named entity  (none for U+0327)
Example       ç → ç
Not the same  ¸ U+00B8 (¸ spacing)

Prefer a precomposed letter (e.g. ç / ç) for everyday text. Use U+0327 when you need to compose accents, work with NFD text, or attach a cedilla to a base that has no single precomposed form.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Hex entity̧HTML markup (after base letter)
Decimal entity̧HTML markup (after base letter)
CSS escape\0327Stylesheet content string
Precomposed çç / çNormal prose (often simpler)
Spacing cedilla ¸¸ / ¸Standalone mark (U+00B8) — not U+0327

When to Use Which

SituationUse
Normal words with ç, Ç, şPrecomposed letters (ç, ç)
Need combining mark in HTML sourceç or ç
Generated text via ::before / ::aftercontent: "c\0327"
Want a standalone spacing cedilla (¸)¸ / U+00B8 — not U+0327
Looking for ¸ as combiningWrong mark — ¸ is spacing ¸

Live Preview

Combining cedilla after common bases (same code point, different letters).

Letters + cedilla ç   ş   ţ   Ç
Large (c + cedilla) ç
In a word français (c + U+0327) vs français (precomposed)
vs. spacing cedilla ç combining  ·  ¸ spacing
With entities Hex: ç | Decimal: ç

Complete HTML Example

One page that attaches U+0327 to the letter c with hex, decimal, CSS escape, and a typed combining sequence. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ç (c + combining cedilla) in one document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Combining Cedilla (U+0327) in HTML</title>
  <style>
    #point::after {
      content: "c\0327";
    }
  </style>
</head>
<body>
  <p>Cedilla using Hex Code: c&#x0327;</p>
  <p>Cedilla using HTML Code: c&#807;</p>
  <p id="point">Cedilla using CSS Entity: </p>
  <p>Typed directly: ç</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: write the base letter, then &#x0327; → c&#x0327; becomes ç.

2. Decimal: same mark as 807 → c&#807;. Same result as hex.

3. CSS: put base + escape in one string: content: "c\0327". #point::after appends that sequence after the paragraph text.

4. Typed: in UTF-8 you can type c then the combining cedilla. Order must stay base first, mark second.

Pitfalls & Tips

Common mistakes when working with combining cedilla.

Order

Base letter first

Write c&#x0327;, never put U+0327 before the letter you want to mark.

Named?

No named entity for U+0327

Use numeric forms. &cedil; is for spacing ¸ (U+00B8), not the combining mark.

¸

Not spacing cedilla

Spacing cedilla ¸ (U+00B8) stands alone. U+0327 must follow a base character.

CSS vs HTML

Do not mix escapes

\0327 belongs in CSS strings. &#x0327; / &#807; belong in HTML.

Fonts

Combining support varies

Some fonts stack poorly. If layout looks wrong, prefer a precomposed letter for display text.

Semicolon

End references

Always finish with ; — write &#807;, not &#807.

Browser Support

Combining cedilla (U+0327) and its numeric entity forms (&#x0327;, &#807;, CSS \\0327) are supported in all mainstream browsers. Stacking quality depends on font support for combining marks.

✓ Universal support

Cedilla (U+0327)

Encode with hex, decimal, or CSS escape after a base letter — same combining mark everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+0327 / entities Full support

Bottom line: Prefer precomposed letters for normal prose. Use &#x0327; or &#807; after a base letter when you need the combining mark, and \\0327 only inside CSS content strings.

Key Takeaways

  • Unicode: combining cedilla is U+0327 (decimal 807).
  • HTML: base first, then &#x0327; or &#807; (e.g. c&#x0327;).
  • CSS: use "c\0327" (or another base) inside content.
  • Default: use precomposed ç / &ccedil; for everyday text when you can.

One line: U+0327 → after a base letter as &#x0327; / &#807; / CSS \0327.

Frequently Asked Questions

Place &#x0327; (hex) or &#807; (decimal) immediately after a base letter — for example c&#x0327; for ç. In CSS, use content: "c\0327". There is no named HTML entity for U+0327.
U+0327 (hex 0327, decimal 807). It belongs to the Combining Diacritical Marks block and stacks below the preceding base character.
No. Use numeric references like &#807; or &#x0327;. Note: &cedil; is for spacing cedilla ¸ (U+00B8), and &ccedil; is for precomposed ç (U+00E7).
Use U+0327 when composing accents dynamically, for NFD text, or bases without a precomposed form. For ordinary prose, prefer precomposed letters like ç / &ccedil;.
HTML entities (&#807; or &#x0327;) go in markup after the base letter. The CSS escape \0327 goes in stylesheet strings (usually content on ::before/::after), typically as "c\0327".
U+0327 is a combining mark that attaches under the previous character. U+00B8 (cedilla / &cedil;) is a spacing character that stands alone. Do not use them interchangeably.

Did you know?

Combining cedilla is Unicode U+0327 (decimal 807). It is a combining mark — place it after a base letter (e.g. c&#x0327; → ç). HTML5 has no named entity for U+0327. &cedil; maps to spacing cedilla (U+00B8 ¸), not this mark.

Next: Cent Sign

Learn the HTML entity for cent sign (¢) — the currency symbol for cents.

Cent Sign tutorial →

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