Double-struck Capital H

Shortcodes

Copy useful codes for double-struck capital h symbol ℍ to use in websites, apps, blogs, and docs.

Unicode
U+210D
HTML Code
ℕ
HTML Entity
ℍ
HEX Code
ℍ
CSS Code
\210D
JS/JSON
\u210D
Unix/C/PHP/JAVA
0x210D
URL-encode
%E2%84%8D

Customize Double-struck Capital H

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

  

How to use Double-struck Capital H Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ℍ</span>
HTML Code:
<span>&#8469;</span>
HTML Entity:
<span>&Hopf;</span>
HEX Code:
<span>&#x210D;</span>

Add with CSS

.double-struck-capital-h::before {
  content: '\\210D';
}

Set it in JavaScript

document.querySelector('.double-struck-capital-h').textContent = 'ℍ';
copied