Right-pointing Curved Angle Bracket

Shortcodes

Copy useful codes for right-pointing curved angle bracket symbol ⧽ to use in websites, apps, blogs, and docs.

Unicode
U+29FD
HTML Code
⧽
HEX Code
⧽
CSS Code
\29FD
JS/JSON
\u29FD
Unix/C/PHP/JAVA
0x29FD
URL-encode
%E2%A7%BD

Customize Right-pointing Curved Angle Bracket

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

  

How to use Right-pointing Curved Angle Bracket Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧽</span>
HTML Code:
<span>&#10749;</span>
HEX Code:
<span>&#x29FD;</span>

Add with CSS

.right-pointing-curved-angle-bracket::before {
  content: '\\29FD';
}

Set it in JavaScript

document.querySelector('.right-pointing-curved-angle-bracket').textContent = '⧽';
copied