HTML Entity for Lowercase V Hook (ʋ)

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

What You'll Learn

How to display the lowercase v with hook (ʋ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+028B (LATIN SMALL LETTER V WITH HOOK) in the IPA Extensions block. It represents a v with a hook tail and is used in IPA for the labiodental approximant [ʋ] and in some African language orthographies.

Render it with ʋ, ʋ, or CSS escape \028B. There is no named HTML entity for this character. In UTF-8 documents you can also type ʋ directly. This is not plain v (U+0076)—it is a distinct precomposed Unicode letter.

⚡ Quick Reference — Lowercase V Hook Entity

Unicode U+028B

IPA Extensions

Hex Code ʋ

Hexadecimal reference

HTML Code ʋ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+028B
Hex code       ʋ
HTML code      ʋ
Named entity   (none)
CSS code       \028B
Meaning        Latin small letter v with hook
IPA            Labiodental approximant [ʋ]
Related        U+01B2 = Ʋ (uppercase)
Block          IPA Extensions (U+0250–U+02AF)
1

Complete HTML Example

A simple example showing the lowercase 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: "\028B";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x028B;</p>
<p>Symbol (decimal): &#651;</p>
<p>Symbol (direct): ʋ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase v hook (ʋ) is supported in all modern browsers as part of IPA Extensions:

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

👀 Live Preview

See the lowercase v hook (ʋ) in phonetic and content contexts:

Large glyphʋ
IPALabiodental approximant: [ʋ]
Unicode nameLatin small letter v with hook
UppercaseƲ (U+01B2) — LATIN CAPITAL LETTER V WITH HOOK
Not the same asplain v (U+0076)  |  ν (Greek nu)  |  ư (u with horn)
Numeric refs&#x028B; &#651; \028B

🧠 How It Works

1

Hexadecimal Code

&#x028B; uses the Unicode hexadecimal value 028B to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#651; uses the decimal Unicode value 651 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

\028B 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+028B sits in IPA Extensions. Uppercase equivalent: U+01B2 (Ʋ). Do not confuse with plain v (U+0076) or ν (Greek nu).

Use Cases

The lowercase v hook (ʋ) is commonly used in:

🎤 IPA Phonetics

Represents the labiodental approximant [ʋ] in International Phonetic Alphabet notation.

📝 Linguistics & Phonology

Phonetic transcription, dictionaries, and academic papers using IPA symbols.

🌍 African Orthographies

Some African language writing systems use v hook as a distinct letter in romanization.

🌐 Transliteration

Romanization systems requiring extended IPA and Latin letters with hook.

📚 Language Learning

Phonetics courses and pronunciation guides teaching IPA consonant symbols.

📄 Academic Content

Character charts and linguistic resources requiring precise IPA representation.

⚙ Programmatic HTML

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

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ʋ directly in UTF-8 source
  • Use numeric references (&#x028B; or &#651;) when escaping is required
  • Use \028B in CSS content when generating the symbol via pseudo-elements
  • Use fonts that support IPA Extensions (U+0250–U+02AF)
  • Distinguish ʋ from plain v (U+0076) and ν (Greek nu)

Don’t

  • Substitute plain v when ʋ is required for IPA or orthographic accuracy
  • Expect a named HTML entity—none exists for ʋ
  • Use the old incorrect CSS escape \0028B—the correct value is \028B
  • Put CSS escape \028B in HTML text nodes
  • Double-encode numeric references in dynamically generated HTML

Key Takeaways

1

Type ʋ directly, or use hex/decimal references

&#x028B; &#651;
2

For CSS stylesheets, use the escape in the content property

\028B
3

Unicode U+028B — LATIN SMALL LETTER V WITH HOOK

4

IPA labiodental approximant [ʋ]; uppercase is Ʋ (U+01B2)

❓ Frequently Asked Questions

Use &#x028B; (hex), &#651; (decimal), or \028B in CSS content. There is no named HTML entity for ʋ. In UTF-8 you can also type ʋ directly.
U+028B (LATIN SMALL LETTER V WITH HOOK). IPA Extensions block. Hex 028B, decimal 651. Used in IPA for the labiodental approximant [ʋ]. Uppercase form is U+01B2 (Ʋ).
When displaying IPA phonetic notation, linguistic transcription, African language orthographies, academic papers, or any content requiring v with hook.
No. ʋ is a single precomposed Unicode letter (U+028B) with a hook tail, used in IPA and some orthographies. Plain v is U+0076 (Basic Latin). They are different characters.
No. Use &#651; or &#x028B; in HTML, or \028B 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