HTML Entity for Victory Hand (✌)

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

What You'll Learn

How to display the Victory Hand symbol (✌) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+270C (VICTORY HAND) in the Dingbats block—a widely recognized peace and victory hand gesture used in social media, celebratory content, and expressive messaging.

Render it with ✌, ✌, or CSS escape \270C. There is no named HTML entity. Do not confuse ✌ with the OK hand emoji 👌 (U+1F44C) or raised hand 🖐 (U+1F590).

⚡ Quick Reference — Victory Hand Entity

Unicode U+270C

Dingbats

Hex Code ✌

Hexadecimal reference

HTML Code ✌

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+270C
Hex code       ✌
HTML code      ✌
Named entity   (none)
CSS code       \270C
Meaning        Victory / peace hand gesture
Not the same   U+1F44C = 👌 (OK hand emoji)
               U+1F590 = 🖐 (raised hand)
Block          Dingbats (U+2700–U+27BF)
1

Complete HTML Example

A simple example showing the Victory Hand symbol (✌) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\270C";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x270C;</p>
<p>Symbol (decimal): &#9996;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The Victory Hand symbol (✌) is supported in modern browsers when the font includes Dingbats glyphs:

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

👀 Live Preview

See the Victory Hand symbol rendered live in different contexts:

Inline textPeace and victory! ✌
Large glyph
CelebrationWe did it! ✌ Great job team!
Not the same as👌 (U+1F44C, OK hand emoji)
Numeric refs&#x270C; &#9996; \270C

🧠 How It Works

1

Hexadecimal Code

&#x270C; uses the Unicode hexadecimal value 270C to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9996; uses the decimal Unicode value 9996 to display the same character. A common method for Dingbats symbols.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+270C sits in Dingbats. Not the same as 👌 (OK hand emoji).

Use Cases

The Victory Hand symbol (✌) is commonly used in:

📱 Social media

Peace or victory gestures in posts, captions, and stories.

🎉 Celebratory messaging

Success messages, achievement badges, and congratulations.

✌ Peace & victory themes

Campaigns, blogs, and marketing with peace or victory messaging.

💬 User engagement

Comments, reactions, and interactive gesture elements.

🎮 Gaming & achievements

Leaderboards, completion screens, and victory states.

📝 Expressive content

Articles, quotes, and positive messaging with symbolic gestures.

🌐 International websites

Global content where the peace/victory gesture is widely recognized.

💡 Best Practices

Do

  • Pair ✌ with accessible text or aria-label when standalone
  • Use numeric references when escaping is required
  • Pick one style (hex or decimal) per project for consistency
  • Use fonts that support Dingbats characters
  • Consider cultural context for hand-gesture symbols

Don’t

  • Confuse ✌ (U+270C) with 👌 (U+1F44C, OK hand emoji)
  • Use the symbol without context in cultures where gestures differ
  • Mix entity styles randomly in one file
  • Use CSS escape \270C inside HTML markup
  • Expect a named HTML entity—none exists for ✌

Key Takeaways

1

Type ✌ directly, or use hex/decimal references

&#x270C; &#9996;
2

For CSS stylesheets, use the escape in the content property

\270C
3

Unicode U+270C — VICTORY HAND (Dingbats)

4

Not the same as 👌 (OK hand emoji)

❓ Frequently Asked Questions

Use &#x270C; (hex), &#9996; (decimal), or \270C in CSS content. There is no named HTML entity. In UTF-8 you can also type ✌ directly.
U+270C (VICTORY HAND). Dingbats block. Hex 270C, decimal 9996. Represents a peace or victory hand gesture.
In social media content, celebratory messaging, peace and victory themes, achievement displays, user engagement, and any expressive web content benefiting from a positive gesture symbol.
HTML entities (&#9996; or &#x270C;) go directly in markup. The CSS escape \270C is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Named HTML entities are reserved for commonly used ASCII, Latin-1, and widely recognized symbols. Dingbats like ✌ use numeric codes. Use &#9996; or &#x270C; in HTML, or \270C in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — symbols, punctuation, 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