Latin Capital Letter W With Circumflex

Ŵ

Shortcodes

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

Unicode
U+0174
HTML Code
Ŵ
HEX Code
Ŵ
CSS Code
\0174
JS/JSON
\u0174
Unix/C/PHP/JAVA
0x174
URL-encode
%C5%B4

Customize Latin Capital Letter W With Circumflex

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

Ŵ
  

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

Insert in HTML

1. Direct symbol:
<span>Ŵ</span>
HTML Code:
<span>&#372;</span>
HEX Code:
<span>&#x0174;</span>

Add with CSS

.latin-capital-letter-w-with-circumflex::before {
  content: '\\0174';
}

Set it in JavaScript

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