Single Low-9 Quotation Mark

Shortcodes

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

Unicode
U+201A
Alt Code
0130
HTML Code
‚
HEX Code
‚
CSS Code
\201A
JS/JSON
\u201A
Unix/C/PHP/JAVA
0x201A
URL-encode
%E2%80%9A

Customize Single Low-9 Quotation Mark

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

  

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

Insert in HTML

1. Direct symbol:
<span>‚</span>
HTML Code:
<span>&#8218;</span>
HEX Code:
<span>&#x201A;</span>

Add with CSS

.single-low-9-quotation-mark::before {
  content: '\\201A';
}

Set it in JavaScript

document.querySelector('.single-low-9-quotation-mark').textContent = '‚';
copied