Mathematical Double-struck Small X

๐•ฉ

Shortcodes

Copy useful codes for mathematical double-struck small x symbol ๐•ฉ to use in websites, apps, blogs, and docs.

Unicode
U+1D569
HTML Code
𝕩
HEX Code
𝕩
CSS Code
\1D569
JS/JSON
\u1D569
Unix/C/PHP/JAVA
0x1D569
URL-encode
%F0%9D%95%A9

Customize Mathematical Double-struck Small X

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

๐•ฉ
  

How to use Mathematical Double-struck Small X Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐•ฉ</span>
HTML Code:
<span>&#120169;</span>
HEX Code:
<span>&#x1D569;</span>

Add with CSS

.mathematical-double-struck-small-x::before {
  content: '\\1D569';
}

Set it in JavaScript

document.querySelector('.mathematical-double-struck-small-x').textContent = '๐•ฉ';
copied