HTML Entity for Uppercase V Reverse (Ʌ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+0245

What You'll Learn

How to display the uppercase v reverse (Ʌ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is officially named LATIN CAPITAL LETTER V WITH CURL (U+0245) in the Latin Extended-B block. It is commonly called turned V or reverse V—a rotated capital V used as the uppercase form paired with lowercase ʌ (U+028C) in IPA and linguistic notation.

Render it with Ʌ, Ʌ, or CSS escape \0245. There is no named HTML entity for this character. Do not confuse Ʌ with plain V (U+0056), Ʋ (v with hook), or the logical AND symbol ∧.

⚡ Quick Reference — Uppercase V Reverse Entity

Unicode U+0245

Latin Extended-B

Hex Code Ʌ

Hexadecimal reference

HTML Code Ʌ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0245
Hex code       Ʌ
HTML code      Ʌ
Named entity   (none)
CSS code       \0245
Meaning        Latin capital letter V with curl
Also called    Turned V, reverse V
Related        U+028C = ʌ (lowercase turned v)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase v reverse (Ʌ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\0245";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x0245;</p>
<p>Symbol (decimal): &#581;</p>
<p>Symbol (direct): Ʌ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase v reverse (Ʌ) is supported in modern browsers when the font includes Latin Extended-B glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase v reverse (Ʌ) in phonetic and content contexts:

Large glyphɅ
Case pairɅ (uppercase) / ʌ (lowercase turned v)
Unicode nameLatin capital letter V with curl
Also known asTurned V, reverse V, inverted V
Not the same asplain V (U+0056)  |  Ʋ (v with hook)  |  ∧ (logical AND)
Numeric refs&#x0245; &#581; \0245

🧠 How It Works

1

Hexadecimal Code

&#x0245; uses the Unicode hexadecimal value 0245 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#581; uses the decimal Unicode value 581 to display the same character. A common method for Latin Extended-B characters.

HTML markup
3

Direct Character

Type Ʌ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this precomposed letter.

HTML markup
4

CSS Entity

\0245 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All methods produce the glyph: Ʌ. Unicode U+0245 sits in Latin Extended-B. Lowercase equivalent: U+028C (ʌ). Do not confuse with plain V (U+0056) or Ʋ (v with hook).

Use Cases

The uppercase v reverse (Ʌ) is commonly used in:

🎤 IPA & Phonetics

Capital form of the turned v letter in phonetic notation and linguistic transcriptions.

📝 Linguistics & Phonology

Academic papers, dictionaries, and language documentation using extended Latin IPA letters.

🔤 Education

Language learning materials, pronunciation guides, and phonetics courses teaching IPA symbols.

🎨 Typography & Design

Creative layouts and font specimens showcasing turned/reverse V as a distinctive glyph.

📄 Academic Content

Character charts and linguistic resources requiring precise uppercase turned-v representation.

🌍 African Orthographies

Some romanization systems use turned v; uppercase Ʌ appears in titles and headings.

⚙ Programmatic HTML

When building HTML from phonetic data, using &#581; or &#x0245; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type Ʌ directly in UTF-8 source
  • Use numeric references (&#x0245; or &#581;) when escaping is required
  • Use \0245 in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support Latin Extended-B (U+0180–U+024F)
  • Pair with lowercase ʌ (U+028C) when both cases are needed in phonetic text

Don’t

  • Substitute plain V when Ʌ is required for linguistic accuracy
  • Confuse Ʌ (turned v) with Ʋ (v with hook) or ∧ (logical AND)
  • Use the incorrect CSS escape \00245—the correct value is \0245
  • Expect a named HTML entity—none exists for Ʌ
  • Put CSS escape \0245 in HTML text nodes

Key Takeaways

1

Type Ʌ directly, or use hex/decimal references

&#x0245; &#581;
2

For CSS stylesheets, use the escape in the content property

\0245
3

Unicode U+0245 — LATIN CAPITAL LETTER V WITH CURL

4

Also called turned/reverse V; lowercase is ʌ (U+028C)

❓ Frequently Asked Questions

Use &#x0245; (hex), &#581; (decimal), or \0245 in CSS content. There is no named HTML entity. In UTF-8 you can also type Ʌ directly.
U+0245 (LATIN CAPITAL LETTER V WITH CURL). Latin Extended-B block. Hex 0245, decimal 581. Also called turned V or reverse V. Lowercase form is U+028C (ʌ).
When displaying IPA notation in uppercase, linguistic transcriptions, pronunciation guides, academic publications, or design contexts requiring the turned/reverse V character.
Ʌ (U+0245) is turned/reverse V—LATIN CAPITAL LETTER V WITH CURL. Ʋ (U+01B2) is v with hook—a different extended Latin letter. They have different shapes and Unicode values.
No. Use &#581; or &#x0245; in HTML, or \0245 in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, symbols, and more.

All HTML Entities →

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