Circle With All But Upper Left Quadrant Black

Shortcodes

Copy useful codes for circle with all but upper left quadrant black symbol ◕ to use in websites, apps, blogs, and docs.

Unicode
U+25D5
HTML Code
◕
HEX Code
◕
CSS Code
\25D5
JS/JSON
\u25D5
Unix/C/PHP/JAVA
0x25D5
URL-encode
%E2%97%95

Customize Circle With All But Upper Left Quadrant Black

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

  

How to use Circle With All But Upper Left Quadrant Black Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◕</span>
HTML Code:
<span>&#9685;</span>
HEX Code:
<span>&#x25D5;</span>

Add with CSS

.circle-with-all-but-upper-left-quadrant-black::before {
  content: '\\25D5';
}

Set it in JavaScript

document.querySelector('.circle-with-all-but-upper-left-quadrant-black').textContent = '◕';
copied