HTML Entity for Lowercase Z Caron (ž)

What You'll Learn
How to display the lowercase 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 in words such as život (life) and žena (woman). It is U+017E 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 \017E. The named entity ž is often the most readable option. Do not confuse ž (z caron) with plain z (U+007A) or ź (z acute, ź).
⚡ Quick Reference — Lowercase Z Caron Entity
U+017ELatin Extended-A
žHexadecimal reference
žDecimal reference
žMost readable option
Name Value
──────────── ──────────
Unicode U+017E
Hex code ž
HTML code ž
Named entity ž
CSS code \017E
Meaning Latin small letter z with caron
Also known as z caron, z hacek
Related U+017D = Ž (Ž)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase z caron (ž) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\017E";
}
</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 caron (ž) and the named entity ž are supported in all modern browsers:
👀 Live Preview
See the lowercase z caron (ž) in Czech and Slavic language contexts:
🧠 How It Works
Hexadecimal Code
ž uses the Unicode hexadecimal value 017E to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ž uses the decimal Unicode value 382 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
\017E 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+017E sits in Latin Extended-A. Uppercase equivalent: U+017D (Ž). Do not confuse with plain z (U+007A) or ź (z acute).
Use Cases
The lowercase z caron (ž) is commonly used in:
Essential in words like život (life), žena (woman), and žlutý (yellow). A distinct letter in the Czech alphabet.
Used in Slovak orthography where ž represents a distinct consonant sound.
Part of the Slovenian alphabet; required for correct spelling in Slovenian text.
Slavic place names, surnames, and brands that include ž must display correctly.
Language learning apps, dictionaries, and pronunciation guides teaching Slavic languages.
Multilingual websites, forms, and CMS content requiring correct Central European spelling.
Correct rendering so users can find content with Czech and Slavic 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="cs"orlang="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
zwhen ž is required for correct Czech or Slavic spelling - Confuse ž (caron) with ź (acute) or ż (z with dot above)
- Use the old incorrect CSS escape
\0017E—the correct value is\017E - Put CSS escape
\017Ein 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
\017EUnicode U+017E — LATIN SMALL LETTER Z WITH CARON
Essential for Czech, Slovak, Slovenian; uppercase is Ž (U+017D, Ž)
Previous: Lowercase Z Acute (ź) Next: Lowercase Z Curl (ʑ)
❓ Frequently Asked Questions
ž (named), ž (hex), ž (decimal), or \017E in CSS content. All four methods render ž correctly.U+017E (LATIN SMALL LETTER Z WITH CARON). Latin Extended-A block. Hex 017E, decimal 382. Used in Czech, Slovak, Slovenian, and other Slavic languages. Uppercase form is U+017D (Ž) with named entity Ž.ž), used in Czech, Slovak, and other Slavic languages. 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
