HTML Entity for Uppercase H Double Struck (ℍ)

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

What You'll Learn

How to display the uppercase H double struck (ℍ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This mathematical symbol denotes the quaternions, a number system extending the complex numbers, commonly written as in equations such as q ∈ ℍ. It is U+210D in the Letterlike Symbols block (U+2100–U+214F).

Render it with ℍ, ℍ, ℍ, or CSS escape \210D. The named entity ℍ is often the most readable option in HTML source. See also math entities.

⚡ Quick Reference — Uppercase H Double Struck Entity

Unicode U+210D

Letterlike Symbols

Hex Code ℍ

Hexadecimal reference

HTML Code ℍ

Decimal reference

Named Entity ℍ

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+210D
Hex code       ℍ
HTML code      ℍ
Named entity   ℍ
CSS code       \210D
Meaning        Double-struck capital H (quaternions)
Related        U+0048 = plain H; U+0124 = Ĥ (H circumflex)
Block          Letterlike Symbols (U+2100–U+214F)
1

Complete HTML Example

A simple example showing the uppercase H double struck (ℍ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\210D";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x210D;</p>
<p>Symbol (decimal): &#8461;</p>
<p>Symbol (named): &Hopf;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase H double struck (ℍ) and the named entity &Hopf; are supported in all modern browsers:

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

👀 Live Preview

See the uppercase H double struck (ℍ) in mathematical notation:

Large glyph
Set notationℍ = quaternions (a + bi + cj + dk)
Named entity&Hopf; renders as ℍ
Not the same asplain H (U+0048)  |  Ĥ (H circumflex)
Numeric refs&#x210D; &#8461; &Hopf; \210D

🧠 How It Works

1

Hexadecimal Code

&#x210D; uses the Unicode hexadecimal value 210D to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8461; uses the decimal Unicode value 8461 to display the same character. A common method for Letterlike Symbols.

HTML markup
3

Named Entity

&Hopf; is the standard named entity for ℍ—readable in source HTML and part of the HTML5 entity set for blackboard bold letters.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce the glyph: . Unicode U+210D sits in Letterlike Symbols. Do not confuse with plain H (U+0048) or Ĥ (H circumflex, U+0124). Use math-friendly fonts for best rendering.

Use Cases

The uppercase H double struck (ℍ) is commonly used in:

🔢 Quaternions

Denote the quaternion number system ℍ in algebra, 3D rotation math, and physics.

📊 Set theory

Represent number systems alongside ℝ (reals), ℂ (complex), and ℤ (integers) in mathematical notation.

🎨 3D graphics

Documentation and tutorials on rotations using quaternion mathematics in game engines and graphics APIs.

📄 Academic publishing

Research papers, theses, and journal articles in mathematics, robotics, and theoretical physics.

📚 Educational content

Textbooks, online courses, and tutorials explaining quaternions and blackboard bold notation.

💻 Web math tools

Equation editors, calculators, and interactive math apps that render set notation in HTML.

🤖 Robotics

Orientation and kinematics documentation that uses quaternion algebra for spatial rotations.

💡 Best Practices

Do

  • Use &Hopf; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type ℍ directly in UTF-8 source
  • Use math-friendly fonts (e.g. Cambria Math, STIX Two Math) for clear double-struck rendering
  • Use fonts that support Letterlike Symbols characters
  • Distinguish ℍ (U+210D) from plain H (U+0048) and Ĥ (H circumflex)

Don’t

  • Substitute plain H when ℍ is required for correct mathematical notation
  • Confuse ℍ (double-struck) with Ĥ (H circumflex—different character)
  • Put CSS escape \210D in HTML text nodes
  • Assume all fonts render Letterlike Symbols identically
  • Omit UTF-8 encoding on pages with mathematical symbols

Key Takeaways

1

Four references render ℍ; named entity is most readable

&#x210D; &#8461; &Hopf;
2

For CSS stylesheets, use the escape in the content property

\210D
3

Unicode U+210D — DOUBLE-STRUCK CAPITAL H

4

Essential for quaternions, set theory, and mathematical content

❓ Frequently Asked Questions

Use &Hopf; (named), &#x210D; (hex), &#8461; (decimal), or \210D in CSS content. The named entity &Hopf; is the most readable for HTML content.
U+210D (DOUBLE-STRUCK CAPITAL H). Letterlike Symbols block. Hex 210D, decimal 8461. Commonly used to represent the quaternions.
When writing mathematical content, quaternion notation, set theory, academic papers, 3D graphics documentation, scientific materials, and any text requiring blackboard bold H notation.
HTML code (&#8461; or &#x210D;) or the named entity &Hopf; is used in HTML content. The CSS entity (\210D) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ℍ but in different contexts.
The uppercase H double struck (ℍ) represents the quaternions, a number system that extends complex numbers. Quaternions are used in 3D computer graphics, robotics, and theoretical physics. The double-struck (blackboard bold) style is a mathematical notation convention used to denote special sets and number systems.

Explore More HTML Entities!

Discover 1500+ HTML character references — math symbols, diacritics, 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