Right Angle Variant With Square

Shortcodes

Copy useful codes for right angle variant with square symbol ⦜ to use in websites, apps, blogs, and docs.

Unicode
U+299C
HTML Code
⦜
HEX Code
⦜
CSS Code
\299C
JS/JSON
\u299C
Unix/C/PHP/JAVA
0x299C
URL-encode
%E2%A6%9C

Customize Right Angle Variant With Square

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

  

How to use Right Angle Variant With Square Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦜</span>
HTML Code:
<span>&#10652;</span>
HEX Code:
<span>&#x299C;</span>

Add with CSS

.right-angle-variant-with-square::before {
  content: '\\299C';
}

Set it in JavaScript

document.querySelector('.right-angle-variant-with-square').textContent = '⦜';
copied