Green Apple

๐Ÿ

Shortcodes

Copy useful codes for green apple symbol ๐Ÿ to use in websites, apps, blogs, and docs.

Unicode
U+1F34F
HTML Code
🍏
HEX Code
🍏
CSS Code
\1F34F
JS/JSON
\u1F34F
Unix/C/PHP/JAVA
0x1F34F
URL-encode
%F0%9F%8D%8F

Customize Green Apple

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

๐Ÿ
  

How to use Green Apple Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ</span>
HTML Code:
<span>&#127823;</span>
HEX Code:
<span>&#x1F34F;</span>

Add with CSS

.green-apple::before {
  content: '\\1F34F';
}

Set it in JavaScript

document.querySelector('.green-apple').textContent = '๐Ÿ';
copied