HTML Entity for Dalet Symbol (ℸ)

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
U+2138Letterlike Symbols block
ℸHexadecimal reference
ℸDecimal reference
ℸMost readable option
Name Value
──────────── ──────────
Unicode U+2138
Hex code ℸ
HTML code ℸ
Named entity ℸ
CSS code \2138Complete 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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2138";
}
</style>
</head>
<body>
<p>Dalet Symbol using Hexadecimal: ℸ</p>
<p>Dalet Symbol using HTML Code: ℸ</p>
<p>Dalet Symbol using HTML Entity: ℸ</p>
<p id="point">Dalet Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Dalet symbol entity is supported in all modern browsers; use a font with Letterlike Symbols coverage for consistent display:
👀 Live Preview
See the Dalet symbol rendered live in different contexts:
🧠 How It Works
Named HTML Entity
ℸ is the semantic named entity for the Dalet symbol—the easiest to read in source HTML.
Hexadecimal Code
ℸ uses the Unicode hexadecimal value 2138. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℸ uses the decimal Unicode value 8504 to display the same character.
CSS Entity
\2138 is used in CSS stylesheets, particularly in the content property of ::before and ::after.
Same visual result
All four methods produce the Dalet symbol: ℸ. Unicode U+2138 is in Letterlike Symbols. For Hebrew script Dalet use ד (ד).
Use Cases
The Dalet symbol (ℸ) is commonly used in:
Notation that uses letterlike symbols for Hebrew letters in logic, set theory, or symbolic algebra.
Content on the Hebrew alphabet or symbolism where the letterlike Dalet (ℸ) appears alongside script ד.
Academic content on Semitic languages, character sets, and letterlike symbol references.
Reference pages and character maps listing Letterlike Symbols (U+2100–U+214F).
Tutorials on Hebrew letters, mathematical symbols, and HTML entities for letterlike characters.
HTML entity and typography documentation that includes the Dalet symbol (ℸ).
💡 Best Practices
Do
- Use
ℸ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
\2138only inside CSScontent
Don’t
- Confuse ℸ (letterlike) with ד (Hebrew script Dalet)
- Assume all fonts render ℸ identically
- Put CSS escape
\2138in HTML text nodes - Use HTML entities in JS (use
\u2138instead) - Mix entity styles randomly in one file
Key Takeaways
Four ways to render ℸ in HTML
ℸ ℸ ℸFor CSS stylesheets, use the escape in the content property
\2138Unicode U+2138 — Letterlike Symbols (U+2100–U+214F)
Prefer ℸ for readability in entity-heavy markup
Hebrew script Dalet is ד (ד), not ℸ
❓ Frequently Asked Questions
ℸ (named), ℸ (hex), ℸ (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.ℸ, ℸ, or ℸ) go in markup. The CSS escape \2138 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers.ℸ for ℸ; use ד or ד for ד.Explore More HTML Entities!
Discover 1500+ HTML character references — letterlike symbols, math operators, arrows, and more.
8 people found this page helpful
