HTML Entity for Alef Symbol (ℵ)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+2135

What Is the Alef Symbol Entity?

Alef symbol (ℵ) is the Letterlike Symbols character at Unicode U+2135. It is the glyph used for aleph cardinals in mathematics (for example ℵ0 with a subscript). You can paste ℵ in UTF-8 HTML, use the named entity ℵ, or write a numeric character reference.

Remember
Character     ℵ
Unicode       U+2135
Hex entity    ℵ
Decimal       ℵ
Named entity  ℵ
CSS escape    \2135
Not the same  U+05D0 (Hebrew letter alef)

All of the entity forms above produce the same glyph: ℵ. Prefer ℵ in hand-written HTML. Do not use U+2135 for ordinary Hebrew text — use Hebrew letter alef (U+05D0) instead.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterℵHTML text (UTF-8)
Named entityℵHTML markup (most readable)
Hex entityℵHTML markup
Decimal entityℵHTML markup
CSS escape\2135Stylesheet content

When to Use Which

SituationUse
Math / set theory (aleph cardinals)ℵ or paste ℵ
Need a numeric referenceℵ or ℵ
Generated text via ::before / ::aftercontent: "\2135"
Hebrew words / paragraphsHebrew letter alef U+05D0 — not U+2135
Aleph-null style notation&alefsym;<sub>0</sub> (symbol + subscript)

Live Preview

Alef symbol rendered in common math contexts.

Inline text The cardinality of the naturals is ℵ0.
Large glyph ℵ
With subscripts ℵ0   ℵ1   ℵ2
Monospace CARD=ℵ (U+2135)
With entities Hex: ℵ | Decimal: ℵ | Named: ℵ

Complete HTML Example

One page that shows ℵ with hex, decimal, named entity, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + Named + CSS + Typed

Five ways to produce ℵ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Alef Symbol (ℵ) in HTML</title>
  <style>
    #point::after {
      content: "\2135";
    }
  </style>
</head>
<body>
  <p>Alef using Hex Code: &#x2135;</p>
  <p>Alef using HTML Code: &#8501;</p>
  <p>Alef using Named Entity: &alefsym;</p>
  <p id="point">Alef using CSS Entity: </p>
  <p>Typed directly: ℵ</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+2135 → &#x2135; in HTML. The browser turns it into ℵ.

2. Decimal: same code point as 8501 → &#8501;. Same result as hex.

3. Named: &alefsym; is the standard HTML name for U+2135 — clear in source.

4. CSS: use \2135 in content (not an HTML entity). #point::after appends that ℵ after the paragraph text.

5. Typed ℵ: fine in UTF-8 source. All five lines show the same glyph.

Pitfalls & Tips

Common mistakes when working with the Alef symbol entity.

Hebrew

Not for Hebrew prose

U+2135 is the math letterlike ℵ. Hebrew words need U+05D0 (א) and the Hebrew script block.

Named

Prefer &alefsym;

In hand-written HTML, the named entity is easier to read than &#8501;.

CSS vs HTML

Do not mix escapes

\2135 belongs in CSS. &alefsym; / &#x2135; / &#8501; belong in HTML.

Subscripts

ℵ₀ needs two parts

There is no single “aleph-null” entity. Combine ℵ with a subscript digit.

Fonts

Check Letterlike coverage

Some webfonts omit U+2135. Test math / body fonts for Letterlike Symbols.

Semicolon

End references

Always finish with ; — write &alefsym;, not &alefsym.

Browser Support

Alef symbol (U+2135) and its entity forms (&#x2135;, &#8501;, &alefsym;, CSS \\2135) are supported in all mainstream browsers. Glyph appearance depends on font coverage for the Letterlike Symbols block.

✓ Universal support

Alef Symbol (&#x2135;)

Paste ℵ, or encode with named, hex, decimal, or CSS escape — same glyph 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+2135 / entities Full support

Bottom line: Prefer &alefsym; in hand-written HTML. Use &#x2135; or &#8501; when a numeric form is clearer, and \\2135 only inside CSS content.

Key Takeaways

  • Unicode: Alef symbol is U+2135 (decimal 8501).
  • HTML: prefer &alefsym;, or use &#x2135; / &#8501;.
  • CSS: use \2135 inside content for generated text.
  • Math ≠ Hebrew: U+2135 is letterlike ℵ; U+05D0 is Hebrew alef.

One line: U+2135 → &alefsym; / &#x2135; / &#8501; / CSS \2135.

Frequently Asked Questions

Use &#x2135; (hex), &#8501; (decimal), &alefsym; (named), or the CSS escape \2135 in the content property. All render Alef symbol (ℵ). You can also paste ℵ directly if your file is UTF-8.
U+2135 (hex 2135, decimal 8501). Unicode names it Alef symbol. It belongs to the Letterlike Symbols block and is used for aleph cardinals in mathematics.
Yes. &alefsym; maps to U+2135. Prefer it in hand-written HTML; numeric forms are useful in generated markup or XML contexts.
Use U+2135 for the mathematical letterlike ℵ (e.g. ℵ₀ in set theory). Use U+05D0 (א) for normal Hebrew words and paragraphs — they are different characters.
HTML entities (&#8501;, &#x2135;, or &alefsym;) go in markup. The CSS escape \2135 is used in stylesheets (usually in the content property of ::before/::after). Both render ℵ.
Use ℵ (or &alefsym;) plus a subscript zero — for example &alefsym;<sub>0</sub> or ℵ&#8320;. Pair U+2135 with a subscript digit, not a single special “aleph-null” entity.

Did you know?

Alef symbol is Unicode U+2135 (decimal 8501) in the Letterlike Symbols block. HTML provides the named entity &alefsym;. It is not the same as Hebrew letter alef (U+05D0) used in Hebrew prose.

Next: Alembic

Learn the HTML entity for the alembic symbol (⚗) from the Miscellaneous Symbols block.

Alembic 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