Latin Small Letter W With Circumflex

ŵ

Shortcodes

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

Unicode
U+0175
HTML Code
ŵ
HEX Code
ŵ
CSS Code
\0175
JS/JSON
\u0175
Unix/C/PHP/JAVA
0x175
URL-encode
%C5%B5

Customize Latin Small Letter W With Circumflex

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

ŵ
  

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

Insert in HTML

1. Direct symbol:
<span>ŵ</span>
HTML Code:
<span>&#373;</span>
HEX Code:
<span>&#x0175;</span>

Add with CSS

.latin-small-letter-w-with-circumflex::before {
  content: '\\0175';
}

Set it in JavaScript

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