HTML Entity for Uppercase Z Acute (Ź)

What You'll Learn
How to display the uppercase Z with acute accent (Ź) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Polish and Lower Sorbian text, it appears at the start of words such as Źle (wrong) and Źródło (source). It is U+0179 in the Latin Extended-A block.
Render it with Ź, Ź, Ź, or CSS escape \0179. The named entity Ź is often the most readable option. Do not confuse Ź (Z acute) with plain Z (U+005A) or Ž (Z caron, Ž).
⚡ Quick Reference — Uppercase Z Acute Entity
U+0179Latin Extended-A
ŹHexadecimal reference
ŹDecimal reference
ŹMost readable option
Name Value
──────────── ──────────
Unicode U+0179
Hex code Ź
HTML code Ź
Named entity Ź
CSS code \0179
Meaning Latin capital letter Z with acute
Also known as Z acute
Related U+017A = ź (ź)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase Z acute (Ź) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0179";
}
</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 acute (Ź) and the named entity Ź are supported in all modern browsers:
👀 Live Preview
See the uppercase Z acute (Ź) in Polish and multilingual contexts:
🧠 How It Works
Hexadecimal Code
Ź uses the Unicode hexadecimal value 0179 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ź uses the decimal Unicode value 377 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
\0179 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Use Cases
The uppercase Z acute (Ź) is commonly used in:
Essential in words like Źle (wrong) and Źródło (source). 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
\00179—the correct value is\0179 - Put CSS escape
\0179in 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
\0179Unicode U+0179 — LATIN CAPITAL LETTER Z WITH ACUTE
Essential for Polish and Lower Sorbian; lowercase is ź (U+017A, ź)
Previous: Uppercase Z (Z) Next: Uppercase Z Caron
❓ Frequently Asked Questions
Ź (named), Ź (hex), Ź (decimal), or \0179 in CSS content. All four methods render Ź correctly.U+0179 (LATIN CAPITAL LETTER Z WITH ACUTE). Latin Extended-A block. Hex 0179, decimal 377. Used in Polish and Lower Sorbian. Lowercase form is U+017A (ź) with named entity ź.Ź), used in Polish and Lower Sorbian. 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
