Right Corner Bracket

Shortcodes

Copy useful codes for right corner bracket symbol 」 to use in websites, apps, blogs, and docs.

Unicode
U+300D
HTML Code
」
HEX Code
」
CSS Code
\300D
JS/JSON
\u300D
Unix/C/PHP/JAVA
0x300D
URL-encode
%E3%80%8D

Customize Right Corner Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>」</span>
HTML Code:
<span>&#12301;</span>
HEX Code:
<span>&#x300D;</span>

Add with CSS

.right-corner-bracket::before {
  content: '\\300D';
}

Set it in JavaScript

document.querySelector('.right-corner-bracket').textContent = '」';
copied