Right Square Bracket With Underbar

Shortcodes

Copy useful codes for right square bracket with underbar symbol ⦌ to use in websites, apps, blogs, and docs.

Unicode
U+298C
HTML Code
⦌
HEX Code
⦌
CSS Code
\298C
JS/JSON
\u298C
Unix/C/PHP/JAVA
0x298C
URL-encode
%E2%A6%8C

Customize Right Square Bracket With Underbar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⦌</span>
HTML Code:
<span>&#10636;</span>
HEX Code:
<span>&#x298C;</span>

Add with CSS

.right-square-bracket-with-underbar::before {
  content: '\\298C';
}

Set it in JavaScript

document.querySelector('.right-square-bracket-with-underbar').textContent = '⦌';
copied