HTML Entity for Lowercase V Reverse (ʌ)

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+028C

What Is the Lowercase V Reverse Entity?

Lowercase v reverse (ʌ) is the IPA Extensions character at Unicode U+028C (LATIN SMALL LETTER TURNED V). It looks like an upside-down v. In IPA it marks the open-mid back unrounded vowel [ʌ]. HTML5 defines no named entity for it.

Remember
Character     ʌ
Unicode       U+028C
Named entity  (none)
Hex entity    ʌ
Decimal       ʌ
CSS escape    \028C

All of these produce the same glyph: ʌ. Prefer a pasted ʌ in UTF-8 pages; use numeric or CSS forms when you need an escape.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterʌHTML text (UTF-8 default)
Named entitynoneNot defined in HTML5
Hex entityʌHTML markup
Decimal entityʌHTML markup
CSS escape\028CStylesheet content

When to Use Which

SituationUse
IPA / UTF-8 phonetic textType or paste ʌ
Numeric entity requiredʌ or ʌ
Generated text via ::before / ::aftercontent: "\028C"
Plain letter vType v (U+0076) — see Related Topics
Looking for a named formNone — use hex or decimal instead

Live Preview

Lowercase turned v rendered in common contexts.

IPA [ʌ]
Large glyph ʌ
Case pair Ʌ ʌ
With entities Hex: ʌ | Decimal: ʌ
Not the same v (U+0076)

Complete HTML Example

One page that shows lowercase turned v with hex, decimal, direct, and CSS forms. Use View Output or open the live editor.

Hex + Decimal + Direct + CSS

Four ways to produce ʌ in a single document (no named entity).

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Lowercase V Reverse (ʌ) in HTML</title>
  <style>
    #point::after {
      content: "\028C";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x028C;</p>
  <p>Using HTML Code: &#652;</p>
  <p>Using Direct Character: ʌ</p>
  <p id="point">Using CSS Entity: </p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+028C → &#x028C; in HTML. Reliable numeric form.

2. Decimal: same code point as 652 → &#652;. Same glyph.

3. Direct: paste ʌ in a UTF-8 file with <meta charset="UTF-8">.

4. CSS: use \028C in content (not an HTML entity). #point::after appends that ʌ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with the turned v entity.

Named

No named entity

HTML5 has no &... name for U+028C — use hex or decimal instead.

CSS vs HTML

Do not mix escapes

\028C belongs in CSS. &#x028C; / &#652; belong in HTML.

Look-alikes

Not plain v

Plain v is U+0076. This IPA letter is a turned (upside-down) v for [ʌ].

Case

ʌ vs Ʌ

Uppercase is U+0245 — a different code point from U+028C.

Semicolon

End references

Always finish with ; — write &#652;, not &#652.

UTF-8

Declare charset

If you paste ʌ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Lowercase turned v (U+028C) and its entity forms (&#x028C;, &#652;, CSS \\028C) are supported in all mainstream browsers.

✓ Universal support

Lowercase V Reverse (&#x028C;)

Paste ʌ, or encode with hex, decimal, or CSS escape — same glyph everywhere. No named entity.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+028C / entities Full support

Bottom line: Prefer a pasted ʌ in UTF-8 text. Use &#x028C; / &#652; when a numeric form is required, and \\028C only inside CSS content.

Key Takeaways

  • Unicode: turned v is U+028C (decimal 652), IPA Extensions.
  • HTML: no named entity — use &#x028C; or &#652;.
  • CSS: use \028C inside content for generated text.
  • Use: IPA [ʌ] — not the same as plain v.

One line: U+028C → &#x028C; / &#652; / CSS \028C (no named entity).

Frequently Asked Questions

Use &#x028C; (hex), &#652; (decimal), type ʌ in UTF-8, or the CSS escape \028C in content. There is no HTML5 named entity for U+028C.
U+028C (LATIN SMALL LETTER TURNED V). Hex 028C, decimal 652. It belongs to IPA Extensions and represents the open-mid back unrounded vowel [ʌ].
No. HTML5 does not define a named entity for this character. Use numeric references like &#652; or &#x028C; when you need an entity form.
Use it for IPA phonetic notation, linguistic examples, or CSS-generated content. Prefer a pasted ʌ in UTF-8 when possible.
HTML entities (&#652; or &#x028C;) go in markup. The CSS escape \028C is used in stylesheets (usually in the content property of ::before/::after). Both render ʌ.
Plain v is U+0076, a Basic Latin letter. ʌ (U+028C) is a turned (upside-down) v used as an IPA vowel symbol. Do not substitute one for another.

Did you know?

Lowercase v reverse (ʌ) is Unicode U+028C (decimal 652) — LATIN SMALL LETTER TURNED V in IPA Extensions. HTML5 has no named entity — use &#x028C; or &#652;. In IPA it is the open-mid back unrounded vowel [ʌ] (often called the strut vowel in English).

Next: Lowercase W

Learn the HTML entity for lowercase w — the next letter in this entity sequence.

Lowercase W tutorial →

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