Raised Square

Shortcodes

Copy useful codes for raised square symbol ⸋ to use in websites, apps, blogs, and docs.

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

Customize Raised Square

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

  

How to use Raised Square Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸋</span>
HTML Code:
<span>&#11787;</span>
HEX Code:
<span>&#x2E0B;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.raised-square').textContent = '⸋';
copied