HTML Entity for Lowercase Z Acute (ź)

What You'll Learn
How to display the lowercase z with acute accent (ź) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Polish and Lower Sorbian text, it appears in words such as źle (badly/wrongly) and źdźbło (blade of grass). It is U+017A in the Latin Extended-A block.
Render it with ź, ź, ź, or CSS escape \017A. The named entity ź is often the most readable option. Do not confuse ź (z acute) with plain z (U+007A) or ž (z caron, ž).
⚡ Quick Reference — Lowercase Z Acute Entity
U+017ALatin Extended-A
źHexadecimal reference
źDecimal reference
źMost readable option
Name Value
──────────── ──────────
Unicode U+017A
Hex code ź
HTML code ź
Named entity ź
CSS code \017A
Meaning Latin small letter z with acute
Also known as z acute
Related U+0179 = Ź (Ź)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase z acute (ź) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\017A";
}
</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 z acute (ź) and the named entity ź are supported in all modern browsers:
👀 Live Preview
See the lowercase z acute (ź) in Polish and multilingual contexts:
🧠 How It Works
Hexadecimal Code
ź uses the Unicode hexadecimal value 017A to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ź uses the decimal Unicode value 378 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
\017A 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+017A sits in Latin Extended-A. Uppercase equivalent: U+0179 (Ź). Do not confuse with plain z (U+007A) or ž (z caron).
Use Cases
The lowercase z acute (ź) is commonly used in:
Essential in words like źle (badly/wrongly) and źdźbło (blade of grass). A distinct letter in the Polish alphabet.
Used in Lower Sorbian orthography where ź represents a distinct sound.
Polish place names, surnames, and brands that include ź must display correctly.
Language learning apps, dictionaries, and pronunciation guides teaching Polish and Slavic languages.
Multilingual websites, forms, and CMS content requiring correct Polish and Sorbian spelling.
Headlines, logos, and styled text requiring correct acute-accent spelling.
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 ź (acute) from plain
z, ž (caron), and ż (dot above)
Don’t
- Substitute plain
zwhen ź is required for correct Polish or Sorbian spelling - Confuse ź (acute) with ž (caron) or ż (z with dot above)
- Use the old incorrect CSS escape
\0017A—the correct value is\017A - Put CSS escape
\017Ain 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
\017AUnicode U+017A — LATIN SMALL LETTER Z WITH ACUTE
Essential for Polish and Lower Sorbian; uppercase is Ź (U+0179, Ź)
Previous: Lowercase Z (z) Next: Lowercase Z Caron (ž)
❓ Frequently Asked Questions
ź (named), ź (hex), ź (decimal), or \017A in CSS content. All four methods render ź correctly.U+017A (LATIN SMALL LETTER Z WITH ACUTE). Latin Extended-A block. Hex 017A, decimal 378. Used in Polish, Lower Sorbian, and other languages. Uppercase form is U+0179 (Ź) with named entity Ź.ź), used in Polish and Lower Sorbian. z (U+007A) is the plain lowercase 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
