Top Right Corner

Shortcodes

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

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

Customize Top Right Corner Symbol

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

Insert ⌝ Top Right Corner using HTML

1. Copy-paste Top Right Corner directly:
<span>⌝</span>
2. HTML Decimal Code:
<span>&#8989;</span>
3. Hexadecimal Code:
<span>&#x231D;</span>
Preview:

Add Top Right Corner symbol with CSS

.top-right-corner::before {
    content: '\\231D';
}
Preview: Top Right Corner

Top Right Corner JavaScript Code

1. Direct Symbol:
document.querySelector('.top-right-corner').textContent = '⌝';
2. Unicode Escape for ⌝:
document.querySelector('.top-right-corner').textContent = '\u231D';
Preview: