Top Left Corner

Shortcodes

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

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

Customize Top Left Corner Symbol

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

Insert ⌜ Top Left Corner using HTML

1. Copy-paste Top Left Corner directly:
<span>⌜</span>
2. HTML Decimal Code:
<span>&#8988;</span>
3. Hexadecimal Code:
<span>&#x231C;</span>
Preview:

Add Top Left Corner symbol with CSS

.top-left-corner::before {
    content: '\\231C';
}
Preview: Top Left Corner

Top Left Corner JavaScript Code

1. Direct Symbol:
document.querySelector('.top-left-corner').textContent = '⌜';
2. Unicode Escape for ⌜:
document.querySelector('.top-left-corner').textContent = '\u231C';
Preview: