Medium Left Curly Bracket Ornament

Shortcodes

Copy useful codes for medium left curly bracket ornament symbol ❴ to use in websites, apps, blogs, and docs.

Unicode
U+2774
HTML Code
❴
HEX Code
❴
CSS Code
\2774
JS/JSON
\u2774
Unix/C/PHP/JAVA
0x2774
URL-encode
%E2%9D%B4

Customize Medium Left Curly Bracket Ornament

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

  

How to use Medium Left Curly Bracket Ornament Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❴</span>
HTML Code:
<span>&#10100;</span>
HEX Code:
<span>&#x2774;</span>

Add with CSS

.medium-left-curly-bracket-ornament::before {
  content: '\\2774';
}

Set it in JavaScript

document.querySelector('.medium-left-curly-bracket-ornament').textContent = '❴';
copied