Latin Capital Letter H With Circumflex

Ĥ

Shortcodes

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

Unicode
U+0124
HTML Code
Ĥ
HEX Code
Ĥ
CSS Code
\0124
JS/JSON
\u0124
Unix/C/PHP/JAVA
0x124
URL-encode
%C4%A4

Customize Latin Capital Letter H With Circumflex

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

Ĥ
  

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

Insert in HTML

1. Direct symbol:
<span>Ĥ</span>
HTML Code:
<span>&#292;</span>
HEX Code:
<span>&#x0124;</span>

Add with CSS

.latin-capital-letter-h-with-circumflex::before {
  content: '\\0124';
}

Set it in JavaScript

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