HTML Entity for Alef Symbol (ℵ)

What You'll Learn
How to display the Alef symbol (ℵ) in HTML using numeric references, the standard named entity ℵ, or a CSS escape. Unicode assigns this code point the name Alef symbol (U+2135) in the Letterlike Symbols range; it is the glyph used for aleph cardinals in set theory (e.g. ℵ0, ℵ1 with subscripts).
Not the same as Hebrew body text: ordinary Hebrew words use the script letter U+05D0 (Hebrew letter alef). Use U+2135 when you need the standalone mathematical letterlike ℵ. You may write ℵ, ℵ, ℵ, or \2135 in CSS content.
⚡ Quick Reference — Alef Symbol Entity
U+2135Letterlike Symbols block
ℵHexadecimal reference
ℵDecimal reference
ℵReadable HTML form
Name Value
──────────── ──────────
Unicode U+2135
Hex code ℵ
HTML code ℵ
Named entity ℵ
CSS code \2135Complete HTML Example
This example shows the Alef 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: "\2135";
}
</style>
</head>
<body>
<p>Alef Symbol using Hexa Decimal: ℵ</p>
<p>Alef Symbol using HTML Code: ℵ</p>
<p>Alef Symbol using HTML Entity: ℵ</p>
<p id="point">Alef Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
Numeric references, ℵ, and CSS escapes for U+2135 are supported in all modern browsers. Final appearance depends on font coverage for the Letterlike Symbols block:
👀 Live Preview
See the Alef symbol rendered in typical contexts:
ℵ expands to the same ℵ as ℵ.🧠 How It Works
Hexadecimal Code
ℵ references Unicode 2135 in hexadecimal. The x prefix marks a hex numeric character reference.
Decimal HTML Code
ℵ is the decimal code point 8501 for the same character—often used when authors think in decimal Unicode values.
Named Entity
ℵ is the standard named entity for U+2135. It is easy to read in hand-written HTML and matches legacy math entity tables.
CSS Entity (Escape)
\2135 is the CSS escape (four hex digits) used in content on ::before / ::after to emit ℵ without placing the raw character in HTML.
Same visual result
All methods render ℵ. Unicode is U+2135 (Letterlike Symbols, U+2100–U+214F). Official name: Alef symbol. For Hebrew words use U+05D0 (Hebrew letter alef), not this code point.
Use Cases
The Alef symbol (ℵ, U+2135) fits these kinds of content:
Aleph-zero, aleph-one, and related notation in lecture notes and math blogs (often with subscripts).
Logic, foundations of mathematics, and philosophy pages that cite cardinal arithmetic.
Demonstrating Letterlike Symbols coverage and named entity ℵ.
Glossary entries and diagrams where a single ℵ glyph is clearer than a bitmap.
Inline HTML next to MathML or KaTeX output for consistent character identity.
Book covers, posters, and branding that reference aleph notation in Latin layout.
Running Hebrew sentences use the Hebrew script block (e.g. U+05D0); use U+2135 for the letterlike math symbol only.
💡 Best Practices
Do
- Use UTF-8; prefer
ℵin hand-authored HTML when readability matters - Use numeric references in generated markup or strict XML pipelines if needed
- Combine ℵ with proper subscripts (
<sub>or Unicode sub digits) for aleph numbers - Test with math-friendly fonts (STIX, Latin Modern Math, etc.) for formulas
- Use
\2135only in CSScontent, not inside HTML text nodes
Don’t
- Use U+2135 for normal Hebrew spelling; use Hebrew letters in the Hebrew block instead
- Assume every UI font styles ℵ like a textbook math font
- Mix hex, decimal, and named forms at random in one template without a style guide
- Paste CSS escapes into HTML markup (they belong in stylesheets)
- Expose ℵ alone as the only explanation of deep cardinal concepts without plain-language context
Key Takeaways
Three HTML encodings render ℵ
ℵ ℵ ℵIn CSS, use the escape in content on pseudo-elements
\2135Unicode U+2135 (Alef symbol) in Letterlike Symbols
Distinct from U+05D0 (Hebrew letter alef) used in Hebrew text
Add context or alt text when ℵ carries mathematical meaning for diverse readers
❓ Frequently Asked Questions
ℵ (hex), ℵ (decimal), ℵ (named), or \2135 in CSS content. All produce ℵ.U+2135 (hex 2135, decimal 8501). Unicode’s official name is Alef symbol; it sits in the Letterlike Symbols block. Hebrew prose uses different code points (e.g. U+05D0).ℵ, ℵ, or ℵ. The CSS escape \2135 belongs in stylesheets, usually in the content property of ::before or ::after. Same glyph, different layers.ℵ refers to U+2135 in HTML. Numeric references remain portable in generated or XML-first workflows.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
