Left-pointing Curved Angle Bracket

Shortcodes

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

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

Customize Left-pointing Curved Angle Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⧼</span>
HTML Code:
<span>&#10748;</span>
HEX Code:
<span>&#x29FC;</span>

Add with CSS

.left-pointing-curved-angle-bracket::before {
  content: '\\29FC';
}

Set it in JavaScript

document.querySelector('.left-pointing-curved-angle-bracket').textContent = '⧼';
copied