Mathematical Script Small X

๐“

Shortcodes

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

Unicode
U+1D4CD
HTML Code
𝓍
HEX Code
𝓍
CSS Code
\1D4CD
JS/JSON
\u1D4CD
Unix/C/PHP/JAVA
0x1D4CD
URL-encode
%F0%9D%93%8D

Customize Mathematical Script Small X

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

๐“
  

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

Insert in HTML

1. Direct symbol:
<span>๐“</span>
HTML Code:
<span>&#120013;</span>
HEX Code:
<span>&#x1D4CD;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.mathematical-script-small-x').textContent = '๐“';
copied