HTML Entity for Bet Symbol (ℶ)

What You'll Learn
How to display the Bet symbol (ℶ) in HTML and CSS. This character is U+2136 in the Letterlike Symbols block. In mathematics it denotes the beth hierarchy (ℶ0, ℶ1, …), a sequence of infinite cardinals related to power sets. It is the same Hebrew letter shape as beth, distinct from aleph (ℵ, U+2135).
You can write it as ℶ, ℶ, the named entity ℶ, or \2136 in CSS content. Pair subscripts with <sub> or Unicode subscripts for indices, and prefer math-friendly fonts so ℶ aligns with surrounding notation.
⚡ Quick Reference — Bet Symbol
U+2136Letterlike Symbols
ℶHexadecimal reference
ℶDecimal reference
ℶHTML5 named reference
Name Value
──────────── ──────────
Unicode U+2136
Hex code ℶ
HTML code ℶ
Named entity ℶ
CSS code \2136Complete HTML Example
This example shows the Bet symbol using hexadecimal and decimal character references, the ℶ named entity, and a CSS content escape on a pseudo-element:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2136";
}
</style>
</head>
<body>
<p>Bet Symbol using Hexa Decimal: ℶ</p>
<p>Bet Symbol using HTML Code: ℶ</p>
<p>Bet Symbol using HTML Entity: ℶ</p>
<p id="point">Bet Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+2136 and ℶ are supported wherever HTML5 named entities and Letterlike Symbols are available:
👀 Live Preview
See ℶ in context and beside the aleph glyph (different code point):
🧠 How It Works
Hexadecimal Code
ℶ references code point U+2136 using hex digits 2136 after the #x prefix.
Decimal HTML Code
ℶ is the decimal equivalent (8502) for the same Bet symbol.
Named Entity
ℶ (ampersand + beth + semicolon) is the HTML5 named character reference for U+2136.
CSS Escape
\2136 is the CSS escape for U+2136, used in the content property of ::before or ::after.
Same visual result
Hex, decimal, named, and CSS escapes all produce ℶ. Do not confuse with ℵ (aleph, U+2135).
Use Cases
The Bet symbol (ℶ) is commonly used for:
Cardinal arithmetic, power-set hierarchies, and statements involving beth numbers.
Lemma and theorem statements where the beth sequence is named explicitly.
Courses on infinity, ordinals, and the relationship between ℶα and 2ℵα (under GCH).
HTML-first journals and preprint pages that mix prose with letterlike math symbols.
Legend rows that spell out “beth” next to the glyph for first-time readers.
Inline posts where full TeX is overkill but ℶ must appear correctly in UTF-8 HTML.
Add visible text or aria-label (“beth”) when ℶ stands alone without nearby explanation.
💡 Best Practices
Do
- Use
ℶwhen readability of source matters; use numeric refs in generated or minified markup if you prefer - Pick math or serif stacks (
STIX Two Math,Cambria Math) so ℶ matches weight with ℵ and superscripts - Contrast ℶ with ℵ in prose the first time each symbol appears
- Keep
\2136inside stylesheets only, not pasted into HTML text - For complex formulas, layer MathML or a math renderer on top of simple HTML entities
Don’t
- Call ℶ “aleph” or interchange ℶ0 with ℵ0 without defining your convention
- Rely on a bare glyph alone in assessments; include words or numbers for clarity
- Assume every UI sans font matches journal-quality beth strokes
- Encode
ℶinside another attribute without escaping rules in mind (use numeric refs in tight attribute contexts if needed) - Forget subscript markup for indices when plain Unicode subscripts are unavailable
Key Takeaways
Four equivalent ways in HTML/CSS
ℶ ℶNamed entity and CSS escape
ℶ \2136U+2136 is beth; U+2135 is aleph (different meaning)
Letterlike Symbols block; common in set theory and cardinal notation
Expose “beth” in text or labels for readers who do not know the glyph by sight
❓ Frequently Asked Questions
ℶ (hex), ℶ (decimal), ℶ (named), or \2136 in CSS content. All render ℶ.U+2136 (hex 2136, decimal 8502). Letterlike Symbols. Used for beth numbers; aleph is the separate character U+2135 (ℵ).ℶ is easy to read in hand-written HTML. Numeric references are universal and copy well from Unicode charts. Functionally they are identical in the DOM.ℶ maps to U+2136. You can still use ℶ or ℶ if you standardize on numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
