Mathematical Monospace Digit Zero

๐Ÿถ

Shortcodes

Copy useful codes for mathematical monospace digit zero symbol ๐Ÿถ to use in websites, apps, blogs, and docs.

Unicode
U+1D7F6
HTML Code
𝟶
HEX Code
𝟶
CSS Code
\1D7F6
JS/JSON
\u1D7F6
Unix/C/PHP/JAVA
0x1D7F6
URL-encode
%F0%9D%9F%B6

Customize Mathematical Monospace Digit Zero

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

๐Ÿถ
  

How to use Mathematical Monospace Digit Zero Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿถ</span>
HTML Code:
<span>&#120822;</span>
HEX Code:
<span>&#x1D7F6;</span>

Add with CSS

.mathematical-monospace-digit-zero::before {
  content: '\\1D7F6';
}

Set it in JavaScript

document.querySelector('.mathematical-monospace-digit-zero').textContent = '๐Ÿถ';
copied