Left-pointing Curved Angle Bracket

Shortcodes

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

Unicode
U+29FC
HTML Code
⧼
HEX Code
⧼
CSS Code
\29FC
JS/JSON
\u29FC
Unix/C/PHP/JAVA
0x29FC
URL-encode
%E2%A7%BC
copied

Customize Left-pointing Curved Angle Bracket Symbol

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

Insert ⧼ Left-pointing Curved Angle Bracket using HTML

1. Copy-paste Left-pointing Curved Angle Bracket directly:
<span>⧼</span>
2. HTML Decimal Code:
<span>&#10748;</span>
3. Hexadecimal Code:
<span>&#x29FC;</span>
Preview:

Add Left-pointing Curved Angle Bracket symbol with CSS

.left-pointing-curved-angle-bracket::before {
    content: '\\29FC';
}
Preview: Left-pointing Curved Angle Bracket

Left-pointing Curved Angle Bracket JavaScript Code

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