Circulation Function

Shortcodes

Copy useful codes for circulation function symbol ⨐ to use in websites, apps, blogs, and docs.

Unicode
U+2A10
HTML Code
⨐
HEX Code
⨐
CSS Code
\2A10
JS/JSON
\u2A10
Unix/C/PHP/JAVA
0x2A10
URL-encode
%E2%A8%90

Customize Circulation Function

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

  

How to use Circulation Function Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨐</span>
HTML Code:
<span>&#10768;</span>
HEX Code:
<span>&#x2A10;</span>

Add with CSS

.circulation-function::before {
  content: '\\2A10';
}

Set it in JavaScript

document.querySelector('.circulation-function').textContent = '⨐';
copied