Mathematical Script Capital X

๐’ณ

Shortcodes

Copy useful codes for mathematical script capital x symbol ๐’ณ to use in websites, apps, blogs, and docs.

Unicode
U+1D4B3
HTML Code
𝒳
HEX Code
𝒳
CSS Code
\1D4B3
JS/JSON
\u1D4B3
Unix/C/PHP/JAVA
0x1D4B3
URL-encode
%F0%9D%92%B3

Customize Mathematical Script Capital X

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

๐’ณ
  

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

Insert in HTML

1. Direct symbol:
<span>๐’ณ</span>
HTML Code:
<span>&#119987;</span>
HEX Code:
<span>&#x1D4B3;</span>

Add with CSS

.mathematical-script-capital-x::before {
  content: '\\1D4B3';
}

Set it in JavaScript

document.querySelector('.mathematical-script-capital-x').textContent = '๐’ณ';
copied