Black Diamond

Shortcodes

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

Unicode
U+25C6
HTML Code
◆
HEX Code
◆
CSS Code
\25C6
JS/JSON
\u25C6
Unix/C/PHP/JAVA
0x25C6
URL-encode
%E2%97%86
copied

Customize Black Diamond Symbol

Customize ◆ symbol as you like and download Black Diamond 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 symbol in HTML, CSS, and JS?

Insert ◆ Black Diamond using HTML

1. Copy-paste Black Diamond directly:
<span>◆</span>
2. HTML Decimal Code:
<span>&#9670;</span>
3. Hexadecimal Code:
<span>&#x25C6;</span>
Preview:

Add Black Diamond symbol with CSS

.black-diamond::before {
    content: '\\25C6';
}
Preview: Black Diamond

Black Diamond JavaScript Code

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