Fullwidth Latin Capital Letter Z

Shortcodes

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

Unicode
U+FF3A
HTML Code
Z
HEX Code
Z
CSS Code
\FF3A
JS/JSON
\uFF3A
Unix/C/PHP/JAVA
0xFF3A
URL-encode
%EF%BC%BA

Customize Fullwidth Latin Capital Letter Z

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

  

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

Insert in HTML

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

Add with CSS

.fullwidth-latin-capital-letter-z::before {
  content: '\\FF3A';
}

Set it in JavaScript

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