Black Diamond Suit

Shortcodes

Copy and paste codes for Black Diamond Suit symbol ♦ to use in your websites, apps, blogs, and more.

Unicode
U+2666
HTML Code
♦
HTML Entity
♦
HEX Code
♦
CSS Code
\2666
JS/JSON
\u2666
Unix/C/PHP/JAVA
0x2666
URL-encode
%E2%99%A6
copied

Customize Black Diamond Suit Symbol

Customize ♦ symbol as you like and download Black Diamond Suit as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Black Diamond Suit symbol in HTML, CSS, and JS?

Insert ♦ Black Diamond Suit using HTML

1. Copy-paste Black Diamond Suit directly:
<span>♦</span>
2. HTML Decimal Code:
<span>&#9830;</span>
3. HTML Entity:
<span>&diams;</span>
4. Hexadecimal Code:
<span>&#x2666;</span>
Preview:

Add Black Diamond Suit symbol with CSS

.black-diamond-suit::before {
    content: '\\2666';
}
Preview: Black Diamond Suit

Black Diamond Suit JavaScript Code

1. Direct Symbol:
document.querySelector('.black-diamond-suit').textContent = '♦';
2. Unicode Escape for ♦:
document.querySelector('.black-diamond-suit').textContent = '\u2666';
Preview: