Alef Symbol

Shortcodes

Copy and paste codes for Alef Symbol ℵ to use in your websites, apps, blogs, and more.

Unicode
U+2135
HTML Code
⒵
HTML Entity
ℵ
HEX Code
ℵ
CSS Code
\2135
JS/JSON
\u2135
Unix/C/PHP/JAVA
0x2135
URL-encode
%E2%84%B5
copied

Customize Alef Symbol Symbol

Customize ℵ symbol as you like and download Alef Symbol as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Alef Symbol in HTML, CSS, and JS?

Insert ℵ Alef Symbol using HTML

1. Copy-paste Alef Symbol directly:
<span>ℵ</span>
2. HTML Decimal Code:
<span>&#9397;</span>
3. HTML Entity:
<span>&aleph;</span>
4. Hexadecimal Code:
<span>&#x2135;</span>
Preview:

Add Alef Symbol with CSS

.alef-symbol::before {
    content: '\\2135';
}
Preview: Alef Symbol

Alef Symbol JavaScript Code

1. Direct Symbol:
document.querySelector('.alef-symbol').textContent = 'ℵ';
2. Unicode Escape for ℵ:
document.querySelector('.alef-symbol').textContent = '\u2135';
Preview: