HTML Entity for Spacing Cedilla (¸)

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

What You'll Learn

How to display the Spacing Cedilla (¸) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+00B8 (SPACING CEDILLA) in the Latin-1 Supplement block (U+0080–U+00FF)—a standalone diacritical mark used in linguistics, typography, and language documentation.

Render it with ¸, ¸, the named entity ¸, or CSS escape \00B8. Do not confuse U+00B8 with U+0327 (̧, combining cedilla)—see the Combining Cedilla tutorial for the attachable mark used in letters like ç.

⚡ Quick Reference — Spacing Cedilla

Unicode U+00B8

Latin-1 Supplement (U+0080–U+00FF)

Hex Code ¸

Hexadecimal reference

HTML Code ¸

Decimal reference

Named Entity ¸

Standard HTML named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+00B8
Hex code       ¸
HTML code      ¸
Named entity   ¸
CSS code       \00B8
Type           Spacing diacritical mark
Not the same   U+0327 = combining cedilla (̧)
Block          Latin-1 Supplement (U+0080–U+00FF)
1

Complete HTML Example

A simple example showing ¸ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\00B8";
  }
 </style>
</head>
<body>
<p>Spacing cedilla (hex): &#x00B8;</p>
<p>Spacing cedilla (decimal): &#184;</p>
<p>Spacing cedilla (named): &cedil;</p>
<p id="point">Spacing cedilla (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Spacing Cedilla (¸) is widely supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Spacing Cedilla (¸) in linguistic and notation contexts:

Single symbol ¸
Linguistic note Cedilla mark ¸ below base letter
Named entity &cedil; renders as ¸
Not the same as Combining cedilla ̧ (U+0327)  |  Letter ç (ç)
Numeric refs &#x00B8; &#184; &cedil; \00B8

🧠 How It Works

1

Hexadecimal Code

&#x00B8; uses the Unicode hexadecimal value 00B8 to display the spacing cedilla.

HTML markup
2

Decimal HTML Code

&#184; uses the decimal Unicode value 184 for the same character.

HTML markup
3

Named Entity

&cedil; is the standard HTML named entity for U+00B8—readable and widely supported in linguistic markup.

HTML markup
4

CSS Entity

\00B8 is used in CSS stylesheets in the content property of pseudo-elements for decorative cedilla markers.

CSS stylesheet
=

Same visual result

All four methods render ¸. Unicode U+00B8 in Latin-1 Supplement (U+0080–U+00FF).

Use Cases

The Spacing Cedilla (¸) commonly appears in:

💬 Linguistic notation

Dictionaries and language docs showing cedilla diacritical marks.

📝 Phonetic transcription

IPA and pronunciation guides referencing cedilla placement.

📚 Academic papers

Research and scholarly content on French, Portuguese, and Turkish orthography.

🏫 Educational content

Language-learning tutorials explaining diacritical marks.

📄 Technical documentation

Character-set references and encoding guides.

🌐 Typography

Design systems documenting Latin diacritical symbols.

💡 Best Practices

Do

  • Use &cedil; when readability matters in HTML source
  • For actual letters like ç, prefer precomposed &#x00E7; or UTF-8
  • Set <meta charset="utf-8"> for reliable rendering
  • Distinguish spacing cedilla ¸ from combining cedilla ̧
  • Pick one reference style per project for consistency

Don’t

  • Confuse U+00B8 (¸, &cedil;) with U+0327 (combining cedilla)
  • Use padded Unicode notation like U+000B8—the correct value is U+00B8
  • Use CSS escape \00B8 in HTML text nodes
  • Use ¸ alone when you need a full letter such as ç or ş
  • Assume every font renders the cedilla identically—test your typeface

Key Takeaways

1

Four ways to render U+00B8 in HTML and CSS

&#x00B8; &cedil;
2

For CSS stylesheets, use \00B8 in the content property

3

Unicode U+00B8 — SPACING CEDILLA (¸)

4

U+0327 is the combining cedilla—different from ¸

5

Previous: SW Double Arrow   Next: Spacing Macron

❓ Frequently Asked Questions

Use &#x00B8; (hex), &#184; (decimal), &cedil; (named), or \00B8 in CSS content. All four render ¸.
U+00B8 (SPACING CEDILLA). Latin-1 Supplement (U+0080–U+00FF). Hex 00B8, decimal 184, named &cedil;.
No. ¸ (U+00B8) is a spacing character with entity &cedil;. ̧ (U+0327) is a combining mark that attaches to a base letter. For precomposed letters like ç, use &#x00E7; or UTF-8 directly.
For linguistic notation, phonetic transcription, technical documentation, academic papers, educational content, and pronunciation guides that reference the cedilla diacritic as a standalone symbol.
The named entity &cedil; is more readable in source markup. Numeric codes (&#184; or &#x00B8;) are explicit and work everywhere. Both produce the same glyph (¸).

Explore More HTML Entities!

Discover 1500+ HTML character references — diacritics, 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