Mathematical Fraktur Small E

๐”ข

Shortcodes

Copy useful codes for mathematical fraktur small e symbol ๐”ข to use in websites, apps, blogs, and docs.

Unicode
U+1D522
HTML Code
𝔢
HEX Code
𝔢
CSS Code
\1D522
JS/JSON
\u1D522
Unix/C/PHP/JAVA
0x1D522
URL-encode
%F0%9D%94%A2

Customize Mathematical Fraktur Small E

Customize ๐”ข, download it as SVG or PNG, or copy the generated HTML snippet.

๐”ข
  

How to use Mathematical Fraktur Small E Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐”ข</span>
HTML Code:
<span>&#120098;</span>
HEX Code:
<span>&#x1D522;</span>

Add with CSS

.mathematical-fraktur-small-e::before {
  content: '\\1D522';
}

Set it in JavaScript

document.querySelector('.mathematical-fraktur-small-e').textContent = '๐”ข';
copied