HTML Entity for Lowercase E Cedilla (ȩ)

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

What You'll Learn

How to display the lowercase e with cedilla (ȩ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0229 in the Latin Extended-B block—a specialized letter with a cedilla hook beneath e, distinct from the common French ç (ç).

Render it with ȩ, ȩ, or CSS escape \229. There is no HTML5 named entity for U+0229; use numeric references or type ȩ directly in UTF-8 source.

⚡ Quick Reference — Lowercase E Cedilla Entity

Unicode U+0229

Latin Extended-B

Hex Code ȩ

Hexadecimal reference

HTML Code ȩ

Decimal reference

CSS Code \229

Stylesheet escape

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0229
Hex code       ȩ
HTML code      ȩ
Named entity   — (none)
CSS code       \229
Meaning        Latin small letter e with cedilla
Related        U+0228 = uppercase Ȩ; ç = ç (c cedilla)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase e cedilla (ȩ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\229";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x229;</p>
<p>Symbol (decimal): &#553;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The lowercase e cedilla (ȩ) renders correctly in all modern browsers when using numeric entities or UTF-8:

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

👀 Live Preview

See the lowercase e cedilla (ȩ) in context:

Large glyphȩ
Not French çȩ (U+0229) is e cedilla; ç (U+00E7) is c cedilla (&ccedil;)
Linguistic usePhonetic and phonological notation in academic texts
Numeric refs&#x229; &#553; \229
UTF-8Type ȩ directly when charset is UTF-8

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#553; uses the decimal Unicode value 553 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: ȩ. Unicode U+0229 sits in Latin Extended-B. Uppercase equivalent: U+0228 (Ȩ). Do not confuse with &ccedil; (ç, c cedilla).

Use Cases

The lowercase e cedilla (ȩ) is commonly used in:

🔤 Linguistics & phonetics

Phonetic transcription, phonological notation, and linguistic descriptions.

📝 Extended orthographies

Writing systems and orthographies that employ the e cedilla character.

📚 Language learning

Specialized language materials, glossaries, and dictionary entries.

📄 Academic publishing

Linguistic papers, scholarly publications, and academic typography.

🌐 International content

Websites and documents requiring extended Latin characters.

🔍 Character reference

Documentation, character maps, and encoding tutorials for U+0229.

♿ Accessibility

Correct encoding so assistive technologies handle the character properly.

💡 Best Practices

Do

  • Use &#x229; or &#553; when a named entity is unavailable
  • Serve pages as UTF-8; you can also type ȩ directly in UTF-8 source
  • Use fonts that support Latin Extended-B characters
  • Distinguish ȩ (e cedilla) from ç (c cedilla, &ccedil;)
  • Pick one numeric style (hex or decimal) per project for consistency

Don’t

  • Use &ccedil; when you need ȩ—they are different characters
  • Substitute plain e when ȩ is required
  • Put CSS escape \229 in HTML text nodes
  • Assume all fonts render Latin Extended-B glyphs identically
  • Omit UTF-8 encoding on pages with extended Latin characters

Key Takeaways

1

Three references render ȩ; no HTML5 named entity

&#x229; &#553;
2

For CSS stylesheets, use the escape in the content property

\229
3

Unicode U+0229 — LATIN SMALL LETTER E WITH CEDILLA

4

Not the same as French ç (&ccedil;, U+00E7)

❓ Frequently Asked Questions

Use &#x229; (hex), &#553; (decimal), or \229 in CSS content. There is no HTML5 named entity for U+0229; numeric references or UTF-8 are required.
U+0229 (LATIN SMALL LETTER E WITH CEDILLA). Latin Extended-B block. Hex 229, decimal 553. Used in linguistic notation and specialized Latin orthographies.
In linguistic and phonetic content, phonological notation, Latin extended orthographies, language learning materials, and typography that requires this character. It is less common than French ç but appears in specialized and academic texts.
HTML code (&#553; or &#x229;) is used in HTML content. The CSS entity (\229) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ȩ but in different contexts.
No. U+0229 is in Latin Extended-B, outside the standard HTML named-entity set. Use &#x229;, &#553;, or type ȩ directly in UTF-8. For French c cedilla, use &ccedil; (U+00E7) instead.

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