HTML Entity for Lowercase W Circumflex (ŵ)

What You'll Learn
How to display the lowercase w with circumflex (ŵ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This letter is essential in Welsh orthography, where ŵ represents a distinct vowel sound. It appears in words such as gŵr (man) and trawsŵydd (translator). It is U+0175 in the Latin Extended-A block.
Render it with ŵ, ŵ, ŵ, or CSS escape \0175. The named entity ŵ is often the most readable option. Do not confuse ŵ (w circumflex) with plain w (U+0077).
⚡ Quick Reference — Lowercase W Circumflex Entity
U+0175Latin Extended-A
ŵHexadecimal reference
ŵDecimal reference
ŵMost readable option
Name Value
──────────── ──────────
Unicode U+0175
Hex code ŵ
HTML code ŵ
Named entity ŵ
CSS code \0175
Meaning Latin small letter w with circumflex
Also known as w circumflex
Related U+0174 = Ŵ (Ŵ)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the lowercase w circumflex (ŵ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\0175";
}
</style>
</head>
<body>
<p>Symbol (hex): ŵ</p>
<p>Symbol (decimal): ŵ</p>
<p>Symbol (named): ŵ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase w circumflex (ŵ) and the named entity ŵ are supported in all modern browsers:
👀 Live Preview
See the lowercase w circumflex (ŵ) in Welsh and multilingual contexts:
w (U+0077) | ʍ (turned w) | ŷ (w grave)🧠 How It Works
Hexadecimal Code
ŵ uses the Unicode hexadecimal value 0175 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ŵ uses the decimal Unicode value 373 to display the same character. A common method for Latin Extended-A characters.
Named Entity
ŵ is the standard named entity for ŵ—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\0175 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ŵ. Unicode U+0175 sits in Latin Extended-A. Uppercase equivalent: U+0174 (Ŵ). Do not confuse with plain w (U+0077) or ʍ (turned w).
Use Cases
The lowercase w circumflex (ŵ) is commonly used in:
Essential in words like gŵr (man), trawsŵydd (translator), and ŵyl (festival). A distinct letter in Welsh orthography.
Welsh place names, surnames, and brands that include ŵ must display correctly for accurate spelling.
Welsh language learning apps, dictionaries, and pronunciation guides teaching the ŵ sound.
Multilingual websites, forms, and CMS content requiring correct Welsh spelling and typography.
Academic papers, character charts, and linguistic resources documenting Celtic languages.
Headlines, logos, and styled text in Welsh requiring correct circumflex spelling.
Correct rendering so users can find Welsh content (e.g. searching for “gŵr” or “trawsŵydd”).
💡 Best Practices
Do
- Use
ŵ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 - Use fonts that support Latin Extended-A characters
- Distinguish ŵ (circumflex) from plain
wand ʍ (turned w)
Don’t
- Substitute plain
wwhen ŵ is required for correct Welsh spelling - Confuse ŵ (circumflex) with ŷ (w grave) or ʍ (turned w)
- Use the old incorrect CSS escape
\00175—the correct value is\0175 - Put CSS escape
\0175in HTML text nodes - Omit UTF-8 encoding on pages with accented characters
Key Takeaways
Four references render ŵ; named entity is most readable
ŵ ŵ ŵFor CSS stylesheets, use the escape in the content property
\0175Unicode U+0175 — LATIN SMALL LETTER W WITH CIRCUMFLEX
Essential for Welsh; uppercase is Ŵ (U+0174, Ŵ)
Previous: Lowercase W (w) Next: Lowercase W Reverse (ʍ)
❓ Frequently Asked Questions
ŵ (named), ŵ (hex), ŵ (decimal), or \0175 in CSS content. All four methods render ŵ correctly.U+0175 (LATIN SMALL LETTER W WITH CIRCUMFLEX). Latin Extended-A block. Hex 0175, decimal 373. Used primarily in Welsh. Uppercase form is U+0174 (Ŵ) with named entity Ŵ.ŵ), a distinct letter in Welsh. Plain w (U+0077) has no accent. In Welsh, using the wrong character changes spelling and meaning.ŵ 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.
8 people found this page helpful
