Versicle

Shortcodes

Copy useful codes for versicle symbol ℣ to use in websites, apps, blogs, and docs.

Unicode
U+2123
HTML Code
℣
HEX Code
℣
CSS Code
\2123
JS/JSON
\u2123
Unix/C/PHP/JAVA
0x2123
URL-encode
%E2%84%A3

Customize Versicle

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

  

How to use Versicle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>℣</span>
HTML Code:
<span>&#8483;</span>
HEX Code:
<span>&#x2123;</span>

Add with CSS

.versicle::before {
  content: '\\2123';
}

Set it in JavaScript

document.querySelector('.versicle').textContent = '℣';
copied