Circle With Upper Right Quadrant Black

Shortcodes

Copy useful codes for circle with upper right quadrant black symbol ◔ to use in websites, apps, blogs, and docs.

Unicode
U+25D4
HTML Code
◔
HEX Code
◔
CSS Code
\25D4
JS/JSON
\u25D4
Unix/C/PHP/JAVA
0x25D4
URL-encode
%E2%97%94

Customize Circle With Upper Right Quadrant Black

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

  

How to use Circle With Upper Right Quadrant Black Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◔</span>
HTML Code:
<span>&#9684;</span>
HEX Code:
<span>&#x25D4;</span>

Add with CSS

.circle-with-upper-right-quadrant-black::before {
  content: '\\25D4';
}

Set it in JavaScript

document.querySelector('.circle-with-upper-right-quadrant-black').textContent = '◔';
copied