Latin Subscript Small Letter V

Shortcodes

Copy useful codes for latin subscript small letter v symbol ᵥ to use in websites, apps, blogs, and docs.

Unicode
U+1D65
HTML Code
ᵥ
HEX Code
ᵥ
CSS Code
\1D65
JS/JSON
\u1D65
Unix/C/PHP/JAVA
0x1D65
URL-encode
%E1%B5%A5

Customize Latin Subscript Small Letter V

Customize ᵥ, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Latin Subscript Small Letter V Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ᵥ</span>
HTML Code:
<span>&#7525;</span>
HEX Code:
<span>&#x1D65;</span>

Add with CSS

.latin-subscript-small-letter-v::before {
  content: '\\1D65';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-v').textContent = 'ᵥ';
copied