Reversed Comma

Shortcodes

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

Unicode
U+2E41
HTML Code
⹁
HEX Code
⹁
CSS Code
\2E41
JS/JSON
\u2E41
Unix/C/PHP/JAVA
0x2E41
URL-encode
%E2%B9%81

Customize Reversed Comma

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

  

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

Insert in HTML

1. Direct symbol:
<span>⹁</span>
HTML Code:
<span>&#11841;</span>
HEX Code:
<span>&#x2E41;</span>

Add with CSS

.reversed-comma::before {
  content: '\\2E41';
}

Set it in JavaScript

document.querySelector('.reversed-comma').textContent = '⹁';
copied