Top Left Crop

Shortcodes

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

Unicode
U+230F
HTML Code
⌏
HEX Code
⌏
CSS Code
\230F
JS/JSON
\u230F
Unix/C/PHP/JAVA
0x230F
URL-encode
%E2%8C%8F

Customize Top Left Crop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⌏</span>
HTML Code:
<span>&#8975;</span>
HEX Code:
<span>&#x230F;</span>

Add with CSS

.top-left-crop::before {
  content: '\\230F';
}

Set it in JavaScript

document.querySelector('.top-left-crop').textContent = '⌏';
copied