Mathematical Bold Script Small V

๐“ฟ

Shortcodes

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

Unicode
U+1D4FF
HTML Code
𝓿
HEX Code
𝓿
CSS Code
\1D4FF
JS/JSON
\u1D4FF
Unix/C/PHP/JAVA
0x1D4FF
URL-encode
%F0%9D%93%BF

Customize Mathematical Bold Script Small V

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

๐“ฟ
  

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

Insert in HTML

1. Direct symbol:
<span>๐“ฟ</span>
HTML Code:
<span>&#120063;</span>
HEX Code:
<span>&#x1D4FF;</span>

Add with CSS

.mathematical-bold-script-small-v::before {
  content: '\\1D4FF';
}

Set it in JavaScript

document.querySelector('.mathematical-bold-script-small-v').textContent = '๐“ฟ';
copied