HTML Entity for Lowercase H Latin (ͪ)

What You'll Learn
How to display the combining Latin small letter h (ͪ) in HTML using hexadecimal, decimal, and CSS escape methods. This character (U+036A) is a nonspacing combining mark from the Combining Diacritical Marks block (medieval superscript letter diacritics), used in phonetic transcriptions and linguistic notation.
Render it with ͪ, ͪ, or CSS escape \036A. There is no named HTML entity. As a combining character, it typically follows a base character to form a composite glyph.
⚡ Quick Reference — Lowercase H Latin Entity
U+036ACombining Diacritical Marks
ͪHexadecimal reference
ͪDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+036A
Hex code ͪ
HTML code ͪ
Named entity (none)
CSS code \036A
Meaning Combining Latin small letter h
Type Combining mark (not standalone)
Block Combining Diacritical Marks (U+0300–U+036F)Complete HTML Example
A simple example showing the combining Latin small letter h (ͪ) using hexadecimal code, decimal HTML code, and a CSS content escape. The combining example shows it after a base letter:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\036A";
}
</style>
</head>
<body>
<p>Symbol (hex): ͪ</p>
<p>Symbol (decimal): ͪ</p>
<p id="point">Symbol (CSS): </p>
<p>Combining: pͪ</p>
</body>
</html>🌐 Browser Support
The combining Latin small letter h (ͪ) and its numeric entity references are supported in modern browsers:
👀 Live Preview
See the combining Latin small letter h (ͪ) in phonetic and linguistic contexts:
🧠 How It Works
Hexadecimal Code
ͪ uses the Unicode hexadecimal value 36A to display the combining mark. The x prefix indicates hexadecimal format.
Decimal HTML Code
ͪ uses the decimal Unicode value 874 to display the same character. A common method for combining diacritical marks.
CSS Entity
\036A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Combining behavior
All three methods produce ͪ. As a nonspacing combining character, it attaches to a preceding base character (e.g. pͪ). Do not confuse with plain h (U+0068) or spacing modifier ʰ (U+02B0). There is no named HTML entity.
Use Cases
The combining Latin small letter h (ͪ) is commonly used in:
Notation where a small h modifies a base character (aspiration, palatalization, devoicing).
Linguistic papers, phonetics textbooks, and notation systems with combining marks.
Medieval superscript letter diacritics in digitized manuscripts and critical editions.
Dialect studies and documentation employing combining characters for phonetic detail.
Pronunciation or variant notation in dictionary entries using combining marks.
Proper encoding helps assistive technologies when combining marks are used with a base character.
Demonstrating Combining Diacritical Marks in technical or educational material.
💡 Best Practices
Do
- Place ͪ immediately after the base character it modifies (e.g.
pͪ) - Serve pages as UTF-8; you can also type ͪ directly in UTF-8 source
- Use fonts that support combining diacritical marks for reliable rendering
- Use
ͪorͪin HTML (no named entity exists) - Test base + combining rendering across browsers and fonts
Don’t
- Assume a named entity exists—there is none for ͪ
- Confuse ͪ (combining h) with plain
h, ʰ (modifier ʰ), or ɦ (h hook) - Expect standalone ͪ to always display meaningfully without a base character
- Put CSS escape
\036Ain HTML text nodes - Assume all fonts stack combining marks identically
Key Takeaways
Three references render ͪ (no named entity)
ͪ ͪFor CSS stylesheets, use the escape in the content property
\036AUnicode U+036A — COMBINING LATIN SMALL LETTER H
Nonspacing combining mark; follows a base character (e.g. pͪ)
Previous: Lowercase H Hook (ɦ) Next: Lowercase H Reverse
❓ Frequently Asked Questions
ͪ (hex), ͪ (decimal), or \036A in CSS content. There is no named HTML entity. As a combining character, place it immediately after a base character for correct display.U+036A (COMBINING LATIN SMALL LETTER H). Combining Diacritical Marks block. Hex 36A, decimal 874. A nonspacing combining mark used in phonetic and linguistic notation.U+036A) is a nonspacing combining character—it attaches to a base character and does not take its own horizontal space. The regular Latin small letter h (U+0068) is a spacing character used in normal text.ͪ or ͪ in HTML, or \036A in CSS. This is standard for combining characters in Unicode.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
