Latin Letter Small Capital H

ʜ

Shortcodes

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

Unicode
U+029C
HTML Code
ʜ
HEX Code
ʜ
CSS Code
\029C
JS/JSON
\u029C
Unix/C/PHP/JAVA
0x29C
URL-encode
%CA%9C

Customize Latin Letter Small Capital H

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

ʜ
  

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

Insert in HTML

1. Direct symbol:
<span>ʜ</span>
HTML Code:
<span>&#668;</span>
HEX Code:
<span>&#x029C;</span>

Add with CSS

.latin-letter-small-capital-h::before {
  content: '\\029C';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-h').textContent = 'ʜ';
copied