Rotated Heavy Black Heart Bullet

Shortcodes

Copy useful codes for rotated heavy black heart bullet symbol ❥ to use in websites, apps, blogs, and docs.

Unicode
U+2765
HTML Code
❥
HEX Code
❥
CSS Code
\2765
JS/JSON
\u2765
Unix/C/PHP/JAVA
0x2765
URL-encode
%E2%9D%A5

Customize Rotated Heavy Black Heart Bullet

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

  

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

Insert in HTML

1. Direct symbol:
<span>❥</span>
HTML Code:
<span>&#10085;</span>
HEX Code:
<span>&#x2765;</span>

Add with CSS

.rotated-heavy-black-heart-bullet::before {
  content: '\\2765';
}

Set it in JavaScript

document.querySelector('.rotated-heavy-black-heart-bullet').textContent = '❥';
copied