Mathematical Right Double Angle Bracket

Shortcodes

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

Unicode
U+27EB
HTML Code
⟫
HEX Code
⟫
CSS Code
\27EB
JS/JSON
\u27EB
Unix/C/PHP/JAVA
0x27EB
URL-encode
%E2%9F%AB

Customize Mathematical Right Double Angle Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟫</span>
HTML Code:
<span>&#10219;</span>
HEX Code:
<span>&#x27EB;</span>

Add with CSS

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

Set it in JavaScript

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