HTML Entity for Uppercase H (H)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+0048

What Is Uppercase H?

Uppercase H (H) is the Basic Latin character at Unicode U+0048 (LATIN CAPITAL LETTER H). It is the eighth letter of the Latin alphabet and a core ASCII character. You can type H directly in HTML, or write a numeric character reference when you need an explicit entity form.

Remember
Character     H
Unicode       U+0048
Hex entity    H
Decimal       H
CSS escape    \48
Named entity  (none)
Not the same  h · Η · Ȟ

Prefer typing H in normal page text. Use H / H for CSS content, generated markup, or when encoding must be explicit. For the lowercase pair see lowercase h; for H with caron see uppercase H caron.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterHHTML text (preferred)
Hex entityHHTML markup
Decimal entityHHTML markup
CSS escape\48Stylesheet content
Named entity—Not defined in HTML5
Lowercase pairh (U+0068)Small letter h

When to Use Which

SituationUse
Normal paragraphs, headings, labelsType H
Need an entity in HTML sourceH or H
Lowercase hUse h / h
H with caronUse uppercase H caron (U+021E)
Generated text via ::before / ::aftercontent: "\48"

Live Preview

Uppercase H rendered next to related letters.

Example The letter H follows G in the alphabet.
Large glyph H
Compared H   h   Η   Ȟ
With entities Hex: H | Decimal: H

Complete HTML Example

One page that shows Uppercase H with hex, decimal, typed character, and CSS escape. Use View Output or open the live editor.

Hex + Decimal + Typed + CSS

Four ways to produce H, plus a short alphabet sentence.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase H in HTML</title>
  <style>
    #point::after {
      content: "\48";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x48;</p>
  <p>Using HTML Code: &#72;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: H</p>
  <p>Example: The letter H follows G in the alphabet.</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex / decimal: U+0048 → &#x48; or &#72;. The browser turns either into H.

2. Typed: most keyboards can type H directly in UTF-8 HTML — usually the simplest option.

3. CSS: use \48 in content (not an HTML entity). #point::after appends that H after the paragraph text.

4. Example: write normal text with a typed H for everyday content.

Pitfalls & Tips

Common mistakes when working with Uppercase H.

Type it

Prefer the typed character

For body text, type H. Entities are useful for CSS escapes and generated content, not everyday paragraphs.

Named?

No named entity for plain H

HTML5 does not define &H;. Use &#x48; / &#72;, or type H.

Η

Not Greek Eta

&Eta; (U+0397) looks similar in many fonts but is a different script and code point.

Caron

Not H with caron

U+021E (Ȟ) is a different letter. See uppercase H caron.

CSS vs HTML

Do not mix escapes

\48 belongs in CSS strings. &#x48; / &#72; belong in HTML.

Case

Case is significant

H (U+0048) and h (U+0068) are different characters. Use the case your content requires.

Browser Support

Uppercase H (U+0048) and its entity forms (&#x48;, &#72;, CSS \\48) are supported in all mainstream browsers — it is core Basic Latin (ASCII).

✓ Universal support

Uppercase H (H)

Encode with hex, decimal, CSS escape, or type the character — same ASCII code point everywhere.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+0048 / entities Full support

Bottom line: Prefer typing H in HTML text. Use &#x48; / &#72; when you need an entity, and \\48 only inside CSS content.

Key Takeaways

  • Unicode: this letter is U+0048 (decimal 72) — glyph H.
  • HTML: type H, or use &#x48; / &#72; — no named entity.
  • CSS: use \48 inside content for generated text.
  • Watch out: plain H ≠ Greek &Eta; ≠ H caron Ȟ.

One line: U+0048 → type H / &#x48; / &#72; / CSS \48.

Frequently Asked Questions

Type H directly, or use &#x48; (hex), &#72; (decimal), or the CSS escape \48 in content. There is no named HTML entity for U+0048.
U+0048 (LATIN CAPITAL LETTER H). Hex 48, decimal 72. It belongs to Basic Latin (ASCII).
No. Plain ASCII letters do not have named HTML entities. Use numeric references like &#72; or &#x48; when you need an entity form.
Prefer typing H in normal page text. Use entities for CSS content, generated markup, or when encoding must be explicit.
HTML entities (&#72; or &#x48;) go in markup. The CSS escape \48 goes in stylesheet strings (usually content on ::before/::after).
No. H is Latin capital H (U+0048). Η is Greek capital Eta (&Eta;, U+0397). Ȟ is Latin capital H with caron (U+021E).

Did you know?

Uppercase H (H) is Unicode U+0048 (decimal 72) — LATIN CAPITAL LETTER H in Basic Latin (ASCII). HTML5 has no named entity for it — type H directly, or use &#x48; / &#72; when you need an entity form. Do not confuse it with Greek Eta (&Eta;, Η) or H with caron (U+021E).

Next: Uppercase H Caron

Learn the HTML entity for H with caron — next in this sequence.

Continue tutorial →

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