Alef Symbol

Shortcodes

Copy useful codes for alef symbol ℵ to use in websites, apps, blogs, and docs.

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

Customize Alef Symbol

Customize ℵ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Alef Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ℵ</span>
HTML Code:
<span>&#9397;</span>
HTML Entity:
<span>&aleph;</span>
HEX Code:
<span>&#x2135;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.alef-symbol').textContent = 'ℵ';
copied