HTML Entity for Lowercase E Ogonek (ę)

What You'll Learn
How to display the lowercase e with ogonek (ę) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. The ogonek (hook) is used in Polish (e.g. ręka, mięso, język), Lithuanian, and other languages. It is U+0119 in the Latin Extended-A block.
Render it with ę, ę, ę, or CSS escape \119. The named entity ę is often the most readable option in HTML source.
⚡ Quick Reference — Lowercase E Ogonek Entity
U+0119Latin Extended-A
ęHexadecimal reference
ęDecimal reference
ęMost readable option
Name Value
──────────── ──────────
Unicode U+0119
Hex code ę
HTML code ę
Named entity ę
CSS code \119
Meaning Latin small letter e with ogonek
Related U+0118 = Ę (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase e ogonek (ę) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\119";
}
</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 lowercase e ogonek (ę) and the named entity ę are supported in modern browsers:
👀 Live Preview
See the lowercase e ogonek (ę) in Polish and Lithuanian contexts:
🧠 How It Works
Hexadecimal Code
ę uses the Unicode hexadecimal value 119 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ę uses the decimal Unicode value 281 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
\119 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+0119 sits in Latin Extended-A. Uppercase equivalent: U+0118 (Ę). The ogonek indicates a nasal vowel in Polish—do not confuse with plain e (U+0065).
Use Cases
The lowercase e ogonek (ę) is commonly used in:
Essential in words like ręka (hand), mięso (meat), pięć (five), język (language). The ogonek indicates a nasal vowel.
Used in Lithuanian and some Native American language orthographies. Correct rendering is required for i18n content.
Names of people, cities, and brands that include ę must display correctly for accessibility and SEO.
Language learning apps, dictionaries, and phonetic content teaching Polish pronunciation and spelling.
Legal, academic, and editorial content in Polish or Lithuanian.
Headlines, logos, and styled text in Polish requiring correct spelling.
Correct rendering so users can find Polish content (e.g. searching for “język” or “ręka”).
💡 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"on Polish content for correct pronunciation - Use fonts that support Latin Extended-A characters
- Distinguish ę (ogonek) from plain
e(U+0065)
Don’t
- Substitute plain
ewhen ę is required for correct Polish spelling - Confuse ę (ogonek) with ē (macron) or other accented e variants
- Put CSS escape
\119in HTML text nodes - Assume all fonts render Latin Extended-A glyphs identically
- Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render ę; named entity is most readable
ę ę ęFor CSS stylesheets, use the escape in the content property
\119Unicode U+0119 — LATIN SMALL LETTER E WITH OGONEK
Essential for Polish, Lithuanian, and internationalized web content
Previous: Lowercase E Macron (ē) Next: Lowercase E Reverse
❓ Frequently Asked Questions
ę (named), ę (hex), ę (decimal), or \119 in CSS content. The named entity ę is the most readable for HTML content.U+0119 (LATIN SMALL LETTER E WITH OGONEK). Latin Extended-A block. Hex 119, decimal 281. Used in Polish, Lithuanian, and other languages.ę or ę) or the named entity ę is used in HTML content. The CSS entity (\119) 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
