Right-pointing Curved Angle Bracket

Shortcodes

Copy and paste codes for Right-pointing Curved Angle Bracket symbol ⧽ to use in your websites, apps, blogs, and more.

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

Customize Right-pointing Curved Angle Bracket Symbol

Customize ⧽ symbol as you like and download Right-pointing Curved Angle Bracket 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 Right-pointing Curved Angle Bracket symbol in HTML, CSS, and JS?

Insert ⧽ Right-pointing Curved Angle Bracket using HTML

1. Copy-paste Right-pointing Curved Angle Bracket directly:
<span>⧽</span>
2. HTML Decimal Code:
<span>&#10749;</span>
3. Hexadecimal Code:
<span>&#x29FD;</span>
Preview:

Add Right-pointing Curved Angle Bracket symbol with CSS

.right-pointing-curved-angle-bracket::before {
    content: '\\29FD';
}
Preview: Right-pointing Curved Angle Bracket

Right-pointing Curved Angle Bracket JavaScript Code

1. Direct Symbol:
document.querySelector('.right-pointing-curved-angle-bracket').textContent = '⧽';
2. Unicode Escape for ⧽:
document.querySelector('.right-pointing-curved-angle-bracket').textContent = '\u29FD';
Preview: