Reversed Semicolon

Shortcodes

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

Unicode
U+204F
HTML Code
⁏
HEX Code
⁏
CSS Code
\204F
JS/JSON
\u204F
Unix/C/PHP/JAVA
0x204F
URL-encode
%E2%81%8F

Customize Reversed Semicolon

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

  

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

Insert in HTML

1. Direct symbol:
<span>⁏</span>
HTML Code:
<span>&#8271;</span>
HEX Code:
<span>&#x204F;</span>

Add with CSS

.reversed-semicolon::before {
  content: '\\204F';
}

Set it in JavaScript

document.querySelector('.reversed-semicolon').textContent = '⁏';
copied