HTML Entity for Uppercase V Hook (Ʋ)

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

What You'll Learn

How to display the uppercase V with hook (Ʋ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01B2 (LATIN CAPITAL LETTER V WITH HOOK) in the Latin Extended-B block. It is the capital form paired with lowercase ʋ (U+028B) and appears in IPA notation, linguistic transcriptions, and some African language orthographies when uppercase is required.

Render it with Ʋ, Ʋ, or CSS escape \01B2. There is no named HTML entity for this character. In UTF-8 documents you can also type Ʋ directly. This is not plain V (U+0056)—it is a distinct precomposed Unicode letter with a hook diacritic.

⚡ Quick Reference — Uppercase V Hook Entity

Unicode U+01B2

Latin Extended-B

Hex Code Ʋ

Hexadecimal reference

HTML Code Ʋ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01B2
Hex code       Ʋ
HTML code      Ʋ
Named entity   (none)
CSS code       \01B2
Meaning        Latin capital letter V with hook
Related        U+028B = ʋ (lowercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the uppercase V hook (Ʋ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01B2";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01B2;</p>
<p>Symbol (decimal): &#434;</p>
<p>Symbol (direct): Ʋ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase V hook (Ʋ) is supported in all modern browsers as part of Latin Extended-B:

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

👀 Live Preview

See the uppercase V hook (Ʋ) in phonetic and content contexts:

Large glyphƲ
Case pairƲ (uppercase) / ʋ (lowercase)
Unicode nameLatin capital letter V with hook
IPA contextCapital form of the labiodental approximant letter in phonetic notation
Not the same asplain V (U+0056)  |  ʋ alone without case context  |  Ʌ (V with curl)
Numeric refs&#x01B2; &#434; \01B2

🧠 How It Works

1

Hexadecimal Code

&#x01B2; uses the Unicode hexadecimal value 01B2 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#434; uses the decimal Unicode value 434 to display the same character. A common method when a numeric reference is needed.

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

\01B2 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+01B2 sits in Latin Extended-B. Lowercase equivalent: U+028B (ʋ). Do not confuse with plain V (U+0056).

Use Cases

The uppercase V hook (Ʋ) is commonly used in:

🎤 IPA & Phonetics

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

📝 Linguistics & Phonology

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

🌍 African Orthographies

Some African language writing systems use v hook as a distinct letter; uppercase Ʋ appears in titles and headings.

🌐 Transliteration

Romanization systems requiring extended IPA and Latin letters with hook diacritic.

📚 Language Learning

Courses and reference materials teaching phonetic symbols and extended Latin characters.

⚙ Programmatic HTML

When building HTML from linguistic data, using &#434; or &#x01B2; guarantees correct output.

🎨 CSS generated content

Using \01B2 in the CSS content property to insert Ʋ via pseudo-elements.

💡 Best Practices

Do

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

Don’t

  • Confuse Ʋ with plain V (U+0056) when the hooked letter is required
  • Expect a named HTML entity—none exists for Ʋ
  • Use the incorrect CSS escape \001B2—the correct value is \01B2
  • Put CSS escape \01B2 in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type Ʋ directly, or use hex/decimal references

&#x01B2; &#434;
2

For CSS stylesheets, use the escape in the content property

\01B2
3

Unicode U+01B2 — LATIN CAPITAL LETTER V WITH HOOK

4

Latin Extended-B block; lowercase is ʋ (U+028B)

❓ Frequently Asked Questions

Use &#x01B2; (hex), &#434; (decimal), or \01B2 in CSS content. There is no named HTML entity for Ʋ. In UTF-8 you can also type Ʋ directly.
U+01B2 (LATIN CAPITAL LETTER V WITH HOOK). Latin Extended-B block. Hex 01B2, decimal 434. Lowercase form is U+028B (ʋ).
When displaying IPA notation, linguistic transcriptions, African language orthographies in uppercase, academic publications, or any content requiring the capital V with hook character.
No. There is no named HTML entity for Ʋ. Use numeric codes &#434; or &#x01B2;, or the CSS entity \01B2. Do not confuse with plain V (U+0056) or ʋ (lowercase v hook).
HTML code (&#434; or &#x01B2;) is used in HTML content; CSS entity \01B2 is used in stylesheets in the content property of pseudo-elements. Both produce Ʋ.

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