Latin Small Letter Z

z

Shortcodes

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

Unicode
U+007A
Alt Code
122
HTML Code
z
HEX Code
z
CSS Code
\007A
JS/JSON
\u007A
Unix/C/PHP/JAVA
0x7A
URL-encode
z

Customize Latin Small Letter Z

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

z
  

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

Insert in HTML

1. Direct symbol:
<span>z</span>
HTML Code:
<span>&#122;</span>
HEX Code:
<span>&#x007A;</span>

Add with CSS

.latin-small-letter-z::before {
  content: '\\007A';
}

Set it in JavaScript

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