Last Quarter Moon

Shortcodes

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

Unicode
U+263E
HTML Code
☾
HEX Code
☾
CSS Code
\263E
JS/JSON
\u263E
Unix/C/PHP/JAVA
0x263E
URL-encode
%E2%98%BE

Customize Last Quarter Moon

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

  

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

Insert in HTML

1. Direct symbol:
<span>☾</span>
HTML Code:
<span>&#9790;</span>
HEX Code:
<span>&#x263E;</span>

Add with CSS

.last-quarter-moon::before {
  content: '\\263E';
}

Set it in JavaScript

document.querySelector('.last-quarter-moon').textContent = '☾';
copied