Mathematical Bold Script Small X

๐”

Shortcodes

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

Unicode
U+1D501
HTML Code
𝔁
HEX Code
𝔁
CSS Code
\1D501
JS/JSON
\u1D501
Unix/C/PHP/JAVA
0x1D501
URL-encode
%F0%9D%94%81

Customize Mathematical Bold Script Small X

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

๐”
  

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

Insert in HTML

1. Direct symbol:
<span>๐”</span>
HTML Code:
<span>&#120065;</span>
HEX Code:
<span>&#x1D501;</span>

Add with CSS

.mathematical-bold-script-small-x::before {
  content: '\\1D501';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-script-small-x').textContent = '๐”';
copied