Top Right Corner

Shortcodes

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

Unicode
U+231D
HTML Code
⌝
HEX Code
⌝
CSS Code
\231D
JS/JSON
\u231D
Unix/C/PHP/JAVA
0x231D
URL-encode
%E2%8C%9D

Customize Top Right Corner

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

  

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

Insert in HTML

1. Direct symbol:
<span>⌝</span>
HTML Code:
<span>&#8989;</span>
HEX Code:
<span>&#x231D;</span>

Add with CSS

.top-right-corner::before {
  content: '\\231D';
}

Set it in JavaScript

document.querySelector('.top-right-corner').textContent = '⌝';
copied