First Quarter Moon

Shortcodes

Copy useful codes for first quarter moon symbol ☽ to use in websites, apps, blogs, and docs.

Unicode
U+263D
HTML Code
☽
HEX Code
☽
CSS Code
\263D
JS/JSON
\u263D
Unix/C/PHP/JAVA
0x263D
URL-encode
%E2%98%BD

Customize First Quarter Moon

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

  

How to use First Quarter Moon Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>☽</span>
HTML Code:
<span>&#9789;</span>
HEX Code:
<span>&#x263D;</span>

Add with CSS

.first-quarter-moon::before {
  content: '\\263D';
}

Set it in JavaScript

document.querySelector('.first-quarter-moon').textContent = '☽';
copied