Greek Capital Letter Theta

Θ

Shortcodes

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

Unicode
U+0398
HTML Code
Θ
HTML Entity
Θ
HEX Code
Θ
CSS Code
\0398
JS/JSON
\u0398
Unix/C/PHP/JAVA
0x0398
URL-encode
%CE%98

Customize Greek Capital Letter Theta

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

Θ
  

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

Insert in HTML

1. Direct symbol:
<span>Θ</span>
HTML Code:
<span>&#920;</span>
HTML Entity:
<span>&Theta;</span>
HEX Code:
<span>&#x398;</span>

Add with CSS

.greek-capital-letter-theta::before {
  content: '\\0398';
}

Set it in JavaScript

document.querySelector('.greek-capital-letter-theta').textContent = 'Θ';
copied