HTML Entity for Uppercase V (V)

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

What You'll Learn

How to display the uppercase letter V in HTML using entity methods and direct character input. The letter V is the twenty-second letter of the Latin alphabet (U+0056) and is part of the Basic Latin block. It appears in proper nouns, acronyms (VPN, VGA, VAT), headings, Roman numerals (V = 5), and any text that requires capitalization. In most cases you can type it directly; numeric or CSS entities are useful when escaping, generating content via CSS, or ensuring correct encoding.

This character can be displayed using the character itself, a hexadecimal reference, a decimal reference, or a CSS escape in the content property. There is no named HTML entity like &V; for this letter.

⚡ Quick Reference — Uppercase V Entity

Unicode U+0056

Basic Latin (ASCII)

Hex Code V

Hexadecimal reference

HTML Code V

Decimal reference

Direct Character V

Type directly (no named entity)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+0056
Hex code       V
HTML code      V
Named entity   (none — use V directly)
CSS code       \0056
Meaning        Latin capital letter V
Related        U+0076 = v (lowercase)
Block          Basic Latin (U+0000–U+007F)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #letter:after{
   content: "\0056";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x56;</p>
<p>Symbol (decimal): &#86;</p>
<p>Symbol (direct): V</p>
<p id="letter">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase letter V (U+0056) is universally supported in all browsers and platforms as part of Basic Latin:

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

👀 Live Preview

See the uppercase letter V in common text contexts:

Large glyphV
Body textThe letter V appears in words like Value, Video, and Victory.
AcronymsVPN, VGA, VAT, and VS all include the letter V.
Roman numeralV represents the number five in Roman numerals.
AlphabetT U V W
Not the same asv (lowercase, U+0076)  |  ᴠ (Latin letter small capital V)
Numeric refs&#x56; &#86; \0056

🧠 How It Works

1

Hexadecimal Code

&#x56; uses the Unicode hexadecimal value 56 to display the letter. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#86; uses the decimal Unicode value 86 to display the same character. This is the ASCII/Unicode decimal for V.

HTML markup
3

Direct Character

Type V directly in HTML. There is no named entity like &V;; the character itself is the standard approach in body text.

HTML markup
4

CSS Entity

\0056 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: V. Unicode U+0056 sits in Basic Latin. The lowercase form is U+0076 (v). In normal text, typing V is preferred over numeric entities.

Use Cases

The uppercase letter V (or its entity forms) is commonly used in:

📝 Capitalization

Sentence starts, proper nouns, and titles where the letter V begins a word.

📚 Documentation

Tutorials, API docs, and code samples that show the character V as an entity or escape.

📐 Acronyms

Abbreviations such as VPN, VGA, VAT, and VS where V appears in the name.

🌐 Internationalization

Proper nouns and place names in English, Spanish, French, and other Latin-script languages.

📄 Headings & titles

Page titles, section headings, and navigation labels that start with V.

⚙ Programmatic HTML

When building HTML in code, using &#86; or &#x56; ensures correct output regardless of encoding context.

🎨 CSS generated content

Using \0056 in the CSS content property to insert V via pseudo-elements.

💡 Best Practices

Do

  • Type V directly in body content; use entities only when necessary
  • Serve pages as UTF-8 so Basic Latin characters render without entities
  • Use numeric references (&#x56; or &#86;) when escaping is required
  • Use \0056 in CSS content when generating the letter via pseudo-elements
  • Remember uppercase V is U+0056 and lowercase v is U+0076 when case matters

Don’t

  • Overuse numeric entities for V in normal readable text
  • Expect a named HTML entity like &V;—none exists for this letter
  • Use \00056 in CSS—the correct escape is \0056
  • Confuse plain V (U+0056) with Ʋ (V hook) or other V variants
  • Put CSS escape \0056 in HTML text nodes

Key Takeaways

1

Type V directly, or use hex/decimal references

&#x56; &#86;
2

For CSS stylesheets, use the escape in the content property

\0056
3

Unicode U+0056 — LATIN CAPITAL LETTER V

4

Twenty-second letter of the Latin alphabet (Basic Latin block)

❓ Frequently Asked Questions

Type V directly, or use &#x56; (hex), &#86; (decimal), or \0056 in CSS content. There is no named HTML entity for V. For most content, typing V is standard; use numeric or CSS entities when escaping or generating via CSS.
U+0056 (LATIN CAPITAL LETTER V). Basic Latin block. Hex 56, decimal 86. It is the twenty-second letter of the Latin alphabet and a standard character in virtually all Western scripts.
When you need to escape or reference the character explicitly, in programmatic HTML generation, documentation showing the character, or systems that expect character references. In normal UTF-8 text, typing V directly is usually sufficient.
No. There is no named HTML entity for the uppercase V. Use numeric codes &#86; or &#x56;, or the CSS entity \0056. In UTF-8 pages you can type V directly.
HTML code (&#86; or &#x56;) is used in HTML content; CSS entity \0056 is used in stylesheets in the content property of pseudo-elements. Both produce the character V.

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