Rotated Floral Heart Bullet

Shortcodes

Copy useful codes for rotated floral heart bullet symbol ❧ to use in websites, apps, blogs, and docs.

Unicode
U+2767
HTML Code
❧
HEX Code
❧
CSS Code
\2767
JS/JSON
\u2767
Unix/C/PHP/JAVA
0x2767
URL-encode
%E2%9D%A7

Customize Rotated Floral Heart Bullet

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

  

How to use Rotated Floral Heart Bullet Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❧</span>
HTML Code:
<span>&#10087;</span>
HEX Code:
<span>&#x2767;</span>

Add with CSS

.rotated-floral-heart-bullet::before {
  content: '\\2767';
}

Set it in JavaScript

document.querySelector('.rotated-floral-heart-bullet').textContent = '❧';
copied