Mathematical Script Small H

๐’ฝ

Shortcodes

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

Unicode
U+1D4BD
HTML Code
𝒽
HEX Code
𝒽
CSS Code
\1D4BD
JS/JSON
\u1D4BD
Unix/C/PHP/JAVA
0x1D4BD
URL-encode
%F0%9D%92%BD

Customize Mathematical Script Small H

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

๐’ฝ
  

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

Insert in HTML

1. Direct symbol:
<span>๐’ฝ</span>
HTML Code:
<span>&#119997;</span>
HEX Code:
<span>&#x1D4BD;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.mathematical-script-small-h').textContent = '๐’ฝ';
copied