Mathematical Fraktur Small Z

๐”ท

Shortcodes

Copy useful codes for mathematical fraktur small z symbol ๐”ท to use in websites, apps, blogs, and docs.

Unicode
U+1D537
HTML Code
𝔷
HEX Code
𝔷
CSS Code
\1D537
JS/JSON
\u1D537
Unix/C/PHP/JAVA
0x1D537
URL-encode
%F0%9D%94%B7

Customize Mathematical Fraktur Small Z

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

๐”ท
  

How to use Mathematical Fraktur Small Z Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐”ท</span>
HTML Code:
<span>&#120119;</span>
HEX Code:
<span>&#x1D537;</span>

Add with CSS

.mathematical-fraktur-small-z::before {
  content: '\\1D537';
}

Set it in JavaScript

document.querySelector('.mathematical-fraktur-small-z').textContent = '๐”ท';
copied