Right Low Paraphrase Bracket

Shortcodes

Copy useful codes for right low paraphrase bracket symbol ⸝ to use in websites, apps, blogs, and docs.

Unicode
U+2E1D
HTML Code
⸝
HEX Code
⸝
CSS Code
\2E1D
JS/JSON
\u2E1D
Unix/C/PHP/JAVA
0x2E1D
URL-encode
%E2%B8%9D

Customize Right Low Paraphrase Bracket

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

  

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

Insert in HTML

1. Direct symbol:
<span>⸝</span>
HTML Code:
<span>&#11805;</span>
HEX Code:
<span>&#x2E1D;</span>

Add with CSS

.right-low-paraphrase-bracket::before {
  content: '\\2E1D';
}

Set it in JavaScript

document.querySelector('.right-low-paraphrase-bracket').textContent = '⸝';
copied