Bottom Right Corner

Shortcodes

Copy and paste codes for Bottom Right Corner symbol ⌟ to use in your websites, apps, blogs, and more.

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

Customize Bottom Right Corner Symbol

Customize ⌟ symbol as you like and download Bottom Right Corner as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Bottom Right Corner symbol in HTML, CSS, and JS?

Insert ⌟ Bottom Right Corner using HTML

1. Copy-paste Bottom Right Corner directly:
<span>⌟</span>
2. HTML Decimal Code:
<span>&#8991;</span>
3. Hexadecimal Code:
<span>&#x231F;</span>
Preview:

Add Bottom Right Corner symbol with CSS

.bottom-right-corner::before {
    content: '\\231F';
}
Preview: Bottom Right Corner

Bottom Right Corner JavaScript Code

1. Direct Symbol:
document.querySelector('.bottom-right-corner').textContent = '⌟';
2. Unicode Escape for ⌟:
document.querySelector('.bottom-right-corner').textContent = '\u231F';
Preview: