HTML Entity for Lowercase H (h)

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

What You'll Learn

How to display the lowercase letter h in HTML using entity methods and direct character input. The letter h is the eighth letter of the Latin alphabet (U+0068) and is part of the Basic Latin block. It appears in every Western-language text, from body copy to form labels and code examples. In most cases you can type it directly; numeric or CSS entities are useful when escaping, generating content via CSS, or ensuring correct encoding.

This character can be displayed using the character itself, a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity like &h; for this letter.

⚡ Quick Reference — Lowercase H Entity

Unicode U+0068

Basic Latin (ASCII)

Hex Code h

Hexadecimal reference

HTML Code h

Decimal reference

Direct Character h

Type directly (no named entity)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0068
Hex code       h
HTML code      h
Named entity   (none — use h directly)
CSS code       \68
Meaning        Latin small letter h
Related        U+0048 = H (uppercase)
Block          Basic Latin (U+0000–U+007F)
1

Complete HTML Example

A simple example showing the lowercase letter h using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\68";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x68;</p>
<p>Symbol (decimal): &#104;</p>
<p>Symbol (direct): h</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The lowercase letter h (U+0068) is universally supported in all browsers and platforms as part of Basic Latin:

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

👀 Live Preview

See the lowercase letter h in common text contexts:

Large glyphh
Body textThe letter h appears in words like hello, help, and home.
LabelHistory, height, hotel
Alphabetf g h i j
Not the same as<h1>–<h6> heading tags (markup, not the character)
Numeric refs&#x68; &#104; \68

🧠 How It Works

1

Hexadecimal Code

&#x68; uses the Unicode hexadecimal value 68 to display the letter. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#104; uses the decimal Unicode value 104 to display the same character. This is the ASCII/Unicode decimal for h.

HTML markup
3

Direct Character

Type h directly in HTML. There is no named entity like &h;; the character itself is the standard approach in body text.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All methods produce the glyph: h. Unicode U+0068 sits in Basic Latin. The uppercase form is U+0048 (H). Do not confuse the character h with HTML heading elements <h1><h6>. In normal text, typing h is preferred.

Use Cases

The lowercase letter h (or its entity forms) is commonly used in:

📝 Body text

Standard character in paragraphs, articles, and any Latin-script text. Usually typed directly.

📄 Headings & titles

The letter h inside heading text (e.g., “History”, “Help”)—distinct from the <h1>–<h6> tags themselves.

🎨 CSS generated content

Using \68 in the CSS content property to insert h via ::before or ::after.

📚 Language & education

Essential for English and many other languages; used in language-learning and educational content.

⚙ Programmatic HTML

When building HTML in code, using &#104; or &#x68; ensures correct output regardless of encoding context.

♿ Accessibility

Correct character encoding ensures screen readers and assistive technologies read the letter properly.

🌐 Internationalization

Part of Basic Latin; supported in all major fonts and encoding standards for global content.

💡 Best Practices

Do

  • Type h directly in body content; use entities only when necessary
  • Serve pages as UTF-8 so Basic Latin characters render without entities
  • Use numeric references (&#x68; or &#104;) when escaping is required
  • Use \68 in CSS content when generating the letter via pseudo-elements
  • Remember lowercase h is U+0068 and uppercase H is U+0048 when case matters

Don’t

  • Overuse numeric entities for h in normal readable text
  • Expect a named HTML entity like &h;—none exists for this letter
  • Confuse the character h (U+0068) with HTML heading tags <h1><h6>
  • Put CSS escape \68 in HTML text nodes
  • Mix entity styles randomly in one file without reason

Key Takeaways

1

Type h directly, or use hex/decimal references

&#x68; &#104;
2

For CSS stylesheets, use the escape in the content property

\68
3

Unicode U+0068 — LATIN SMALL LETTER H

4

Eighth letter of the Latin alphabet (Basic Latin block)

❓ Frequently Asked Questions

Type h directly, or use &#x68; (hex), &#104; (decimal), or \68 in CSS content. For most content, typing h is standard; use numeric or CSS entities when escaping or generating via CSS.
U+0068 (LATIN SMALL LETTER H). Basic Latin block. Hex 68, decimal 104. It is the eighth letter of the Latin alphabet and a standard character in virtually all Western scripts.
For normal text, typing h is preferred. Use numeric or CSS entities when generating HTML programmatically, escaping in attributes, using CSS ::before/::after content, or ensuring encoding in legacy systems.
No. Named HTML entities (e.g. &amp;, &lt;) exist for a limited set of characters. The lowercase letter h has no named entity. Use the character directly or numeric references (&#x68; or &#104;) or CSS \68 when needed.
The letter h (U+0068) is the character you use inside content. The HTML elements <h1> through <h6> are heading tags that structure the page. They are unrelated: one is a character, the other is markup.

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