Heavy Heart Exclamation Mark Ornament

Shortcodes

Copy useful codes for heavy heart exclamation mark ornament symbol ❣ to use in websites, apps, blogs, and docs.

Unicode
U+2763
HTML Code
❣
HEX Code
❣
CSS Code
\2763
JS/JSON
\u2763
Unix/C/PHP/JAVA
0x2763
URL-encode
%E2%9D%A3

Customize Heavy Heart Exclamation Mark Ornament

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

  

How to use Heavy Heart Exclamation Mark Ornament Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❣</span>
HTML Code:
<span>&#10083;</span>
HEX Code:
<span>&#x2763;</span>

Add with CSS

.heavy-heart-exclamation-mark-ornament::before {
  content: '\\2763';
}

Set it in JavaScript

document.querySelector('.heavy-heart-exclamation-mark-ornament').textContent = '❣';
copied