Medium Right-pointing Angle Bracket Ornament

Shortcodes

Copy useful codes for medium right-pointing angle bracket ornament symbol ❭ to use in websites, apps, blogs, and docs.

Unicode
U+276D
HTML Code
❭
HEX Code
❭
CSS Code
\276D
JS/JSON
\u276D
Unix/C/PHP/JAVA
0x276D
URL-encode
%E2%9D%AD

Customize Medium Right-pointing Angle Bracket Ornament

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

  

How to use Medium Right-pointing Angle Bracket Ornament Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>❭</span>
HTML Code:
<span>&#10093;</span>
HEX Code:
<span>&#x276D;</span>

Add with CSS

.medium-right-pointing-angle-bracket-ornament::before {
  content: '\\276D';
}

Set it in JavaScript

document.querySelector('.medium-right-pointing-angle-bracket-ornament').textContent = '❭';
copied