Latin Subscript Small Letter H

Shortcodes

Copy useful codes for latin subscript small letter h symbol ₕ to use in websites, apps, blogs, and docs.

Unicode
U+2095
HTML Code
ₕ
HEX Code
ₕ
CSS Code
\2095
JS/JSON
\u2095
Unix/C/PHP/JAVA
0x2095
URL-encode
%E2%82%95

Customize Latin Subscript Small Letter H

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

  

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

Insert in HTML

1. Direct symbol:
<span>ₕ</span>
HTML Code:
<span>&#8341;</span>
HEX Code:
<span>&#x2095;</span>

Add with CSS

.latin-subscript-small-letter-h::before {
  content: '\\2095';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-h').textContent = 'ₕ';
copied