Fullwidth Latin Small Letter V

Shortcodes

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

Unicode
U+FF56
HTML Code
v
HEX Code
v
CSS Code
\FF56
JS/JSON
\uFF56
Unix/C/PHP/JAVA
0xFF56
URL-encode
%EF%BD%96

Customize Fullwidth Latin Small Letter V

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

  

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

Insert in HTML

1. Direct symbol:
<span>v</span>
HTML Code:
<span>&#65366;</span>
HEX Code:
<span>&#xFF56;</span>

Add with CSS

.fullwidth-latin-small-letter-v::before {
  content: '\\FF56';
}

Set it in JavaScript

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