Greek Small Letter Zeta

ζ

Shortcodes

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

Unicode
U+03B6
HTML Code
ζ
HTML Entity
ζ
HEX Code
ζ
CSS Code
\03B6
JS/JSON
\u03B6
Unix/C/PHP/JAVA
0x03B6
URL-encode
%CE%B6

Customize Greek Small Letter Zeta

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

ζ
  

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

Insert in HTML

1. Direct symbol:
<span>ζ</span>
HTML Code:
<span>&#950;</span>
HTML Entity:
<span>&zeta;</span>
HEX Code:
<span>&#x3B6;</span>

Add with CSS

.greek-small-letter-zeta::before {
  content: '\\03B6';
}

Set it in JavaScript

document.querySelector('.greek-small-letter-zeta').textContent = 'ζ';
copied