HTML Entity for Lowercase W Reverse (ʍ)

What You'll Learn
How to display the lowercase w reverse (ʍ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is officially named LATIN SMALL LETTER TURNED W—a rotated w used in IPA for the labial-velar approximant [ʍ] (the voiceless counterpart to [w], as in the “wh” sound in English where and which in many pronunciations). It is U+028D in the IPA Extensions block.
Render it with ʍ, ʍ, or CSS escape \028D. There is no named HTML entity for this character. Do not confuse ʍ (turned w) with plain w (U+0077) or ŵ (w circumflex).
⚡ Quick Reference — Lowercase W Reverse Entity
U+028DIPA Extensions
ʍHexadecimal reference
ʍDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+028D
Hex code ʍ
HTML code ʍ
Named entity (none)
CSS code \028D
Meaning Latin small letter turned w (reverse w)
Also called Turned w
IPA Labial-velar approximant [ʍ]
Related [w] = plain w (U+0077)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the lowercase w reverse (ʍ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\028D";
}
</style>
</head>
<body>
<p>Symbol (hex): ʍ</p>
<p>Symbol (decimal): ʍ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase w reverse (ʍ) is supported in modern browsers when the font includes IPA Extensions glyphs:
👀 Live Preview
See the lowercase w reverse (ʍ) in phonetic and content contexts:
w (U+0077)w (U+0077) | ŵ (w circumflex) | ʷ (modifier letter small w)🧠 How It Works
Hexadecimal Code
ʍ uses the Unicode hexadecimal value 028D to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʍ uses the decimal Unicode value 653 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\028D is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ʍ. Unicode U+028D sits in IPA Extensions. Do not confuse with plain w (U+0077) or ŵ (w circumflex). Use IPA-capable fonts for reliable rendering.
Use Cases
The lowercase w reverse (ʍ) is commonly used in:
Represents the labial-velar approximant [ʍ]—voiceless w, as in English where and which in many transcriptions.
Phonetic transcription, dictionaries, and academic papers using IPA consonant symbols.
Language learning apps, pronunciation guides, and phonetics courses teaching IPA consonants.
Used in Hmong romanization systems and related linguistic documentation.
Character charts and linguistic resources requiring precise IPA representation.
Font specimens and design references showcasing IPA Extensions characters.
When building HTML from phonetic data, using ʍ or ʍ guarantees correct output.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type ʍ directly in UTF-8 source
- Use numeric references (
ʍorʍ) when escaping is required - Use
\028Din CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support IPA Extensions (U+0250–U+02AF)
- Distinguish ʍ (turned w) from plain
wand ŵ (w circumflex)
Don’t
- Substitute plain
wwhen ʍ is required for IPA accuracy - Confuse ʍ (turned w consonant) with ŵ (w circumflex vowel letter)
- Use the old incorrect CSS escape
\0028D—the correct value is\028D - Expect a named HTML entity—none exists for ʍ
- Put CSS escape
\028Din HTML text nodes
Key Takeaways
Type ʍ directly, or use hex/decimal references
ʍ ʍFor CSS stylesheets, use the escape in the content property
\028DUnicode U+028D — LATIN SMALL LETTER TURNED W
IPA labial-velar approximant [ʍ]; voiced pair is [w] (plain w)
Previous: Lowercase W Circumflex (ŵ) Next: Lowercase Wynn (ƿ)
❓ Frequently Asked Questions
ʍ (hex), ʍ (decimal), or \028D in CSS content. There is no named HTML entity. In UTF-8 you can also type ʍ directly.U+028D (LATIN SMALL LETTER TURNED W). IPA Extensions block. Hex 028D, decimal 653. Also called turned w. Used in IPA for the labial-velar approximant [ʍ].w (U+0077) is the standard Latin letter for [w] in everyday text. They are different characters with different Unicode values.ʍ or ʍ in HTML, or \028D in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
