Mathematical Bold Script Small D

๐“ญ

Shortcodes

Copy useful codes for mathematical bold script small d symbol ๐“ญ to use in websites, apps, blogs, and docs.

Unicode
U+1D4ED
HTML Code
𝓭
HEX Code
𝓭
CSS Code
\1D4ED
JS/JSON
\u1D4ED
Unix/C/PHP/JAVA
0x1D4ED
URL-encode
%F0%9D%93%AD

Customize Mathematical Bold Script Small D

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

๐“ญ
  

How to use Mathematical Bold Script Small D Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐“ญ</span>
HTML Code:
<span>&#120045;</span>
HEX Code:
<span>&#x1D4ED;</span>

Add with CSS

.mathematical-bold-script-small-d::before {
  content: '\\1D4ED';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-script-small-d').textContent = '๐“ญ';
copied