Circled Parallel

Shortcodes

Copy useful codes for circled parallel symbol ⦷ to use in websites, apps, blogs, and docs.

Unicode
U+29B7
HTML Code
⦷
HEX Code
⦷
CSS Code
\29B7
JS/JSON
\u29B7
Unix/C/PHP/JAVA
0x29B7
URL-encode
%E2%A6%B7

Customize Circled Parallel

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

  

How to use Circled Parallel Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⦷</span>
HTML Code:
<span>&#10679;</span>
HEX Code:
<span>&#x29B7;</span>

Add with CSS

.circled-parallel::before {
  content: '\\29B7';
}

Set it in JavaScript

document.querySelector('.circled-parallel').textContent = '⦷';
copied