Double Low-9 Quotation Mark

Shortcodes

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

Unicode
U+201E
Alt Code
0132
HTML Code
„
HEX Code
„
CSS Code
\201E
JS/JSON
\u201E
Unix/C/PHP/JAVA
0x201E
URL-encode
%E2%80%9E

Customize Double Low-9 Quotation Mark

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

  

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

Insert in HTML

1. Direct symbol:
<span>„</span>
HTML Code:
<span>&#8222;</span>
HEX Code:
<span>&#x201E;</span>

Add with CSS

.double-low-9-quotation-mark::before {
  content: '\\201E';
}

Set it in JavaScript

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