Evergreen Tree

๐ŸŒฒ

Shortcodes

Copy useful codes for evergreen tree symbol ๐ŸŒฒ to use in websites, apps, blogs, and docs.

Unicode
U+1F332
HTML Code
🌲
HEX Code
🌲
CSS Code
\1F332
JS/JSON
\u1F332
Unix/C/PHP/JAVA
0x1F332
URL-encode
%F0%9F%8C%B2

Customize Evergreen Tree

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

๐ŸŒฒ
  

How to use Evergreen Tree Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐ŸŒฒ</span>
HTML Code:
<span>&#127794;</span>
HEX Code:
<span>&#x1F332;</span>

Add with CSS

.evergreen-tree::before {
  content: '\\1F332';
}

Set it in JavaScript

document.querySelector('.evergreen-tree').textContent = '๐ŸŒฒ';
copied