Mathematical Double-struck Small Z

๐•ซ

Shortcodes

Copy useful codes for mathematical double-struck small z symbol ๐•ซ to use in websites, apps, blogs, and docs.

Unicode
U+1D56B
HTML Code
𝕫
HEX Code
𝕫
CSS Code
\1D56B
JS/JSON
\u1D56B
Unix/C/PHP/JAVA
0x1D56B
URL-encode
%F0%9D%95%AB

Customize Mathematical Double-struck Small Z

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

๐•ซ
  

How to use Mathematical Double-struck Small Z Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐•ซ</span>
HTML Code:
<span>&#120171;</span>
HEX Code:
<span>&#x1D56B;</span>

Add with CSS

.mathematical-double-struck-small-z::before {
  content: '\\1D56B';
}

Set it in JavaScript

document.querySelector('.mathematical-double-struck-small-z').textContent = '๐•ซ';
copied