HTML Entity for Uppercase V Reverse (Ʌ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+0245

What Is Uppercase V Reverse?

Uppercase V reverse (Ʌ) is the Unicode character at U+0245 in Latin Extended-B. Official name: LATIN CAPITAL LETTER TURNED V — a capital V rotated 180°, used in IPA-style notation and linguistic transcription.

Remember
Character     Ʌ
Unicode       U+0245
Hex entity    Ʌ
Decimal       Ʌ
CSS escape    \0245
Named entity  (none)
Not the same  V · Ʋ · Λ

Prefer Ʌ or Ʌ in HTML markup. You can also type Ʌ in UTF-8. There is no named entity. For the lowercase IPA letter, use U+028C (ʌ).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterɅHTML text (UTF-8)
Hex entityɅHTML markup (preferred)
Decimal entityɅHTML markup
CSS escape\0245Stylesheet content
Named entity—Not defined in HTML5
Lowercase (related)ʌ (U+028C)Numeric only

When to Use Which

SituationUse
Capital turned V (Ʌ)Ʌ or Ʌ
Lowercase turned v (ʌ)ʌ (ʌ)
Plain capital VV (U+0056)
Capital V with hookƲ (U+01B2)
Greek capital lambdaΛ (U+039B) — different script
Generated text via ::before / ::aftercontent: "\0245"

Live Preview

Uppercase turned V rendered alone and next to related letters.

Large glyph Ʌ
Notation /Ʌ/
Compared Ʌ  |  V  |  ʌ
Hint Compare: Turned Ʌ | Plain V | Lower ʌ | Hook Ʋ | Lambda Λ
With entities Hex: Ʌ | Decimal: Ʌ

Complete HTML Example

One page that shows the letter with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce Ʌ, plus a short comparison note.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase V Reverse (Ʌ)</title>
  <style>
    #point::after {
      content: "\0245";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x0245;</p>
  <p>Using HTML Code: &#581;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: Ʌ</p>
  <p>Not V (plain capital V)</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+0245 → &#x0245; in HTML. The browser turns it into Ʌ.

2. Decimal: same code point as 581 → &#581;. Same result as hex.

3. CSS: use \0245 in content (not an HTML entity). #point::after appends that Ʌ after the paragraph text.

4. Typed / compare: paste Ʌ in UTF-8. Keep plain V (U+0056) as a different letter — do not fake a turn with CSS rotation on V when you need this code point.

5. No named entity: HTML5 does not define a name for U+0245 — use numeric references or type the character.

Pitfalls & Tips

Common mistakes when working with U+0245.

Named?

No named entity

HTML5 does not define a named entity for U+0245. Use &#x0245; or &#581;.

vs V

Not plain capital V

Keyboard V is U+0056. Ʌ is a separate turned letter — not a CSS transform of V.

vs Λ

Not Greek lambda

Λ (U+039B) is Greek capital lambda. It can look similar, but it is a different script and code point.

Pair

Lowercase is U+028C

Small letter ʌ has no named entity either — use &#x028C; or &#652;.

CSS vs HTML

Do not mix escapes

\0245 belongs in CSS strings. &#x0245; / &#581; belong in HTML.

Fonts

Extended Latin coverage

Some UI fonts omit Latin Extended-B turned letters. Prefer a font with solid U+0180–U+024F coverage.

Browser Support

Uppercase V reverse (U+0245) and its entity forms (&#x0245;, &#581;, CSS \\0245) are supported in all mainstream browsers. Visible glyphs depend on Latin Extended-B font coverage.

✓ Universal support

Uppercase V Reverse (&#x0245;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes
U+0245 / entities Full support

Bottom line: Prefer &#x0245; or &#581; in HTML. Use \\0245 only inside CSS content. There is no named entity. Do not confuse with plain V, Ʋ, or Greek Λ.

Key Takeaways

  • Unicode: uppercase V reverse is U+0245 (decimal 581) — glyph Ʌ.
  • HTML: use &#x0245; or &#581; — no named entity; typing Ʌ also works.
  • CSS: use \0245 inside content for generated text.
  • Watch out: Ʌ ≠ plain V ≠ Ʋ ≠ Λ (lambda).

One line: U+0245 → &#x0245; / &#581; / CSS \0245.

Frequently Asked Questions

Use &#x0245; (hex), &#581; (decimal), type Ʌ directly in UTF-8, or the CSS escape \0245 in content. There is no named HTML entity.
U+0245 (LATIN CAPITAL LETTER TURNED V). Hex 0245, decimal 581. It belongs to Latin Extended-B (U+0180–U+024F).
No. HTML5 does not define a named entity for this character. Use numeric forms &#581; or &#x0245;.
No. Ʌ is U+0245 (turned Latin V). Plain V is U+0056. Λ is U+039B (Greek capital letter lambda).
Use it for IPA-style notation and linguistic text that needs a capital turned V — not as a substitute for plain V, V hook, or Greek lambda.
HTML entities (&#581; or &#x0245;) go in markup. The CSS escape \0245 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Uppercase V reverse (Ʌ) is Unicode U+0245 (decimal 581) — LATIN CAPITAL LETTER TURNED V in Latin Extended-B. HTML5 has no named entity — use &#x0245; or &#581;. Its lowercase IPA pair is U+028C (ʌ). Do not confuse it with plain V, V hook Ʋ, or Greek capital lambda Λ (U+039B).

Next: Uppercase W

Learn the HTML entity for uppercase W (U+0057).

Continue 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