Double High-Reversed-9 Quotation Mark

Shortcodes

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

Unicode
U+201F
HTML Code
‟
HEX Code
‟
CSS Code
\201F
JS/JSON
\u201F
Unix/C/PHP/JAVA
0x201F
URL-encode
%E2%80%9F

Customize Double High-Reversed-9 Quotation Mark

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

  

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

Insert in HTML

1. Direct symbol:
<span>‟</span>
HTML Code:
<span>&#8223;</span>
HEX Code:
<span>&#x201F;</span>

Add with CSS

.double-high-reversed-9-quotation-mark::before {
  content: '\\201F';
}

Set it in JavaScript

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