HTML Entity for Uppercase Z Dot Above (Ż)

What You'll Learn
How to display the uppercase Z with dot above (Ż) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Polish and Kashubian text, it appears at the start of words such as Żółć (bile), Żaba (frog), and Życie (life). It is U+017B in the Latin Extended-A block—a distinct letter in the Polish alphabet, not a phonetic symbol.
Render it with Ż, Ż, Ż, or CSS escape \017B. The named entity Ż is often the most readable option. Do not confuse Ż (Z dot above) with plain Z (U+005A), Ź (Z acute), or Ž (Z caron).
⚡ Quick Reference — Uppercase Z Dot Above Entity
U+017BLatin Extended-A
ŻHexadecimal reference
ŻDecimal reference
ŻMost readable option
Name Value
──────────── ──────────
Unicode U+017B
Hex code Ż
HTML code Ż
Named entity Ż
CSS code \017B
Meaning Latin capital letter Z with dot above
Also known as Z dot above, Polish Ż
Related U+017C = ż (ż)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase Z dot above (Ż) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\017B";
}
</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 Z dot above (Ż) and the named entity Ż are supported in all modern browsers:
👀 Live Preview
See the uppercase Z dot above (Ż) in Polish and multilingual contexts:
🧠 How It Works
Hexadecimal Code
Ż uses the Unicode hexadecimal value 017B to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ż uses the decimal Unicode value 379 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
\017B is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Use Cases
The uppercase Z dot above (Ż) is commonly used in:
Essential in words like Żółć (bile), Żaba (frog), and Życie (life). A distinct letter in the Polish alphabet.
Used in Kashubian orthography alongside Polish, where Ż represents a distinct consonant sound.
Polish place names, surnames, and brands that start with Ż must display correctly.
Multilingual websites, forms, and CMS content requiring correct Polish spelling.
Language learning apps, dictionaries, and pronunciation guides for Polish.
Design projects and publications that need accurate Central European diacritics.
Correct rendering so users can find content with Polish words containing Ż.
💡 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 Ż (dot above) from plain
Z, Ź (acute), and Ž (caron)
Don’t
- Substitute plain
Zwhen Ż is required for correct Polish spelling - Confuse Ż (dot above) with Ź (acute) or Ž (caron)
- Use the old incorrect CSS escape
\0017B—the correct value is\017B - Put CSS escape
\017Bin HTML text nodes - 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
\017BUnicode U+017B — LATIN CAPITAL LETTER Z WITH DOT ABOVE
Essential for Polish; lowercase is ż (U+017C, ż)
Previous: Uppercase Z Caron (Ž) Next: Uppercase Z Double Struck Capital
❓ Frequently Asked Questions
Ż (named), Ż (hex), Ż (decimal), or \017B in CSS content. All four methods render Ż correctly.U+017B (LATIN CAPITAL LETTER Z WITH DOT ABOVE). Latin Extended-A block. Hex 017B, decimal 379. Used in Polish and Kashubian. Lowercase form is U+017C (ż) with named entity ż.Ż), a distinct letter in the Polish alphabet. Z (U+005A) is the plain uppercase letter. They are different characters with different Unicode values.Ż is easier to read in hand-written HTML. Numeric codes are useful when generating markup programmatically. All produce the same character Ż.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
