Latin Capital Letter H With Stroke

Ħ

Shortcodes

Copy useful codes for latin capital letter h with stroke symbol Ħ to use in websites, apps, blogs, and docs.

Unicode
U+0126
HTML Code
Ħ
HEX Code
Ħ
CSS Code
\0126
JS/JSON
\u0126
Unix/C/PHP/JAVA
0x126
URL-encode
%C4%A6

Customize Latin Capital Letter H With Stroke

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

Ħ
  

How to use Latin Capital Letter H With Stroke Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>Ħ</span>
HTML Code:
<span>&#294;</span>
HEX Code:
<span>&#x0126;</span>

Add with CSS

.latin-capital-letter-h-with-stroke::before {
  content: '\\0126';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-h-with-stroke').textContent = 'Ħ';
copied