Cherry Blossom

๐ŸŒธ

Shortcodes

Copy useful codes for cherry blossom symbol ๐ŸŒธ to use in websites, apps, blogs, and docs.

Unicode
U+1F338
HTML Code
🌸
HEX Code
🌸
CSS Code
\1F338
JS/JSON
\u1F338
Unix/C/PHP/JAVA
0x1F338
URL-encode
%F0%9F%8C%B8

Customize Cherry Blossom

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

๐ŸŒธ
  

How to use Cherry Blossom Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐ŸŒธ</span>
HTML Code:
<span>&#127800;</span>
HEX Code:
<span>&#x1F338;</span>

Add with CSS

.cherry-blossom::before {
  content: '\\1F338';
}

Set it in JavaScript

document.querySelector('.cherry-blossom').textContent = '๐ŸŒธ';
copied