Top Right Crop

Shortcodes

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

Unicode
U+230E
HTML Code
⌎
HEX Code
⌎
CSS Code
\230E
JS/JSON
\u230E
Unix/C/PHP/JAVA
0x230E
URL-encode
%E2%8C%8E

Customize Top Right Crop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⌎</span>
HTML Code:
<span>&#8974;</span>
HEX Code:
<span>&#x230E;</span>

Add with CSS

.top-right-crop::before {
  content: '\\230E';
}

Set it in JavaScript

document.querySelector('.top-right-crop').textContent = '⌎';
copied