Mathematical Script Small W

๐“Œ

Shortcodes

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

Unicode
U+1D4CC
HTML Code
𝓌
HEX Code
𝓌
CSS Code
\1D4CC
JS/JSON
\u1D4CC
Unix/C/PHP/JAVA
0x1D4CC
URL-encode
%F0%9D%93%8C

Customize Mathematical Script Small W

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

๐“Œ
  

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

Insert in HTML

1. Direct symbol:
<span>๐“Œ</span>
HTML Code:
<span>&#120012;</span>
HEX Code:
<span>&#x1D4CC;</span>

Add with CSS

.mathematical-script-small-w::before {
  content: '\\1D4CC';
}

Set it in JavaScript

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