Mathematical Left Angle Bracket

Shortcodes

Copy useful codes for mathematical left angle bracket symbol ⟨ to use in websites, apps, blogs, and docs.

Unicode
U+27E8
HTML Code
⟨
HEX Code
⟨
CSS Code
\27E8
JS/JSON
\u27E8
Unix/C/PHP/JAVA
0x27E8
URL-encode
%E2%9F%A8

Customize Mathematical Left Angle Bracket

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

  

How to use Mathematical Left Angle Bracket Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⟨</span>
HTML Code:
<span>&#10216;</span>
HEX Code:
<span>&#x27E8;</span>

Add with CSS

.mathematical-left-angle-bracket::before {
  content: '\\27E8';
}

Set it in JavaScript

document.querySelector('.mathematical-left-angle-bracket').textContent = '⟨';
copied