Lower Left Quadrant Circular Arc

Shortcodes

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

Unicode
U+25DF
HTML Code
◟
HEX Code
◟
CSS Code
\25DF
JS/JSON
\u25DF
Unix/C/PHP/JAVA
0x25DF
URL-encode
%E2%97%9F

Customize Lower Left Quadrant Circular Arc

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

  

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

Insert in HTML

1. Direct symbol:
<span>◟</span>
HTML Code:
<span>&#9695;</span>
HEX Code:
<span>&#x25DF;</span>

Add with CSS

.lower-left-quadrant-circular-arc::before {
  content: '\\25DF';
}

Set it in JavaScript

document.querySelector('.lower-left-quadrant-circular-arc').textContent = '◟';
copied