Greek Small Letter Psi

ψ

Shortcodes

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

Unicode
U+03C8
HTML Code
ψ
HTML Entity
ψ
HEX Code
ψ
CSS Code
\03C8
JS/JSON
\u03C8
Unix/C/PHP/JAVA
0x03C8
URL-encode
%CF%88

Customize Greek Small Letter Psi

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

ψ
  

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

Insert in HTML

1. Direct symbol:
<span>ψ</span>
HTML Code:
<span>&#968;</span>
HTML Entity:
<span>&psi;</span>
HEX Code:
<span>&#x3C8;</span>

Add with CSS

.greek-small-letter-psi::before {
  content: '\\03C8';
}

Set it in JavaScript

document.querySelector('.greek-small-letter-psi').textContent = 'ψ';
copied