HTML Entity for Uppercase V (V)

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
U+0056Basic Latin (ASCII)
VHexadecimal reference
VDecimal reference
VType directly (no named entity)
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#letter:after{
content: "\0056";
}
</style>
</head>
<body>
<p>Symbol (hex): V</p>
<p>Symbol (decimal): V</p>
<p>Symbol (direct): V</p>
<p id="letter">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase letter V (U+0056) is universally supported in all browsers and platforms as part of Basic Latin:
👀 Live Preview
See the uppercase letter V in common text contexts:
🧠 How It Works
Hexadecimal Code
V uses the Unicode hexadecimal value 56 to display the letter. The x prefix indicates hexadecimal format.
Decimal HTML Code
V uses the decimal Unicode value 86 to display the same character. This is the ASCII/Unicode decimal for V.
Direct Character
Type V directly in HTML. There is no named entity like &V;; the character itself is the standard approach in body text.
CSS Entity
\0056 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Sentence starts, proper nouns, and titles where the letter V begins a word.
Tutorials, API docs, and code samples that show the character V as an entity or escape.
Abbreviations such as VPN, VGA, VAT, and VS where V appears in the name.
Proper nouns and place names in English, Spanish, French, and other Latin-script languages.
Page titles, section headings, and navigation labels that start with V.
When building HTML in code, using V or V ensures correct output regardless of encoding context.
Using \0056 in the CSS content property to insert V via pseudo-elements.
💡 Best Practices
Do
- Type
Vdirectly in body content; use entities only when necessary - Serve pages as UTF-8 so Basic Latin characters render without entities
- Use numeric references (
VorV) when escaping is required - Use
\0056in CSScontentwhen 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
Vin normal readable text - Expect a named HTML entity like
&V;—none exists for this letter - Use
\00056in CSS—the correct escape is\0056 - Confuse plain
V(U+0056) with Ʋ (V hook) or other V variants - Put CSS escape
\0056in HTML text nodes
Key Takeaways
Type V directly, or use hex/decimal references
V VFor CSS stylesheets, use the escape in the content property
\0056Unicode U+0056 — LATIN CAPITAL LETTER V
Twenty-second letter of the Latin alphabet (Basic Latin block)
Previous: Uppercase U Umlaut (Ü) Next: Uppercase V Hook (Ʋ)
❓ Frequently Asked Questions
V directly, or use V (hex), V (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.V or V, or the CSS entity \0056. In UTF-8 pages you can type V directly.V or V) 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.
8 people found this page helpful
