White Diamond Containing Black Small Diamond

Shortcodes

Copy useful codes for white diamond containing black small diamond symbol ◈ to use in websites, apps, blogs, and docs.

Unicode
U+25C8
HTML Code
◈
HEX Code
◈
CSS Code
\25C8
JS/JSON
\u25C8
Unix/C/PHP/JAVA
0x25C8
URL-encode
%E2%97%88

Customize White Diamond Containing Black Small Diamond

Customize ◈, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use White Diamond Containing Black Small Diamond Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◈</span>
HTML Code:
<span>&#9672;</span>
HEX Code:
<span>&#x25C8;</span>

Add with CSS

.white-diamond-containing-black-small-diamond::before {
  content: '\\25C8';
}

Set it in JavaScript

document.querySelector('.white-diamond-containing-black-small-diamond').textContent = '◈';
copied