HTML Entity for Lowercase H Latin (ͪ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+036A

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

Unicode U+036A

Combining Diacritical Marks

Hex Code ͪ

Hexadecimal reference

HTML Code ͪ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\036A";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x36A;</p>
<p>Symbol (decimal): &#874;</p>
<p id="point">Symbol (CSS): </p>
<p>Combining: p&#x36A;</p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The combining Latin small letter h (ͪ) and its numeric entity references are supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the combining Latin small letter h (ͪ) in phonetic and linguistic contexts:

Glyphͪ
Combining
TypeNonspacing combining mark
Not the same asplain h, ʰ (modifier ʰ), or ɦ (h hook)
Numeric refs&#x36A; &#874; \036A

🧠 How It Works

1

Hexadecimal Code

&#x36A; uses the Unicode hexadecimal value 36A to display the combining mark. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#874; uses the decimal Unicode value 874 to display the same character. A common method for combining diacritical marks.

HTML markup
3

CSS Entity

\036A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Combining behavior

All three methods produce ͪ. As a nonspacing combining character, it attaches to a preceding base character (e.g. p&#x36A;). 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:

🔤 Phonetic transcription

Notation where a small h modifies a base character (aspiration, palatalization, devoicing).

🔬 Linguistic notation

Linguistic papers, phonetics textbooks, and notation systems with combining marks.

📜 Medieval text

Medieval superscript letter diacritics in digitized manuscripts and critical editions.

📄 Language documentation

Dialect studies and documentation employing combining characters for phonetic detail.

📚 Dictionaries

Pronunciation or variant notation in dictionary entries using combining marks.

♿ Accessibility

Proper encoding helps assistive technologies when combining marks are used with a base character.

📄 Educational content

Demonstrating Combining Diacritical Marks in technical or educational material.

💡 Best Practices

Do

  • Place ͪ immediately after the base character it modifies (e.g. p&#x36A;)
  • 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 &#874; or &#x36A; 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 \036A in HTML text nodes
  • Assume all fonts stack combining marks identically

Key Takeaways

1

Three references render ͪ (no named entity)

&#x36A; &#874;
2

For CSS stylesheets, use the escape in the content property

\036A
3

Unicode U+036A — COMBINING LATIN SMALL LETTER H

4

Nonspacing combining mark; follows a base character (e.g. pͪ)

❓ Frequently Asked Questions

Use &#x36A; (hex), &#874; (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.
In phonetic transcriptions, linguistic notation (e.g. aspiration, palatalization, devoicing), medieval manuscript notation, and any content requiring this combining diacritical mark. It combines with a preceding base character and takes no additional horizontal space.
ͪ (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.
No. There is no named HTML entity for ͪ. Use &#874; or &#x36A; 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.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful