Cherries

๐Ÿ’

Shortcodes

Copy useful codes for cherries symbol ๐Ÿ’ to use in websites, apps, blogs, and docs.

Unicode
U+1F352
HTML Code
🍒
HEX Code
🍒
CSS Code
\1F352
JS/JSON
\u1F352
Unix/C/PHP/JAVA
0x1F352
URL-encode
%F0%9F%8D%92

Customize Cherries

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

๐Ÿ’
  

How to use Cherries Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ’</span>
HTML Code:
<span>&#127826;</span>
HEX Code:
<span>&#x1F352;</span>

Add with CSS

.cherries::before {
  content: '\\1F352';
}

Set it in JavaScript

document.querySelector('.cherries').textContent = '๐Ÿ’';
copied