Greek Capital Letter Zeta

Ζ

Shortcodes

Copy useful codes for greek capital letter zeta symbol Ζ to use in websites, apps, blogs, and docs.

Unicode
U+0396
HTML Code
Ζ
HEX Code
Ζ
CSS Code
\0396
JS/JSON
\u0396
Unix/C/PHP/JAVA
0x0396
URL-encode
%CE%96

Customize Greek Capital Letter Zeta

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

Ζ
  

How to use Greek Capital Letter Zeta Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ζ</span>
HTML Code:
<span>&#918;</span>
HEX Code:
<span>&#x396;</span>

Add with CSS

.greek-capital-letter-zeta::before {
  content: '\\0396';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-zeta').textContent = 'Ζ';
copied