HTML Entity for Lowercase Z Acute (ź)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+017A

What Is the Lowercase Z Acute Entity?

Lowercase z acute (ź) is the Latin Extended-A character at Unicode U+017A (LATIN SMALL LETTER Z WITH ACUTE). It is the letter z with an acute accent (´) above — used in Polish, Lower Sorbian, and linguistic notation.

Remember
Character     ź
Unicode       U+017A
Named entity  ź
Hex entity    ź
Decimal       ź
CSS escape    \017A
Capital       Ź (Ź)

Named, hex, decimal, CSS, and a typed character all produce the same glyph: ź. Prefer ź in HTML source for clarity.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityźHTML markup (best default)
Hex entityźHTML markup
Decimal entityźHTML markup
CSS escape\017AStylesheet content
Direct characterźUTF-8 HTML text

When to Use Which

SituationUse
Readable HTML sourceź
Numeric entity requiredź or ź
Generated text via ::before / ::aftercontent: "\017A"
Capital ŹŹ — see Uppercase Z Acute
Z with caron žSee Lowercase Z Caron (ž)
Plain letter zSee Lowercase Z

Live Preview

Lowercase z acute in Polish and comparison contexts.

Polish sample źródło, więź
Large glyph ź
Named entity ź → ź
vs z / Ź / ž / ż ź  |  z  |  Ź  |  ž  |  ż
With entities Named: ź | Hex: ź | Decimal: ź

Complete HTML Example

One page that shows this character with named, hex, decimal, and CSS forms. Use View Output or open the live editor.

Named + Hex + Decimal + CSS

Four ways to produce ź in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase Z Acute (&zacute;)</title>
  <style>
    #point::after {
      content: "\017A";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &zacute;</p>
  <p>Using Hex Code: &#x17A;</p>
  <p>Using HTML Code: &#378;</p>
  <p id="point">Using CSS Entity: </p>
  <p lang="pl">Polish: &zacute;r&oacute;dło, wię&zacute;</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &zacute; is the clearest HTML form and renders ź.

2. Hex: U+017A → &#x17A; in HTML. Same result as the named entity.

3. Decimal: same code point as 378 → &#378;. Same result as hex.

4. CSS: use \017A in content (not an HTML entity). #point::after appends that ź after the paragraph text.

Pitfalls & Tips

Common mistakes when working with lowercase z acute.

Case

&zacute; ≠ &Zacute;

Named entities are case-sensitive. Lowercase is ź; uppercase is Ź.

Look-alikes

Not ž or ż

Acute is not caron or dot above. Do not confuse &zacute; with &zcaron; or &zdot;.

Compose

Prefer precomposed

Use &zacute; instead of z plus combining acute (U+0301) when the precomposed form exists.

CSS vs HTML

Do not mix escapes

\017A belongs in CSS. &zacute; / &#x17A; / &#378; belong in HTML.

Encoding

Declare UTF-8

If you type ź directly, keep <meta charset="UTF-8"> so the file is not misread.

Semicolon

End references

Always finish with ; — write &zacute;, not &zacute.

Browser Support

Lowercase z acute (U+017A) and its entity forms (&zacute;, &#x17A;, &#378;, CSS \\017A) are supported in all modern browsers.

✓ Universal encoding

Lowercase Z Acute (&zacute;)

Encode with named, hex, decimal, or CSS escape — or type ź directly in UTF-8 HTML.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+017A Full support

Bottom line: Prefer &zacute; for readable HTML. Use \\017A only inside CSS content.

Key Takeaways

  • Unicode: this character is U+017A (decimal 378).
  • HTML: prefer &zacute; — or use &#x17A; / &#378;.
  • CSS: use \017A inside content for generated text.
  • Watch out: &zacute; ≠ &Zacute; ≠ &zcaron; ≠ &zdot;.

One line: U+017A → &zacute; / &#x17A; / &#378; / CSS \017A.

Frequently Asked Questions

Use &zacute; (named), &#x17A; (hex), &#378; (decimal), or the CSS escape \017A in the content property. All render ź. Prefer &zacute; in HTML source.
U+017A (LATIN SMALL LETTER Z WITH ACUTE). Hex 17A, decimal 378. It belongs to Latin Extended-A (U+0100–U+017F).
Yes. &zacute; is the HTML5 named entity for ź. The capital form is &Zacute; (Ź, U+0179) — names are case-sensitive.
Use it for Polish, Lower Sorbian, and other text that needs ź, plus linguistic or internationalized pages.
HTML entities (&zacute;, &#378;, or &#x17A;) go in markup. The CSS escape \017A is used in stylesheets (usually in the content property of ::before/::after). Both render ź.
No. Z acute ź is U+017A (&zacute;). Z caron ž is U+017E (&zcaron;). Z with dot above ż is U+017C (&zdot;). Different diacritics — do not substitute one for another.

Did you know?

Lowercase z acute is Unicode U+017A (decimal 378) — LATIN SMALL LETTER Z WITH ACUTE in Latin Extended-A. HTML5 provides &zacute; — the most readable form. Capital is &Zacute; (Ź, U+0179). Used in Polish (źródło, więź), Lower Sorbian, and related orthographies. Not the same as plain z, z caron (&zcaron;), or z dot above (&zdot;).

Next: Lowercase Z Caron

Learn the HTML entity for lowercase z with caron — next in this sequence.

Continue tutorial →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful