Right White Corner Bracket

Shortcodes

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

Unicode
U+300F
HTML Code
』
HEX Code
』
CSS Code
\300F
JS/JSON
\u300F
Unix/C/PHP/JAVA
0x300F
URL-encode
%E3%80%8F

Customize Right White Corner Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>』</span>
HTML Code:
<span>&#12303;</span>
HEX Code:
<span>&#x300F;</span>

Add with CSS

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

Set it in JavaScript

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