Palm Tree

๐ŸŒด

Shortcodes

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

Unicode
U+1F334
HTML Code
🌴
HEX Code
🌴
CSS Code
\1F334
JS/JSON
\u1F334
Unix/C/PHP/JAVA
0x1F334
URL-encode
%F0%9F%8C%B4

Customize Palm Tree

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

๐ŸŒด
  

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

Insert in HTML

1. Direct symbol:
<span>๐ŸŒด</span>
HTML Code:
<span>&#127796;</span>
HEX Code:
<span>&#x1F334;</span>

Add with CSS

.palm-tree::before {
  content: '\\1F334';
}

Set it in JavaScript

document.querySelector('.palm-tree').textContent = '๐ŸŒด';
copied