Right Double Angle Bracket

Shortcodes

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

Unicode
U+300B
HTML Code
》
HEX Code
》
CSS Code
\300B
JS/JSON
\u300B
Unix/C/PHP/JAVA
0x300B
URL-encode
%E3%80%8B

Customize Right Double Angle Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>》</span>
HTML Code:
<span>&#12299;</span>
HEX Code:
<span>&#x300B;</span>

Add with CSS

.right-double-angle-bracket::before {
  content: '\\300B';
}

Set it in JavaScript

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