Fullwidth Latin Capital Letter W

Shortcodes

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

Unicode
U+FF37
HTML Code
W
HEX Code
W
CSS Code
\FF37
JS/JSON
\uFF37
Unix/C/PHP/JAVA
0xFF37
URL-encode
%EF%BC%B7

Customize Fullwidth Latin Capital Letter W

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

  

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

Insert in HTML

1. Direct symbol:
<span>W</span>
HTML Code:
<span>&#65335;</span>
HEX Code:
<span>&#xFF37;</span>

Add with CSS

.fullwidth-latin-capital-letter-w::before {
  content: '\\FF37';
}

Set it in JavaScript

document.querySelector('.fullwidth-latin-capital-letter-w').textContent = 'W';
copied