Medium Left Parenthesis Ornament

Shortcodes

Copy useful codes for medium left parenthesis ornament symbol ❨ to use in websites, apps, blogs, and docs.

Unicode
U+2768
HTML Code
❨
HEX Code
❨
CSS Code
\2768
JS/JSON
\u2768
Unix/C/PHP/JAVA
0x2768
URL-encode
%E2%9D%A8

Customize Medium Left Parenthesis Ornament

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

  

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

Insert in HTML

1. Direct symbol:
<span>❨</span>
HTML Code:
<span>&#10088;</span>
HEX Code:
<span>&#x2768;</span>

Add with CSS

.medium-left-parenthesis-ornament::before {
  content: '\\2768';
}

Set it in JavaScript

document.querySelector('.medium-left-parenthesis-ornament').textContent = '❨';
copied