Right White Square Bracket

Shortcodes

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

Unicode
U+301B
HTML Code
〛
HEX Code
〛
CSS Code
\301B
JS/JSON
\u301B
Unix/C/PHP/JAVA
0x301B
URL-encode
%E3%80%9B

Customize Right White Square Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>〛</span>
HTML Code:
<span>&#12315;</span>
HEX Code:
<span>&#x301B;</span>

Add with CSS

.right-white-square-bracket::before {
  content: '\\301B';
}

Set it in JavaScript

document.querySelector('.right-white-square-bracket').textContent = '〛';
copied