Deciduous Tree

๐ŸŒณ

Shortcodes

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

Unicode
U+1F333
HTML Code
🌳
HEX Code
🌳
CSS Code
\1F333
JS/JSON
\u1F333
Unix/C/PHP/JAVA
0x1F333
URL-encode
%F0%9F%8C%B3

Customize Deciduous Tree

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

๐ŸŒณ
  

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

Insert in HTML

1. Direct symbol:
<span>๐ŸŒณ</span>
HTML Code:
<span>&#127795;</span>
HEX Code:
<span>&#x1F333;</span>

Add with CSS

.deciduous-tree::before {
  content: '\\1F333';
}

Set it in JavaScript

document.querySelector('.deciduous-tree').textContent = '๐ŸŒณ';
copied