Bottom Left Corner

Shortcodes

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

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

Customize Bottom Left Corner

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

  

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

Insert in HTML

1. Direct symbol:
<span>⌞</span>
HTML Code:
<span>&#8990;</span>
HEX Code:
<span>&#x231E;</span>

Add with CSS

.bottom-left-corner::before {
  content: '\\231E';
}

Set it in JavaScript

document.querySelector('.bottom-left-corner').textContent = '⌞';
copied