White Sun

๐ŸŒฃ

Shortcodes

Copy useful codes for white sun symbol ๐ŸŒฃ to use in websites, apps, blogs, and docs.

Unicode
U+1F323
HTML Code
🌣
HEX Code
🌣
CSS Code
\1F323
JS/JSON
\u1F323
Unix/C/PHP/JAVA
0x1F323
URL-encode
%F0%9F%8C%A3

Customize White Sun

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

๐ŸŒฃ
  

How to use White Sun Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐ŸŒฃ</span>
HTML Code:
<span>&#127779;</span>
HEX Code:
<span>&#x1F323;</span>

Add with CSS

.white-sun::before {
  content: '\\1F323';
}

Set it in JavaScript

document.querySelector('.white-sun').textContent = '๐ŸŒฃ';
copied