Fullwidth Latin Small Letter W

Shortcodes

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

Unicode
U+FF57
HTML Code
w
HEX Code
w
CSS Code
\FF57
JS/JSON
\uFF57
Unix/C/PHP/JAVA
0xFF57
URL-encode
%EF%BD%97

Customize Fullwidth Latin Small Letter W

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

  

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

Insert in HTML

1. Direct symbol:
<span>w</span>
HTML Code:
<span>&#65367;</span>
HEX Code:
<span>&#xFF57;</span>

Add with CSS

.fullwidth-latin-small-letter-w::before {
  content: '\\FF57';
}

Set it in JavaScript

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