HTML Entity for Dalet Symbol (ℸ)

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

What You'll Learn

How to display the Dalet symbol (ℸ) in HTML using named, hexadecimal, decimal, and CSS entity methods. The Dalet symbol is U+2138 in the Letterlike Symbols block (U+2100–U+214F)—the letterlike or mathematical form of the Hebrew letter Dalet, used in mathematics, symbolism, and Hebrew-related notation.

This character can be rendered with the named entity ℸ, hexadecimal ℸ, decimal ℸ, or CSS escape \2138. Do not confuse with the Hebrew script letter Dalet (ד, U+05D3).

⚡ Quick Reference — Dalet Symbol

Unicode U+2138

Letterlike Symbols block

Hex Code ℸ

Hexadecimal reference

HTML Code ℸ

Decimal reference

Named Entity ℸ

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2138
Hex code       ℸ
HTML code      ℸ
Named entity   ℸ
CSS code       \2138
1

Complete HTML Example

This example demonstrates the Dalet symbol (ℸ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2138";
  }
 </style>
</head>
<body>
<p>Dalet Symbol using Hexadecimal: &#x2138;</p>
<p>Dalet Symbol using HTML Code: &#8504;</p>
<p>Dalet Symbol using HTML Entity: &daleth;</p>
<p id="point">Dalet Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Dalet symbol entity is supported in all modern browsers; use a font with Letterlike Symbols coverage for consistent display:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 3.2+

👀 Live Preview

See the Dalet symbol rendered live in different contexts:

Letterlike Dalet symbol: ℸ (U+2138)
vs Hebrew ℸ letterlike   ד script (U+05D3)
Math context Let ℸ denote a letterlike variable in set notation.
Large glyph
Monospace refs &daleth; &#x2138; &#8504; \2138

🧠 How It Works

1

Named HTML Entity

&daleth; is the semantic named entity for the Dalet symbol—the easiest to read in source HTML.

HTML markup
2

Hexadecimal Code

&#x2138; uses the Unicode hexadecimal value 2138. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#8504; uses the decimal Unicode value 8504 to display the same character.

HTML markup
4

CSS Entity

\2138 is used in CSS stylesheets, particularly in the content property of ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the Dalet symbol: . Unicode U+2138 is in Letterlike Symbols. For Hebrew script Dalet use &#x05D3; (ד).

Use Cases

The Dalet symbol (ℸ) is commonly used in:

📐 Mathematics

Notation that uses letterlike symbols for Hebrew letters in logic, set theory, or symbolic algebra.

📚 Hebrew & religious

Content on the Hebrew alphabet or symbolism where the letterlike Dalet (ℸ) appears alongside script ד.

🔤 Linguistics

Academic content on Semitic languages, character sets, and letterlike symbol references.

📄 Unicode docs

Reference pages and character maps listing Letterlike Symbols (U+2100–U+214F).

🎓 Education

Tutorials on Hebrew letters, mathematical symbols, and HTML entities for letterlike characters.

📖 Entity guides

HTML entity and typography documentation that includes the Dalet symbol (ℸ).

💡 Best Practices

Do

  • Use &daleth; for readable source markup
  • Use ℸ (U+2138) for letterlike/math contexts
  • Use ד (U+05D3) for actual Hebrew text
  • Choose fonts with Letterlike Symbols coverage
  • Use \2138 only inside CSS content

Don’t

  • Confuse ℸ (letterlike) with ד (Hebrew script Dalet)
  • Assume all fonts render ℸ identically
  • Put CSS escape \2138 in HTML text nodes
  • Use HTML entities in JS (use \u2138 instead)
  • Mix entity styles randomly in one file

Key Takeaways

1

Four ways to render ℸ in HTML

&daleth; &#x2138; &#8504;
2

For CSS stylesheets, use the escape in the content property

\2138
3

Unicode U+2138 — Letterlike Symbols (U+2100–U+214F)

4

Prefer &daleth; for readability in entity-heavy markup

5

Hebrew script Dalet is &#x05D3; (ד), not &daleth;

❓ Frequently Asked Questions

Use &daleth; (named), &#x2138; (hex), &#8504; (decimal), or \2138 in CSS content. All produce ℸ.
U+2138 (DALET SYMBOL). Letterlike Symbols block. Hex 2138, decimal 8504. Letterlike form of the Hebrew letter Dalet.
In mathematical notation, Hebrew-related content, religious or linguistic references, letterlike symbol documentation, and any content that needs ℸ rather than the Hebrew script character ד.
HTML entities (&daleth;, &#8504;, or &#x2138;) go in markup. The CSS escape \2138 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers.
Dalet symbol (U+2138) is letterlike/mathematical. Hebrew Dalet (U+05D3) is for Hebrew text. Use &daleth; for ℸ; use &#x05D3; or &#1491; for ד.

Explore More HTML Entities!

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