Mathematical Bold Small W

๐ฐ

Shortcodes

Copy useful codes for mathematical bold small w symbol ๐ฐ to use in websites, apps, blogs, and docs.

Unicode
U+1D430
HTML Code
𝐰
HEX Code
𝐰
CSS Code
\1D430
JS/JSON
\u1D430
Unix/C/PHP/JAVA
0x1D430
URL-encode
%F0%9D%90%B0

Customize Mathematical Bold Small W

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

๐ฐ
  

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

Insert in HTML

1. Direct symbol:
<span>๐ฐ</span>
HTML Code:
<span>&#119856;</span>
HEX Code:
<span>&#x1D430;</span>

Add with CSS

.mathematical-bold-small-w::before {
  content: '\\1D430';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-small-w').textContent = '๐ฐ';
copied