Single High-Reversed-9 Quotation Mark

Shortcodes

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

Unicode
U+201B
HTML Code
‛
HEX Code
‛
CSS Code
\201B
JS/JSON
\u201B
Unix/C/PHP/JAVA
0x201B
URL-encode
%E2%80%9B

Customize Single High-Reversed-9 Quotation Mark

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

  

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

Insert in HTML

1. Direct symbol:
<span>‛</span>
HTML Code:
<span>&#8219;</span>
HEX Code:
<span>&#x201B;</span>

Add with CSS

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

Set it in JavaScript

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