Modifier Letter Small Theta

ᶿ

Shortcodes

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

Unicode
U+1DBF
HTML Code
ᶿ
HEX Code
ᶿ
CSS Code
\1DBF
JS/JSON
\u1DBF
Unix/C/PHP/JAVA
0x1DBF
URL-encode
%E1%B6%BF

Customize Modifier Letter Small Theta

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

ᶿ
  

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

Insert in HTML

1. Direct symbol:
<span>ᶿ</span>
HTML Code:
<span>&#7615;</span>
HEX Code:
<span>&#x1DBF;</span>

Add with CSS

.modifier-letter-small-theta::before {
  content: '\\1DBF';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-theta').textContent = 'ᶿ';
copied