Turned Comma

Shortcodes

Copy useful codes for turned comma symbol ⸲ to use in websites, apps, blogs, and docs.

Unicode
U+2E32
HTML Code
⸲
HEX Code
⸲
CSS Code
\2E32
JS/JSON
\u2E32
Unix/C/PHP/JAVA
0x2E32
URL-encode
%E2%B8%B2

Customize Turned Comma

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

  

How to use Turned Comma Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸲</span>
HTML Code:
<span>&#11826;</span>
HEX Code:
<span>&#x2E32;</span>

Add with CSS

.turned-comma::before {
  content: '\\2E32';
}

Set it in JavaScript

document.querySelector('.turned-comma').textContent = '⸲';
copied