Turned Comma

Shortcodes

Copy and paste codes for Turned Comma symbol ⸲ to use in your websites, apps, blogs, and more.

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

Customize Turned Comma Symbol

Customize ⸲ symbol as you like and download Turned Comma as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Turned Comma symbol in HTML, CSS, and JS?

Insert ⸲ Turned Comma using HTML

1. Copy-paste Turned Comma directly:
<span>⸲</span>
2. HTML Decimal Code:
<span>&#11826;</span>
3. Hexadecimal Code:
<span>&#x2E32;</span>
Preview:

Add Turned Comma symbol with CSS

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

Turned Comma JavaScript Code

1. Direct Symbol:
document.querySelector('.turned-comma').textContent = '⸲';
2. Unicode Escape for ⸲:
document.querySelector('.turned-comma').textContent = '\u2E32';
Preview: