HTML Entity for Uppercase H Stroke (Ħ)

What You'll Learn
How to display the uppercase h with stroke (Ħ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Officially LATIN CAPITAL LETTER H WITH STROKE, this character is a distinct letter in the Maltese alphabet and is used in IPA for the voiceless pharyngeal fricative. It is U+0126 in the Latin Extended-A block.
Render it with Ħ, Ħ, Ħ, or CSS escape \0126. The named entity Ħ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase H Stroke Entity
U+0126Latin Extended-A
ĦHexadecimal reference
ĦDecimal reference
ĦMost readable option
Name Value
──────────── ──────────
Unicode U+0126
Hex code Ħ
HTML code Ħ
Named entity Ħ
CSS code \0126
Meaning Latin capital letter H with stroke
Related U+0127 = ħ (lowercase pair)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase h with stroke (Ħ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0126";
}
</style>
</head>
<body>
<p>Symbol (hex): Ħ</p>
<p>Symbol (decimal): Ħ</p>
<p>Symbol (named): Ħ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase h with stroke (Ħ) and the named entity Ħ are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the uppercase h with stroke (Ħ) in Maltese and linguistic contexts:
🧠 How It Works
Hexadecimal Code
Ħ uses the Unicode hexadecimal value 0126 to display the uppercase h with stroke. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ħ uses the decimal Unicode value 294 to display the same character. A common method for Latin Extended-A letters.
Named Entity
Ħ is the standard named entity for Ħ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\0126 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ħ. Unicode U+0126 sits in Latin Extended-A. Lowercase pair: U+0127 (ħ). Do not confuse with plain H (U+0048).
Use Cases
The uppercase h with stroke (Ħ) is commonly used in:
Maltese language websites, government pages, and apps requiring correct Ħ spelling.
IPA notation and pronunciation guides for the voiceless pharyngeal fricative.
Language research papers, documentation, and databases for Maltese orthography.
Scholarly publications discussing Maltese language or Semitic-influenced Latin script.
Educational websites and apps teaching Maltese pronunciation and alphabet.
Dictionary entries and pronunciation keys for Maltese or IPA content.
Official, educational, or EU language content that includes Maltese.
💡 Best Practices
Do
- Prefer
Ħfor readability when authoring HTML by hand - Serve pages as UTF-8; you can also type Ħ directly in UTF-8 source
- Use
lang="mt"on Maltese content for assistive technologies - Distinguish Ħ (H stroke) from plain
H(U+0048) and Ĥ (H circumflex) - Link to the lowercase pair
ħ(ħ) when documenting both forms
Don’t
- Substitute plain
Hin Maltese words that require Ħ - Put CSS escape
\0126in HTML text nodes - Use padded Unicode notation like U+00126—the correct value is
U+0126 - Use
\00126in CSS—the correct escape is\0126 - Assume every font renders Latin Extended-A glyphs identically
Key Takeaways
Four references render Ħ; named entity is most readable
Ħ Ħ ĦFor CSS stylesheets, use the escape in the content property
\0126Unicode U+0126 — LATIN CAPITAL LETTER H WITH STROKE
Maltese alphabet letter; pair with ħ (U+0127)
Previous: Uppercase H Script (ℋ) Next: Uppercase Hu Hwair
❓ Frequently Asked Questions
Ħ (named), Ħ (hex), Ħ (decimal), or \0126 in CSS content. All four methods render Ħ correctly.U+0126 (LATIN CAPITAL LETTER H WITH STROKE). Latin Extended-A block. Hex 0126, decimal 294. Used in Maltese and IPA for the voiceless pharyngeal fricative.Ħ or Ħ) or the named entity Ħ is used in HTML content. The CSS entity (\0126) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ħ but in different contexts.ħ (ħ) for the lowercase form.Explore More HTML Entities!
Discover 1500+ HTML character references — accented letters, symbols, and more.
8 people found this page helpful
