Greek Small Letter Theta

θ

Shortcodes

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

Unicode
U+03B8
HTML Code
θ
HTML Entity
θ
HEX Code
θ
CSS Code
\03B8
JS/JSON
\u03B8
Unix/C/PHP/JAVA
0x03B8
URL-encode
%CE%B8

Customize Greek Small Letter Theta

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

θ
  

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

Insert in HTML

1. Direct symbol:
<span>θ</span>
HTML Code:
<span>&#952;</span>
HTML Entity:
<span>&theta;</span>
HEX Code:
<span>&#x3B8;</span>

Add with CSS

.greek-small-letter-theta::before {
  content: '\\03B8';
}

Set it in JavaScript

document.querySelector('.greek-small-letter-theta').textContent = 'θ';
copied