HTML Entity for Lowercase H Stroke (ħ)

What You'll Learn
How to display the lowercase h with stroke (ħ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. Officially LATIN SMALL 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+0127 in the Latin Extended-A block.
Render it with ħ, ħ, ħ, or CSS escape \0127. All four methods are widely supported in modern browsers.
⚡ Quick Reference — Lowercase H Stroke Entity
U+0127Latin Extended-A
ħHexadecimal reference
ħDecimal reference
ħMost readable option
Name Value
──────────── ──────────
Unicode U+0127
Hex code ħ
HTML code ħ
Named entity ħ
CSS code \0127
Meaning Latin small letter h with stroke
Related U+0126 = H stroke (uppercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase 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: "\0127";
}
</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 lowercase h with stroke (ħ) and the named entity ħ are supported in all modern browsers:
👀 Live Preview
See the lowercase h with stroke (ħ) in Maltese and phonetic contexts:
🧠 How It Works
Named Entity
ħ is the HTML named entity for the lowercase h with stroke. It is easy to read and remember for Maltese and phonetic content.
Hexadecimal Code
ħ uses the Unicode hexadecimal value 0127 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ħ uses the decimal Unicode value 295 to display the same character. A common method for Latin Extended-A characters.
CSS Entity
\0127 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+0127 sits in Latin Extended-A. Do not confuse ħ (h stroke) with ɧ (h heng hook) or ĥ (h circumflex).
Use Cases
The lowercase h with stroke (ħ) is commonly used in:
Proper orthography in Maltese texts where ħ is a distinct letter in the alphabet.
Voiceless pharyngeal fricative in International Phonetic Alphabet notation.
Phonetics textbooks, linguistic papers, and phonetic notation.
Maltese learning apps, courses, and dictionaries with correct spelling.
Dictionary entries and pronunciation keys for Maltese or IPA content.
Proper encoding and lang="mt" help screen readers handle Maltese text.
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 ɧ (h heng hook) and ĥ (h circumflex)
- Pick one style (named, hex, or decimal) per project for consistency
Don’t
- Confuse ħ (
ħ) with ɧ (IPA h heng hook) - Substitute plain
hin Maltese words that require ħ - Put CSS escape
\0127in HTML text nodes - Assume every font renders Latin Extended-A glyphs identically
- Mix entity styles inconsistently within the same document
Key Takeaways
Four references render ħ
ħ ħ ħFor CSS stylesheets, use the escape in the content property
\0127Unicode U+0127 — LATIN SMALL LETTER H WITH STROKE
Maltese alphabet letter and IPA voiceless pharyngeal fricative
Previous: Lowercase H Reverse Fishhook Tailed (ʯ) Next: Lowercase I
❓ Frequently Asked Questions
ħ (named), ħ (hex), ħ (decimal), or \0127 in CSS content. All four methods render ħ correctly.U+0127 (LATIN SMALL LETTER H WITH STROKE). Latin Extended-A block. Hex 0127, decimal 295. Used in Maltese and IPA for the voiceless pharyngeal fricative.ħ. You can also use ħ, ħ, or \0127 in CSS content.U+0127, ħ) is the Latin small letter h with stroke, used in Maltese and IPA for the voiceless pharyngeal fricative. ɧ (U+0267) is the Latin small letter h with heng hook in IPA Extensions. They are different characters with different phonetic uses.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
