White Diamond With Centred Dot

Shortcodes

Copy useful codes for white diamond with centred dot symbol ⟐ to use in websites, apps, blogs, and docs.

Unicode
U+27D0
HTML Code
⟐
HEX Code
⟐
CSS Code
\27D0
JS/JSON
\u27D0
Unix/C/PHP/JAVA
0x27D0
URL-encode
%E2%9F%90

Customize White Diamond With Centred Dot

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

  

How to use White Diamond With Centred Dot Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟐</span>
HTML Code:
<span>&#10192;</span>
HEX Code:
<span>&#x27D0;</span>

Add with CSS

.white-diamond-with-centred-dot::before {
  content: '\\27D0';
}

Set it in JavaScript

document.querySelector('.white-diamond-with-centred-dot').textContent = '⟐';
copied