HTML Entity for Uppercase Z Caron (Ž)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+017D

What You'll Learn

How to display the uppercase Z with caron (Ž) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Essential for Czech, Slovak, Slovenian, and other Slavic languages, it appears at the start of words such as Život (life) and Žena (woman). It is U+017D in the Latin Extended-A block. The caron (háček) is the wedge-shaped diacritic common in Central European orthography.

Render it with Ž, Ž, Ž, or CSS escape \017D. The named entity Ž is often the most readable option. Do not confuse Ž (Z caron) with plain Z (U+005A) or Ź (Z acute, Ź).

⚡ Quick Reference — Uppercase Z Caron Entity

Unicode U+017D

Latin Extended-A

Hex Code Ž

Hexadecimal reference

HTML Code Ž

Decimal reference

Named Entity Ž

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+017D
Hex code       Ž
HTML code      Ž
Named entity   Ž
CSS code       \017D
Meaning        Latin capital letter Z with caron
Also known as  Z caron, Z hacek
Related        U+017E = ž (ž)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the uppercase Z caron (Ž) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\017D";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x017D;</p>
<p>Symbol (decimal): &#381;</p>
<p>Symbol (named): &Zcaron;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase Z caron (Ž) and the named entity &Zcaron; are supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase Z caron (Ž) in Czech and Slavic language contexts:

Large glyphŽ
CzechŽivot, Žena, Žlutý
Named entity&Zcaron; renders as Ž
Lowercasež (U+017E) — &zcaron;
Not the same asZ (plain)  |  Ź (Z acute)  |  Ż (Z with dot)
Numeric refs&#x017D; &#381; &Zcaron; \017D

🧠 How It Works

1

Hexadecimal Code

&#x017D; uses the Unicode hexadecimal value 017D to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#381; uses the decimal Unicode value 381 to display the same character. A common method for Latin Extended-A characters.

HTML markup
3

Named Entity

&Zcaron; is the standard named entity for Ž—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\017D is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ž. Unicode U+017D sits in Latin Extended-A. Lowercase equivalent: U+017E (ž). Do not confuse with plain Z (U+005A) or Ź (Z acute).

Use Cases

The uppercase Z caron (Ž) is commonly used in:

🇨🇿 Czech

Essential in words like Život (life), Žena (woman), and Žlutý (yellow). A distinct letter in the Czech alphabet.

🇸🇰 Slovak

Used in Slovak orthography where Ž represents a distinct consonant sound.

🇮🇷 Slovenian

Part of the Slovenian alphabet; required for correct spelling in Slovenian text.

📝 Proper names

Slavic place names, surnames, and brands that include Ž must display correctly.

🌐 Internationalization

Multilingual websites, forms, and CMS content requiring correct Central European spelling.

🔤 Education

Language learning apps, dictionaries, and pronunciation guides for Slavic languages.

🔍 Search & SEO

Correct rendering so users can find content with Czech and Slavic words containing Ž.

💡 Best Practices

Do

  • Use &Zcaron; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ž directly in UTF-8 source
  • Set lang="cs" or lang="sk" on Slavic content for correct pronunciation
  • Use fonts that support Latin Extended-A characters
  • Distinguish Ž (caron) from plain Z, Ź (acute), and Ż (dot above)

Don’t

  • Substitute plain Z when Ž is required for correct Czech or Slavic spelling
  • Confuse Ž (caron) with Ź (acute) or Ż (Z with dot above)
  • Use the old incorrect CSS escape \0017D—the correct value is \017D
  • Put CSS escape \017D in HTML text nodes
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Ž; named entity is most readable

&#x017D; &#381; &Zcaron;
2

For CSS stylesheets, use the escape in the content property

\017D
3

Unicode U+017D — LATIN CAPITAL LETTER Z WITH CARON

4

Essential for Czech and Slavic languages; lowercase is ž (U+017E, &zcaron;)

❓ Frequently Asked Questions

Use &Zcaron; (named), &#x017D; (hex), &#381; (decimal), or \017D in CSS content. All four methods render Ž correctly.
U+017D (LATIN CAPITAL LETTER Z WITH CARON). Latin Extended-A block. Hex 017D, decimal 381. Used in Czech, Slovak, Slovenian, and other Slavic languages. Lowercase form is U+017E (ž) with named entity &zcaron;.
For Czech, Slovak, Slovenian, and other Slavic language content, language learning sites, internationalized content, and any text requiring correct spelling with this caron-accented letter.
No. Ž (U+017D) is Z with caron (&Zcaron;), used in Czech, Slovak, Slovenian, and other Slavic orthographies. Z (U+005A) is the plain uppercase letter. They are different characters with different Unicode values.
The named entity &Zcaron; 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.

All HTML Entities →

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