Double Low-Reversed-9 Quotation Mark

Shortcodes

Copy useful codes for double low-reversed-9 quotation mark symbol ⹂ to use in websites, apps, blogs, and docs.

Unicode
U+2E42
HTML Code
⸢
HEX Code
⹂
CSS Code
\2E42
JS/JSON
\u2E42
Unix/C/PHP/JAVA
0x2E42
URL-encode
%E3%B9%82

Customize Double Low-Reversed-9 Quotation Mark

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

  

How to use Double Low-Reversed-9 Quotation Mark Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⹂</span>
HTML Code:
<span>&#11810;</span>
HEX Code:
<span>&#x2E42;</span>

Add with CSS

.double-low-reversed-9-quotation-mark::before {
  content: '\\2E42';
}

Set it in JavaScript

document.querySelector('.double-low-reversed-9-quotation-mark').textContent = '⹂';
copied