Mathematical Left Double Angle Bracket

Shortcodes

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

Unicode
U+27EA
HTML Code
⟪
HEX Code
⟪
CSS Code
\27EA
JS/JSON
\u27EA
Unix/C/PHP/JAVA
0x27EA
URL-encode
%E2%9F%AA

Customize Mathematical Left Double Angle Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟪</span>
HTML Code:
<span>&#10218;</span>
HEX Code:
<span>&#x27EA;</span>

Add with CSS

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

Set it in JavaScript

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