HTML Entity for Lowercase V Reverse (ʌ)

What You'll Learn
How to display the lowercase v reverse (ʌ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is officially named LATIN SMALL LETTER TURNED V—a rotated v used in IPA for the open-mid back unrounded vowel [ʌ] (the “strut” vowel in English, as in but, cup, love). It is U+028C in the IPA Extensions block.
Render it with ʌ, ʌ, or CSS escape \028C. There is no named HTML entity for this character. Do not confuse ʌ (turned v) with plain v (U+0076) or ʋ (v with hook).
⚡ Quick Reference — Lowercase V Reverse Entity
U+028CIPA Extensions
ʌHexadecimal reference
ʌDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+028C
Hex code ʌ
HTML code ʌ
Named entity (none)
CSS code \028C
Meaning Latin small letter turned v (reverse v)
Also called Turned v
IPA Open-mid back unrounded vowel [ʌ]
Related U+0245 = Ʌ (uppercase turned v)
Block IPA Extensions (U+0250–U+02AF)Complete HTML Example
A simple example showing the lowercase v reverse (ʌ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\028C";
}
</style>
</head>
<body>
<p>Symbol (hex): ʌ</p>
<p>Symbol (decimal): ʌ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The lowercase v reverse (ʌ) is supported in modern browsers when the font includes IPA Extensions glyphs:
👀 Live Preview
See the lowercase v reverse (ʌ) in phonetic and content contexts:
v (U+0076) | ʋ (v with hook)🧠 How It Works
Hexadecimal Code
ʌ uses the Unicode hexadecimal value 028C to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ʌ uses the decimal Unicode value 652 to display the same character. A common method for IPA Extensions characters.
CSS Entity
\028C 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+028C sits in IPA Extensions. Do not confuse with plain v (U+0076) or ʋ (v with hook). Use IPA-capable fonts for reliable rendering.
Use Cases
The lowercase v reverse (ʌ) is commonly used in:
Represents the open-mid back unrounded vowel [ʌ]—the “strut” vowel in English (e.g. but, cup).
Phonetic transcription, dictionaries, and academic papers using IPA vowel symbols.
Language learning apps, pronunciation guides, and phonetics courses teaching IPA vowels.
Some African language writing systems use turned v in romanization.
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
\028Cin CSScontentwhen generating the symbol via pseudo-elements - Use fonts that support IPA Extensions (U+0250–U+02AF)
- Distinguish ʌ (turned v) from plain
vand ʋ (v hook)
Don’t
- Substitute plain
vwhen ʌ is required for IPA accuracy - Confuse ʌ (turned v vowel) with ʋ (v hook consonant)
- Use the old incorrect CSS escape
\0028C—the correct value is\028C - Expect a named HTML entity—none exists for ʌ
- Put CSS escape
\028Cin HTML text nodes
Key Takeaways
Type ʌ directly, or use hex/decimal references
ʌ ʌFor CSS stylesheets, use the escape in the content property
\028CUnicode U+028C — LATIN SMALL LETTER TURNED V
IPA strut vowel [ʌ]; uppercase is Ʌ (U+0245)
Previous: Lowercase V Latin (ͮ) Next: Lowercase W (w)
❓ Frequently Asked Questions
ʌ (hex), ʌ (decimal), or \028C in CSS content. There is no named HTML entity. In UTF-8 you can also type ʌ directly.U+028C (LATIN SMALL LETTER TURNED V). IPA Extensions block. Hex 028C, decimal 652. Also called turned v. Used in IPA for the open-mid back unrounded vowel [ʌ].ʌ or ʌ in HTML, or \028C in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
