Latin Subscript Small Letter V

Shortcodes

Copy and paste codes for Latin Subscript Small Letter V symbol ᵥ to use in your websites, apps, blogs, and more.

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

Customize Latin Subscript Small Letter V Symbol

Customize ᵥ symbol as you like and download Latin Subscript Small Letter V as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Latin Subscript Small Letter V symbol in HTML, CSS, and JS?

Insert ᵥ Latin Subscript Small Letter V using HTML

1. Copy-paste Latin Subscript Small Letter V directly:
<span>ᵥ</span>
2. HTML Decimal Code:
<span>&#7525;</span>
3. Hexadecimal Code:
<span>&#x1D65;</span>
Preview:

Add Latin Subscript Small Letter V symbol with CSS

.latin-subscript-small-letter-v::before {
    content: '\\1D65';
}
Preview: Latin Subscript Small Letter V

Latin Subscript Small Letter V JavaScript Code

1. Direct Symbol:
document.querySelector('.latin-subscript-small-letter-v').textContent = 'ᵥ';
2. Unicode Escape for ᵥ:
document.querySelector('.latin-subscript-small-letter-v').textContent = '\u1D65';
Preview: