Script Capital H

Shortcodes

Copy useful codes for script capital h symbol ℋ to use in websites, apps, blogs, and docs.

Unicode
U+210B
HTML Code
ℋ
HEX Code
ℋ
CSS Code
\210B
JS/JSON
\u210B
Unix/C/PHP/JAVA
0x210B
URL-encode
%E2%84%8B

Customize Script Capital H

Customize ℋ, download it as SVG or PNG, or copy the generated HTML snippet.

  

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

Insert in HTML

1. Direct symbol:
<span>ℋ</span>
HTML Code:
<span>&#8459;</span>
HEX Code:
<span>&#x210B;</span>

Add with CSS

.script-capital-h::before {
  content: '\\210B';
}

Set it in JavaScript

document.querySelector('.script-capital-h').textContent = 'ℋ';
copied