Latin Small Letter W

w

Shortcodes

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

Unicode
U+0077
Alt Code
119
HTML Code
w
HEX Code
w
CSS Code
\0077
JS/JSON
\u0077
Unix/C/PHP/JAVA
0x77
URL-encode
w

Customize Latin Small Letter W

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

w
  

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

Insert in HTML

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

Add with CSS

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

Set it in JavaScript

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