Mathematical Bold Script Small H

๐“ฑ

Shortcodes

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

Unicode
U+1D4F1
HTML Code
𝓱
HEX Code
𝓱
CSS Code
\1D4F1
JS/JSON
\u1D4F1
Unix/C/PHP/JAVA
0x1D4F1
URL-encode
%F0%9D%93%B1

Customize Mathematical Bold Script Small H

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

๐“ฑ
  

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

Insert in HTML

1. Direct symbol:
<span>๐“ฑ</span>
HTML Code:
<span>&#120049;</span>
HEX Code:
<span>&#x1D4F1;</span>

Add with CSS

.mathematical-bold-script-small-h::before {
  content: '\\1D4F1';
}

Set it in JavaScript

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