HTML Entity for Uppercase Z (Z)

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

What Is Uppercase Z?

Uppercase Z (Z) is the Basic Latin character at Unicode U+005A (LATIN CAPITAL LETTER Z). You can type Z directly in HTML, or write it with a numeric character reference when you need an explicit entity form.

Remember
Character     Z
Unicode       U+005A
Hex entity    Z
Decimal       Z
CSS escape    \005A
Named entity  (none)
Official name LATIN CAPITAL LETTER Z

All of these produce the same glyph: Z. Related: Uppercase Z Acute (U+0179) and Lowercase Z (U+007A).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterZHTML text (UTF-8) — preferred
Hex entityZHTML markup
Decimal entityZHTML markup
CSS escape\005AStylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Normal body textType Z directly
Need an explicit entityZ or Z
Generated text via ::before / ::aftercontent: "\005A"
Capital Z with acuteUse Ź (U+0179)
Looking for a named entityNone for U+005A — use numeric form or type Z

Live Preview

Capital Z in common text contexts.

Large glyph Z
In a word ZIP · Zero · Zebra
Compared Z Ź z
Alphabet … X Y Z
With entities Hex: Z | Decimal: Z

Complete HTML Example

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

Hex + Decimal + Direct + CSS

All common ways to produce Z in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase Z</title>
  <style>
    #point::after {
      content: "\005A";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x5A;</p>
  <p>Using HTML Code: &#90;</p>
  <p>Using Direct Character: Z</p>
  <p id="point">Using CSS Entity: </p>
  <p>The letter Z ends the English alphabet.</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex / decimal: U+005A → &#x5A; or &#90; in HTML.

2. Direct: typing Z in a UTF-8 file is the simplest and preferred approach.

3. CSS: use \005A in content (not an HTML entity). The four-digit form avoids ambiguity with following hex digits.

4. Sentence: shows ordinary text use — no entity required for everyday letters.

Pitfalls & Tips

Common mistakes when working with this character.

Prefer

Type Z in body text

ASCII letters do not need entities for normal reading. Prefer typing Z directly.

Named?

No named entity

HTML5 does not define a named entity for U+005A. Use numeric forms when an entity is required.

Look-alikes

Not Z acute or yogh

Ordinary Z is U+005A. &Zacute; (U+0179) has an acute accent. Yogh Ȝ (U+021C) is a different historical letter.

Case

Use the correct case

Lowercase is z (U+007A). Do not mix case when casing matters for identifiers or display.

CSS

Pad the CSS escape

Use \005A (not bare \5A) so a following digit is not absorbed into the escape.

Semicolon

End references

Always finish with ; — write &#90;, not &#90.

Browser Support

Uppercase Z / LATIN CAPITAL LETTER Z (U+005A) and its numeric entity forms (&#x5A;, &#90;, CSS \\005A) are supported in all mainstream browsers as a core ASCII letter.

✓ Universal support

Uppercase Z

Prefer typing Z in UTF-8 HTML. Use hex, decimal, or CSS escape when you need an explicit form.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+005A / entities Full support

Bottom line: Prefer typing Z in body text. Use &#x5A; / &#90; when you need an entity, and \\005A only inside CSS content.

Key Takeaways

  • Unicode: this character is U+005A (decimal 90) — LATIN CAPITAL LETTER Z.
  • HTML: prefer typing Z, or use &#x5A; / &#90;.
  • CSS: use \005A inside content for generated text.
  • Watch out: no named entity; U+005A ≠ U+0179 (&Zacute;) ≠ U+021C (yogh).

One line: U+005A → type Z / &#x5A; / &#90; / CSS \005A.

Frequently Asked Questions

Type Z directly in UTF-8 HTML, or use &#x5A; (hex), &#90; (decimal), or the CSS escape \005A in the content property. All render U+005A.
U+005A (hex 5A, decimal 90). Unicode names it LATIN CAPITAL LETTER Z. It belongs to Basic Latin (ASCII) and is the twenty-sixth letter of the English alphabet.
No. ASCII letters like Z do not have named HTML entities in HTML5. Use numeric references like &#90; or &#x5A; when you need an entity form.
For normal body text, type Z directly. Use entities when generating content in CSS, when you want explicit encoding, or when escaping is required.
U+005A is ordinary capital Z. U+0179 is LATIN CAPITAL LETTER Z WITH ACUTE (Ź, &Zacute;). U+007A is lowercase z. They are different characters.
HTML entities (&#90; or &#x5A;) go in markup. The CSS escape \005A is used in stylesheets (usually in the content property of ::before/::after). Both render the same glyph.

Did you know?

Uppercase Z is Unicode U+005A (decimal 90) — official name LATIN CAPITAL LETTER Z in Basic Latin (ASCII). HTML5 has no named entity for it — typing Z directly is usually best. Do not confuse it with Z acute Ź (&Zacute;, U+0179) or yogh Ȝ (U+021C).

Next: Uppercase Z Acute

Learn the HTML entity for uppercase Z with acute (U+0179).

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