White Sun With Rays

Shortcodes

Copy useful codes for white sun with rays symbol ☼ to use in websites, apps, blogs, and docs.

Unicode
U+263C
Alt Code
15
HTML Code
☼
HEX Code
☼
CSS Code
\263C
JS/JSON
\u263C
Unix/C/PHP/JAVA
0x263C
URL-encode
%E2%98%BC

Customize White Sun With Rays

Customize ☼, download it as SVG or PNG, or copy the generated HTML snippet.

  

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

Insert in HTML

1. Direct symbol:
<span>☼</span>
HTML Code:
<span>&#9788;</span>
HEX Code:
<span>&#x263C;</span>

Add with CSS

.white-sun-with-rays::before {
  content: '\\263C';
}

Set it in JavaScript

document.querySelector('.white-sun-with-rays').textContent = '☼';
copied