White Diamond In Square

Shortcodes

Copy useful codes for white diamond in square symbol ⛋ to use in websites, apps, blogs, and docs.

Unicode
U+26CB
HTML Code
⛋
HEX Code
⛋
CSS Code
\26CB
JS/JSON
\u26CB
Unix/C/PHP/JAVA
0x26CB
URL-encode
%E2%9B%8B

Customize White Diamond In Square

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

  

How to use White Diamond In Square Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⛋</span>
HTML Code:
<span>&#9931;</span>
HEX Code:
<span>&#x26CB;</span>

Add with CSS

.white-diamond-in-square::before {
  content: '\\26CB';
}

Set it in JavaScript

document.querySelector('.white-diamond-in-square').textContent = '⛋';
copied