Greek Small Letter Theta

θ

Shortcodes

Copy and paste codes for Greek Small Letter Theta symbol θ to use in your websites, apps, blogs, and more.

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

Customize Greek Small Letter Theta Symbol

Customize θ symbol as you like and download Greek Small Letter Theta as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
θ

                        
                    

How to add Greek Small Letter Theta symbol in HTML, CSS, and JS?

Insert θ Greek Small Letter Theta using HTML

1. Copy-paste Greek Small Letter Theta directly:
<span>θ</span>
2. HTML Decimal Code:
<span>&#952;</span>
3. HTML Entity:
<span>&theta;</span>
4. Hexadecimal Code:
<span>&#x3B8;</span>
Preview: θ

Add Greek Small Letter Theta symbol with CSS

.greek-small-letter-theta::before {
    content: '\\03B8';
}
Preview: Greek Small Letter Theta

Greek Small Letter Theta JavaScript Code

1. Direct Symbol:
document.querySelector('.greek-small-letter-theta').textContent = 'θ';
2. Unicode Escape for θ:
document.querySelector('.greek-small-letter-theta').textContent = '\u03B8';
Preview: θ