Turned Ampersand

Shortcodes

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

Unicode
U+214B
HTML Code
⅋
HEX Code
⅋
CSS Code
\214B
JS/JSON
\u214B
Unix/C/PHP/JAVA
0x214B
URL-encode
%E2%85%8B

Customize Turned Ampersand

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

  

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

Insert in HTML

1. Direct symbol:
<span>⅋</span>
HTML Code:
<span>&#8523;</span>
HEX Code:
<span>&#x214B;</span>

Add with CSS

.turned-ampersand::before {
  content: '\\214B';
}

Set it in JavaScript

document.querySelector('.turned-ampersand').textContent = '⅋';
copied