Upper Half Inverse White Circle

Shortcodes

Copy useful codes for upper half inverse white circle symbol ◚ to use in websites, apps, blogs, and docs.

Unicode
U+25DA
HTML Code
◚
HEX Code
◚
CSS Code
\25DA
JS/JSON
\u25DA
Unix/C/PHP/JAVA
0x25DA
URL-encode
%E2%97%9A

Customize Upper Half Inverse White Circle

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

  

How to use Upper Half Inverse White Circle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◚</span>
HTML Code:
<span>&#9690;</span>
HEX Code:
<span>&#x25DA;</span>

Add with CSS

.upper-half-inverse-white-circle::before {
  content: '\\25DA';
}

Set it in JavaScript

document.querySelector('.upper-half-inverse-white-circle').textContent = '◚';
copied