Fullwidth Latin Capital Letter V

Shortcodes

Copy useful codes for fullwidth latin capital letter v symbol V to use in websites, apps, blogs, and docs.

Unicode
U+FF36
HTML Code
V
HEX Code
V
CSS Code
\FF36
JS/JSON
\uFF36
Unix/C/PHP/JAVA
0xFF36
URL-encode
%EF%BC%B6

Customize Fullwidth Latin Capital Letter V

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

  

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

Insert in HTML

1. Direct symbol:
<span>V</span>
HTML Code:
<span>&#65334;</span>
HEX Code:
<span>&#xFF36;</span>

Add with CSS

.fullwidth-latin-capital-letter-v::before {
  content: '\\FF36';
}

Set it in JavaScript

document.querySelector('.fullwidth-latin-capital-letter-v').textContent = 'V';
copied