Mathematical Fraktur Small X

๐”ต

Shortcodes

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

Unicode
U+1D535
HTML Code
𝔵
HEX Code
𝔵
CSS Code
\1D535
JS/JSON
\u1D535
Unix/C/PHP/JAVA
0x1D535
URL-encode
%F0%9D%94%B5

Customize Mathematical Fraktur Small X

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

๐”ต
  

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

Insert in HTML

1. Direct symbol:
<span>๐”ต</span>
HTML Code:
<span>&#120117;</span>
HEX Code:
<span>&#x1D535;</span>

Add with CSS

.mathematical-fraktur-small-x::before {
  content: '\\1D535';
}

Set it in JavaScript

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