Top Left Corner

Shortcodes

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

Unicode
U+231C
HTML Code
⌜
HEX Code
⌜
CSS Code
\231C
JS/JSON
\u231C
Unix/C/PHP/JAVA
0x231C
URL-encode
%E2%8C%9C

Customize Top Left Corner

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

  

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

Insert in HTML

1. Direct symbol:
<span>⌜</span>
HTML Code:
<span>&#8988;</span>
HEX Code:
<span>&#x231C;</span>

Add with CSS

.top-left-corner::before {
  content: '\\231C';
}

Set it in JavaScript

document.querySelector('.top-left-corner').textContent = '⌜';
copied