Lower Right Quadrant Circular Arc

Shortcodes

Copy useful codes for lower right quadrant circular arc symbol ◞ to use in websites, apps, blogs, and docs.

Unicode
U+25DE
HTML Code
◞
HEX Code
◞
CSS Code
\25DE
JS/JSON
\u25DE
Unix/C/PHP/JAVA
0x25DE
URL-encode
%E2%97%9E

Customize Lower Right Quadrant Circular Arc

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

  

How to use Lower Right Quadrant Circular Arc Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>◞</span>
HTML Code:
<span>&#9694;</span>
HEX Code:
<span>&#x25DE;</span>

Add with CSS

.lower-right-quadrant-circular-arc::before {
  content: '\\25DE';
}

Set it in JavaScript

document.querySelector('.lower-right-quadrant-circular-arc').textContent = '◞';
copied