Mathematical Double-struck Digit Three

๐Ÿ›

Shortcodes

Copy useful codes for mathematical double-struck digit three symbol ๐Ÿ› to use in websites, apps, blogs, and docs.

Unicode
U+1D7DB
HTML Code
𝟛
HEX Code
𝟛
CSS Code
\1D7DB
JS/JSON
\u1D7DB
Unix/C/PHP/JAVA
0x1D7DB
URL-encode
%F0%9D%9F%9B

Customize Mathematical Double-struck Digit Three

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

๐Ÿ›
  

How to use Mathematical Double-struck Digit Three Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ›</span>
HTML Code:
<span>&#120795;</span>
HEX Code:
<span>&#x1D7DB;</span>

Add with CSS

.mathematical-double-struck-digit-three::before {
  content: '\\1D7DB';
}

Set it in JavaScript

document.querySelector('.mathematical-double-struck-digit-three').textContent = '๐Ÿ›';
copied