HTML Entity for White Club Suit (♧)

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

What You'll Learn

How to display the White Club Suit (♧) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2667 (WHITE CLUB SUIT) in the Miscellaneous Symbols block (U+2600–U+26FF), part of the playing-card suit range (U+2660–U+2667). It is the outline counterpart to the filled black clubs suit ♣ (U+2663).

Render it with ♧, ♧, or CSS escape \2667. There is no named HTML entity for ♧—use ♣ only when you need the black clubs glyph ♣. All three numeric methods render the white/outline clubs symbol in modern browsers.

⚡ Quick Reference — White Club Suit

Unicode U+2667

Miscellaneous Symbols (playing cards)

Hex Code ♧

Hexadecimal reference

HTML Code ♧

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2667
Hex code       ♧
HTML code      ♧
Named entity   (none)
CSS code       \2667
Meaning        White (outline) clubs suit
Related        U+2663 = ♣ (black club suit, ♣)
               U+2662 = ♢ (white diamond suit)
Block          Miscellaneous Symbols (U+2660–U+2667 playing cards)
1

Complete HTML Example

A simple example showing White Club Suit (♧) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #suit:after{
   content: "\2667";
  }
 </style>
</head>
<body>
<p>White Club Suit (hex): &#x2667;</p>
<p>White Club Suit (decimal): &#9831;</p>
<p id="suit">White Club Suit (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+2667 is supported in modern browsers when the font includes Miscellaneous Symbols glyphs:

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

👀 Live Preview

See White Club Suit (♧) alongside related playing-card symbols:

Large glyph
White vs black clubs♧ ♣
Black suits (filled)♠ ♥ ♦ ♣
Not the same as♣ (U+2663, black club, &clubs;)
Numeric refs&#x2667; &#9831; \2667

🧠 How It Works

1

Hexadecimal Code

&#x2667; uses the Unicode hexadecimal value 2667 to display the White Club Suit symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#9831; uses the decimal Unicode value 9831 to display the same character. A common method for symbol characters in HTML.

HTML markup
3

CSS Entity

\2667 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 . Unicode U+2667 is the white clubs suit in the playing-card range U+2660–U+2667. Not the same as ♣ (black club, &clubs;).

Use Cases

White Club Suit (♧) is commonly used in:

🃏 Card game sites

Outline suit indicators and lightweight card UI without image sprites.

🎮 Gaming apps

Poker, Bridge, Solitaire, and other playing-card interfaces.

🎨 Decorative design

Casino themes, game branding, and playing-card aesthetics.

🎓 Teaching

Rules, strategy guides, and card-game tutorials.

💬 Forums

Hand analysis and move notation in card-game communities.

🖥 UI elements

Buttons, badges, and navigation with a clubs motif.

♿ Accessibility

Pair ♧ with text or ARIA (e.g. “Clubs”); the glyph alone is not enough.

💡 Best Practices

Do

  • Use ♧ when you need the outline clubs glyph; use ♣ / &clubs; for filled black clubs
  • Use the same font stack for all suit symbols in a card UI
  • Add aria-label or visible text for standalone suit glyphs
  • Pick one numeric style (hex or decimal) per project for consistency
  • Test rendering across browsers and devices

Don’t

  • Confuse ♧ (white club) with ♣ (black club) or &clubs;
  • Assume &clubs; renders ♧—it renders ♣
  • Mix entity styles randomly in one codebase
  • Use CSS escape \2667 inside HTML text nodes
  • Assume every visitor knows suit symbols without a legend

Key Takeaways

1

Type ♧ directly, or use hex/decimal references

&#x2667; &#9831;
2

For CSS stylesheets, use the escape in the content property

\2667
3

Unicode U+2667 — WHITE CLUB SUIT (playing-card range)

4

No named entity; &clubs; is for U+2663 (black club) only

❓ Frequently Asked Questions

Use &#x2667; (hex), &#9831; (decimal), or \2667 in CSS content. There is no named HTML entity. In UTF-8 you can also type ♧ directly.
U+2667 (WHITE CLUB SUIT). Playing-card suits U+2660–U+2667 in Miscellaneous Symbols. Hex 2667, decimal 9831.
On card game websites, playing-card interfaces, casino and gaming UI, educational content, and decorative designs that need an outline clubs suit glyph.
HTML entities (&#9831; or &#x2667;) go directly in markup. The CSS escape \2667 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
HTML named entities cover the four filled black suits (&clubs;, &hearts;, &diams;, &spades;) but not the white/outline variants. Use &#9831; or &#x2667; for ♧.

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