HTML Entity for Uppercase E Ogonek (Ę)

What You'll Learn
How to display the uppercase E with ogonek (Ę) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The ogonek (hook) marks a nasal vowel and is used in Polish, Lithuanian, and other languages. It is U+0118 in the Latin Extended-A block.
Render it with Ę, Ę, Ę, or CSS escape \118. The named entity Ę is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase E Ogonek Entity
U+0118Latin Extended-A
ĘHexadecimal reference
ĘDecimal reference
ĘMost readable option
Name Value
──────────── ──────────
Unicode U+0118
Hex code Ę
HTML code Ę
Named entity Ę
CSS code \118
Meaning Latin capital letter E with ogonek
Related U+0119 = ę (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase E ogonek (Ę) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\118";
}
</style>
</head>
<body>
<p>Symbol (hex): Ę</p>
<p>Symbol (decimal): Ę</p>
<p>Symbol (named): Ę</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase E ogonek (Ę) and the named entity Ę are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase E ogonek (Ę) in Polish and Lithuanian contexts:
🧠 How It Works
Hexadecimal Code
Ę uses the Unicode hexadecimal value 118 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ę uses the decimal Unicode value 280 to display the same character. A common method for Latin Extended-A characters.
Named Entity
Ę is the standard named entity for Ę—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\118 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ę. Unicode U+0118 sits in Latin Extended-A. Lowercase equivalent: U+0119 (ę). Do not confuse with plain E (U+0045).
Use Cases
The uppercase E ogonek (Ę) is commonly used in:
All-caps text and words like ZĘBY where the nasal vowel requires Ę in uppercase.
Used in Lithuanian orthography. Correct rendering is required for i18n content.
Names of people, cities, and brands that include Ę must display correctly for accessibility and SEO.
Language documentation, phonetic studies, and academic papers on Slavic and Baltic languages.
Language learning apps, dictionaries, and Polish or Lithuanian spelling tutorials.
Legal, academic, and editorial content in Polish or Lithuanian.
Correct rendering so users can find content with proper ogonek spelling in all-caps queries.
💡 Best Practices
Do
- Use
Ęin HTML when possible for readability - Serve pages as UTF-8; you can also type Ę directly in UTF-8 source
- Set
lang="pl"orlang="lt"on relevant content - Use fonts that support Latin Extended-A characters
- Distinguish Ę (ogonek) from plain
E(U+0045) and Ē (macron)
Don’t
- Substitute plain
Ewhen Ę is required for correct spelling - Confuse Ę (ogonek) with Ē (macron) or other accented E variants
- Put CSS escape
\118in HTML text nodes - Use padded Unicode notation like U+00118—the correct value is
U+0118 - Use
\00118in CSS—the correct escape is\118
Key Takeaways
Four references render Ę; named entity is most readable
Ę Ę ĘFor CSS stylesheets, use the escape in the content property
\118Unicode U+0118 — LATIN CAPITAL LETTER E WITH OGONEK
Essential for Polish, Lithuanian, and internationalized web content
Previous: Uppercase E Macron (Ē) Next: Uppercase E Open
❓ Frequently Asked Questions
Ę (named), Ę (hex), Ę (decimal), or \118 in CSS content. The named entity Ę is the most readable for HTML content.U+0118 (LATIN CAPITAL LETTER E WITH OGONEK). Latin Extended-A block. Hex 118, decimal 280. Used in Polish, Lithuanian, and other languages.Ę or Ę) or the named entity Ę is used in HTML content. The CSS entity (\118) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ę but in different contexts.Ę. It is part of the standard HTML5 entity set and is well supported. You can also use Ę or Ę for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
