Modifier Letter Small Z

Shortcodes

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

Unicode
U+1DBB
HTML Code
ᶻ
HEX Code
ᶻ
CSS Code
\1DBB
JS/JSON
\u1DBB
Unix/C/PHP/JAVA
0x1DBB
URL-encode
%E1%B6%BB

Customize Modifier Letter Small Z

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᶻ</span>
HTML Code:
<span>&#7611;</span>
HEX Code:
<span>&#x1DBB;</span>

Add with CSS

.modifier-letter-small-z::before {
  content: '\\1DBB';
}

Set it in JavaScript

document.querySelector('.modifier-letter-small-z').textContent = 'ᶻ';
copied