Mathematical Bold Script Capital Z

๐“ฉ

Shortcodes

Copy useful codes for mathematical bold script capital z symbol ๐“ฉ to use in websites, apps, blogs, and docs.

Unicode
U+1D4E9
HTML Code
𝓩
HEX Code
𝓩
CSS Code
\1D4E9
JS/JSON
\u1D4E9
Unix/C/PHP/JAVA
0x1D4E9
URL-encode
%F0%9D%93%A9

Customize Mathematical Bold Script Capital Z

Customize ๐“ฉ, download it as SVG or PNG, or copy the generated HTML snippet.

๐“ฉ
  

How to use Mathematical Bold Script Capital Z Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐“ฉ</span>
HTML Code:
<span>&#120041;</span>
HEX Code:
<span>&#x1D4E9;</span>

Add with CSS

.mathematical-bold-script-capital-z::before {
  content: '\\1D4E9';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-script-capital-z').textContent = '๐“ฉ';
copied