Latin Small Letter H With Stroke

ħ

Shortcodes

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

Unicode
U+0127
HTML Code
ħ
HEX Code
ħ
CSS Code
\0127
JS/JSON
\u0127
Unix/C/PHP/JAVA
0x127
URL-encode
%C4%A7

Customize Latin Small Letter H With Stroke

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

ħ
  

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

Insert in HTML

1. Direct symbol:
<span>ħ</span>
HTML Code:
<span>&#295;</span>
HEX Code:
<span>&#x0127;</span>

Add with CSS

.latin-small-letter-h-with-stroke::before {
  content: '\\0127';
}

Set it in JavaScript

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