Mathematical Script Capital V

๐’ฑ

Shortcodes

Copy useful codes for mathematical script capital v symbol ๐’ฑ to use in websites, apps, blogs, and docs.

Unicode
U+1D4B1
HTML Code
𝒱
HEX Code
𝒱
CSS Code
\1D4B1
JS/JSON
\u1D4B1
Unix/C/PHP/JAVA
0x1D4B1
URL-encode
%F0%9D%92%B1

Customize Mathematical Script Capital V

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

๐’ฑ
  

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

Insert in HTML

1. Direct symbol:
<span>๐’ฑ</span>
HTML Code:
<span>&#119985;</span>
HEX Code:
<span>&#x1D4B1;</span>

Add with CSS

.mathematical-script-capital-v::before {
  content: '\\1D4B1';
}

Set it in JavaScript

document.querySelector('.mathematical-script-capital-v').textContent = '๐’ฑ';
copied