HTML Entity for Uppercase W Circumflex (Ŵ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0174

What You'll Learn

How to display the uppercase W with circumflex (Ŵ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This letter is essential in Welsh orthography as the capital form of ŵ, appearing at the start of words and in titles such as Gŵr (Man) and Trawsŵydd (Translator). It is U+0174 in the Latin Extended-A block.

Render it with Ŵ, Ŵ, Ŵ, or CSS escape \0174. The named entity Ŵ is often the most readable option. Do not confuse Ŵ (W circumflex) with plain W (U+0057).

⚡ Quick Reference — Uppercase W Circumflex Entity

Unicode U+0174

Latin Extended-A

Hex Code Ŵ

Hexadecimal reference

HTML Code Ŵ

Decimal reference

Named Entity Ŵ

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0174
Hex code       Ŵ
HTML code      Ŵ
Named entity   Ŵ
CSS code       \0174
Meaning        Latin capital letter W with circumflex
Also known as  W circumflex
Related        U+0175 = ŵ (ŵ)
Block          Latin Extended-A (U+0100–U+017F)
1

Complete HTML Example

A simple example showing the uppercase W circumflex (Ŵ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0174";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0174;</p>
<p>Symbol (decimal): &#372;</p>
<p>Symbol (named): &Wcirc;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase W circumflex (Ŵ) and the named entity &Wcirc; are supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase W circumflex (Ŵ) in Welsh and multilingual contexts:

Large glyphŴ
WelshGŵr, Trawsŵydd, Ŵyl
Named entity&Wcirc; renders as Ŵ
Lowercaseŵ (U+0175) — &wcirc;
Not the same asplain W (U+0057)  |  ʍ (turned w)  |  ŷ (w grave)
Numeric refs&#x0174; &#372; &Wcirc; \0174

🧠 How It Works

1

Hexadecimal Code

&#x0174; uses the Unicode hexadecimal value 0174 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#372; uses the decimal Unicode value 372 to display the same character. A common method for Latin Extended-A characters.

HTML markup
3

Named Entity

&Wcirc; is the standard named entity for Ŵ—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\0174 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: Ŵ. Unicode U+0174 sits in Latin Extended-A. Lowercase equivalent: U+0175 (ŵ). Do not confuse with plain W (U+0057).

Use Cases

The uppercase W circumflex (Ŵ) is commonly used in:

🇬🇧 Welsh

Capital form in words like Gŵr, Trawsŵydd, and Ŵyl. Essential for correct Welsh headlines and titles.

📝 Proper names

Welsh place names, surnames, and brands that capitalize words containing ŵ must use Ŵ at word starts.

🔤 Education

Welsh language courses, dictionaries, and learning materials teaching the circumflexed W in both cases.

🌐 Internationalization

Multilingual websites, forms, and CMS content requiring correct Welsh capitalization and typography.

📄 Headings & titles

Page titles, section headings, and navigation labels in Welsh that begin with the circumflexed W.

♿ Accessibility

Using the correct character with lang="cy" helps assistive technologies pronounce Welsh text correctly.

⚙ Programmatic HTML

When building HTML from Welsh data, using &Wcirc; or &#372; guarantees correct output.

💡 Best Practices

Do

  • Use &Wcirc; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type Ŵ directly in UTF-8 source
  • Set lang="cy" on Welsh content for correct pronunciation and SEO
  • Use fonts that support Latin Extended-A characters
  • Pair with lowercase ŵ (&wcirc;) when both cases appear in Welsh text

Don’t

  • Substitute plain W when Ŵ is required for correct Welsh spelling
  • Confuse Ŵ (circumflex) with ŷ (w grave) or ʍ (turned w)
  • Use the incorrect CSS escape \00174—the correct value is \0174
  • Put CSS escape \0174 in HTML text nodes
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render Ŵ; named entity is most readable

&#x0174; &#372; &Wcirc;
2

For CSS stylesheets, use the escape in the content property

\0174
3

Unicode U+0174 — LATIN CAPITAL LETTER W WITH CIRCUMFLEX

4

Essential for Welsh; lowercase is ŵ (U+0175, &wcirc;)

❓ Frequently Asked Questions

Use &Wcirc; (named), &#x0174; (hex), &#372; (decimal), or \0174 in CSS content. All four methods render Ŵ correctly.
U+0174 (LATIN CAPITAL LETTER W WITH CIRCUMFLEX). Latin Extended-A block. Hex 0174, decimal 372. Used primarily in Welsh. Lowercase form is U+0175 (ŵ) with named entity &wcirc;.
For Welsh words in uppercase (e.g. Gŵr, Trawsŵydd), Welsh language sites, headlines, proper nouns, and any text requiring correct Welsh spelling with the capital circumflexed W.
No. Ŵ (U+0174) is W with circumflex (&Wcirc;), a distinct letter in Welsh. Plain W (U+0057) has no accent. In Welsh, using the wrong character changes spelling.
The named entity &Wcirc; is easier to read in hand-written HTML. Numeric codes are useful when generating markup programmatically. All produce the same character Ŵ.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful