Mathematical Right Angle Bracket

Shortcodes

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

Unicode
U+27E9
HTML Code
⟩
HEX Code
⟩
CSS Code
\27E9
JS/JSON
\u27E9
Unix/C/PHP/JAVA
0x27E9
URL-encode
%E2%9F%A9

Customize Mathematical Right Angle Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟩</span>
HTML Code:
<span>&#10217;</span>
HEX Code:
<span>&#x27E9;</span>

Add with CSS

.mathematical-right-angle-bracket::before {
  content: '\\27E9';
}

Set it in JavaScript

document.querySelector('.mathematical-right-angle-bracket').textContent = '⟩';
copied