Bottom Right Crop

Shortcodes

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

Unicode
U+230C
HTML Code
⌌
HEX Code
⌌
CSS Code
\230C
JS/JSON
\u230C
Unix/C/PHP/JAVA
0x230C
URL-encode
%E2%8C%8C

Customize Bottom Right Crop

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

  

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

Insert in HTML

1. Direct symbol:
<span>⌌</span>
HTML Code:
<span>&#8972;</span>
HEX Code:
<span>&#x230C;</span>

Add with CSS

.bottom-right-crop::before {
  content: '\\230C';
}

Set it in JavaScript

document.querySelector('.bottom-right-crop').textContent = '⌌';
copied