Greek Theta Symbol

ϑ

Shortcodes

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

Unicode
U+03D1
HTML Code
ϑ
HEX Code
ϑ
CSS Code
\03D1
JS/JSON
\u03D1
Unix/C/PHP/JAVA
0x03D1
URL-encode
%CF%91

Customize Greek Theta Symbol

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

ϑ
  

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

Insert in HTML

1. Direct symbol:
<span>ϑ</span>
HTML Code:
<span>&#977;</span>
HEX Code:
<span>&#x3D1;</span>

Add with CSS

.greek-theta-symbol::before {
  content: '\\03D1';
}

Set it in JavaScript

document.querySelector('.greek-theta-symbol').textContent = 'ϑ';
copied