Modifier Letter Capital V

Shortcodes

Copy useful codes for modifier letter capital v symbol ⱽ to use in websites, apps, blogs, and docs.

Unicode
U+2C7D
HTML Code
ⱽ
HEX Code
ⱽ
CSS Code
\2C7D
JS/JSON
\u2C7D
Unix/C/PHP/JAVA
0x2C7D
URL-encode
%E2%B1%BD

Customize Modifier Letter Capital V

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

  

How to use Modifier Letter Capital V Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ⱽ</span>
HTML Code:
<span>&#11389;</span>
HEX Code:
<span>&#x2C7D;</span>

Add with CSS

.modifier-letter-capital-v::before {
  content: '\\2C7D';
}

Set it in JavaScript

document.querySelector('.modifier-letter-capital-v').textContent = 'ⱽ';
copied