Mathematical Sans-serif Bold Italic Small Z

𝙯

Shortcodes

Copy useful codes for mathematical sans-serif bold italic small z symbol 𝙯 to use in websites, apps, blogs, and docs.

Unicode
U+1D66F
HTML Code
𝙯
HEX Code
𝙯
CSS Code
\1D66F
JS/JSON
\u1D66F
Unix/C/PHP/JAVA
0x1D66F
URL-encode
%F0%9D%99%AF

Customize Mathematical Sans-serif Bold Italic Small Z

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

𝙯
  

How to use Mathematical Sans-serif Bold Italic Small Z Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>𝙯</span>
HTML Code:
<span>&#120431;</span>
HEX Code:
<span>&#x1D66F;</span>

Add with CSS

.mathematical-sans-serif-bold-italic-small-z::before {
  content: '\\1D66F';
}

Set it in JavaScript

document.querySelector('.mathematical-sans-serif-bold-italic-small-z').textContent = '𝙯';
copied