HTML Entity for Uppercase E Cedilla (Ȩ)

What You'll Learn
How to display the uppercase E with cedilla (Ȩ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+0228 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 \228. There is no HTML5 named entity for U+0228; use numeric references or type Ȩ directly in UTF-8 source.
⚡ Quick Reference — Uppercase E Cedilla Entity
U+0228Latin Extended-B
ȨHexadecimal reference
ȨDecimal reference
\228Stylesheet escape
Name Value
──────────── ──────────
Unicode U+0228
Hex code Ȩ
HTML code Ȩ
Named entity — (none)
CSS code \228
Meaning Latin capital letter E with cedilla
Related U+0229 = lowercase ȩ; Ç = Ç (C cedilla)
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the uppercase E cedilla (Ȩ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\228";
}
</style>
</head>
<body>
<p>Symbol (hex): Ȩ</p>
<p>Symbol (decimal): Ȩ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase E cedilla (Ȩ) renders correctly in all modern browsers when using numeric entities or UTF-8:
👀 Live Preview
See the uppercase E cedilla (Ȩ) in context:
🧠 How It Works
Hexadecimal Code
Ȩ uses the Unicode hexadecimal value 228 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ȩ uses the decimal Unicode value 552 to display the same character. A common method for Latin Extended-B characters.
CSS Entity
\228 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: Ȩ. Unicode U+0228 sits in Latin Extended-B. Lowercase equivalent: U+0229 (ȩ). Do not confuse with Ç (Ç, C cedilla) or plain E (U+0045).
Use Cases
The uppercase E cedilla (Ȩ) is commonly used in:
Phonetic transcription, phonological notation, and linguistic descriptions at word or sentence boundaries.
Writing systems and orthographies that employ the E cedilla character in uppercase form.
Specialized language materials, glossaries, and dictionary entries with proper capitalization.
Linguistic papers, scholarly publications, and academic typography requiring U+0228.
Websites and documents requiring extended Latin characters in headings and proper nouns.
Documentation, character maps, and encoding tutorials for U+0228.
Correct encoding so assistive technologies handle the character properly.
💡 Best Practices
Do
- Use
ȨorȨ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,
Ç) - Pick one numeric style (hex or decimal) per project for consistency
Don’t
- Use
Çwhen you need Ȩ—they are different characters - Substitute plain
Ewhen Ȩ is required - Put CSS escape
\228in HTML text nodes - Use padded Unicode notation like U+00228—the correct value is
U+0228 - Use
\00228in CSS—the correct escape is\228
Key Takeaways
Three references render Ȩ; no HTML5 named entity
Ȩ ȨFor CSS stylesheets, use the escape in the content property
\228Unicode U+0228 — LATIN CAPITAL LETTER E WITH CEDILLA
Not the same as French Ç (Ç, U+00C7)
Previous: Uppercase E Caron (Ě) Next: Uppercase E Circumflex (Ê)
❓ Frequently Asked Questions
Ȩ (hex), Ȩ (decimal), or \228 in CSS content. There is no HTML5 named entity for U+0228; numeric references or UTF-8 are required.U+0228 (LATIN CAPITAL LETTER E WITH CEDILLA). Latin Extended-B block. Hex 228, decimal 552. Used in linguistic notation and specialized Latin orthographies.Ȩ or Ȩ) is used in HTML content. The CSS entity (\228) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ȩ but in different contexts.Ȩ, Ȩ, or type Ȩ directly in UTF-8. For French C cedilla, use Ç (U+00C7) instead.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
