Bottom Left Corner

Shortcodes

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

Unicode
U+231E
HTML Code
⌞
HEX Code
⌞
CSS Code
\231E
JS/JSON
\u231E
Unix/C/PHP/JAVA
0x231E
URL-encode
%E2%8C%9E
copied

Customize Bottom Left Corner Symbol

Customize ⌞ symbol as you like and download Bottom Left 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 Left Corner symbol in HTML, CSS, and JS?

Insert ⌞ Bottom Left Corner using HTML

1. Copy-paste Bottom Left Corner directly:
<span>⌞</span>
2. HTML Decimal Code:
<span>&#8990;</span>
3. Hexadecimal Code:
<span>&#x231E;</span>
Preview:

Add Bottom Left Corner symbol with CSS

.bottom-left-corner::before {
    content: '\\231E';
}
Preview: Bottom Left Corner

Bottom Left Corner JavaScript Code

1. Direct Symbol:
document.querySelector('.bottom-left-corner').textContent = '⌞';
2. Unicode Escape for ⌞:
document.querySelector('.bottom-left-corner').textContent = '\u231E';
Preview: