Mathematical Bold Small V

๐ฏ

Shortcodes

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

Unicode
U+1D42F
HTML Code
𝐯
HEX Code
𝐯
CSS Code
\1D42F
JS/JSON
\u1D42F
Unix/C/PHP/JAVA
0x1D42F
URL-encode
%F0%9D%90%AF

Customize Mathematical Bold Small V

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

๐ฏ
  

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

Insert in HTML

1. Direct symbol:
<span>๐ฏ</span>
HTML Code:
<span>&#119855;</span>
HEX Code:
<span>&#x1D42F;</span>

Add with CSS

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

Set it in JavaScript

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