Raised Square

Shortcodes

Copy and paste codes for Raised Square symbol ⸋ to use in your websites, apps, blogs, and more.

Unicode
U+2E0B
HTML Code
⸋
HEX Code
⸋
CSS Code
\2E0B
JS/JSON
\u2E0B
Unix/C/PHP/JAVA
0x2E0B
URL-encode
%E2%B8%8B
copied

Customize Raised Square Symbol

Customize ⸋ symbol as you like and download Raised Square 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 Raised Square symbol in HTML, CSS, and JS?

Insert ⸋ Raised Square using HTML

1. Copy-paste Raised Square directly:
<span>⸋</span>
2. HTML Decimal Code:
<span>&#11787;</span>
3. Hexadecimal Code:
<span>&#x2E0B;</span>
Preview:

Add Raised Square symbol with CSS

.raised-square::before {
    content: '\\2E0B';
}
Preview: Raised Square

Raised Square JavaScript Code

1. Direct Symbol:
document.querySelector('.raised-square').textContent = '⸋';
2. Unicode Escape for ⸋:
document.querySelector('.raised-square').textContent = '\u2E0B';
Preview: