Orange Heart

๐Ÿงก

Shortcodes

Copy useful codes for orange heart symbol ๐Ÿงก to use in websites, apps, blogs, and docs.

Unicode
U+1F9E1
HTML Code
🧡
HEX Code
🧡
CSS Code
\1F9E1
JS/JSON
\u1F9E1
Unix/C/PHP/JAVA
0x1F9E1
URL-encode
%F0%9F%A7%A1

Customize Orange Heart

Customize ๐Ÿงก, download it as SVG or PNG, or copy the generated HTML snippet.

๐Ÿงก
  

How to use Orange Heart Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿงก</span>
HTML Code:
<span>&#129505;</span>
HEX Code:
<span>&#x1F9E1;</span>

Add with CSS

.orange-heart::before {
  content: '\\1F9E1';
}

Set it in JavaScript

document.querySelector('.orange-heart').textContent = '๐Ÿงก';
copied