Bottom Right Corner

Shortcodes

Copy useful codes for bottom right corner symbol ⌟ to use in websites, apps, blogs, and docs.

Unicode
U+231F
HTML Code
⌟
HEX Code
⌟
CSS Code
\231F
JS/JSON
\u231F
Unix/C/PHP/JAVA
0x231F
URL-encode
%E2%8C%9F

Customize Bottom Right Corner

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

  

How to use Bottom Right Corner Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌟</span>
HTML Code:
<span>&#8991;</span>
HEX Code:
<span>&#x231F;</span>

Add with CSS

.bottom-right-corner::before {
  content: '\\231F';
}

Set it in JavaScript

document.querySelector('.bottom-right-corner').textContent = '⌟';
copied