Latin Capital Letter Z

Z

Shortcodes

Copy useful codes for latin capital letter z symbol Z to use in websites, apps, blogs, and docs.

Unicode
U+005A
Alt Code
90
HTML Code
Z
HEX Code
Z
CSS Code
\005A
JS/JSON
\u005A
Unix/C/PHP/JAVA
0x5A
URL-encode
Z

Customize Latin Capital Letter Z

Customize Z, download it as SVG or PNG, or copy the generated HTML snippet.

Z
  

How to use Latin Capital Letter Z Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Z</span>
HTML Code:
<span>&#90;</span>
HEX Code:
<span>&#x005A;</span>

Add with CSS

.latin-capital-letter-z::before {
  content: '\\005A';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-z').textContent = 'Z';
copied