Mathematical Fraktur Small H

๐”ฅ

Shortcodes

Copy useful codes for mathematical fraktur small h symbol ๐”ฅ to use in websites, apps, blogs, and docs.

Unicode
U+1D525
HTML Code
𝔥
HEX Code
𝔥
CSS Code
\1D525
JS/JSON
\u1D525
Unix/C/PHP/JAVA
0x1D525
URL-encode
%F0%9D%94%A5

Customize Mathematical Fraktur Small H

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

๐”ฅ
  

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

Insert in HTML

1. Direct symbol:
<span>๐”ฅ</span>
HTML Code:
<span>&#120101;</span>
HEX Code:
<span>&#x1D525;</span>

Add with CSS

.mathematical-fraktur-small-h::before {
  content: '\\1D525';
}

Set it in JavaScript

document.querySelector('.mathematical-fraktur-small-h').textContent = '๐”ฅ';
copied