Parallel With Horizontal Stroke

Shortcodes

Copy useful codes for parallel with horizontal stroke symbol ⫲ to use in websites, apps, blogs, and docs.

Unicode
U+2AF2
HTML Code
⫲
HEX Code
⫲
CSS Code
\2AF2
JS/JSON
\u2AF2
Unix/C/PHP/JAVA
0x2AF2
URL-encode
%E2%AB%B2

Customize Parallel With Horizontal Stroke

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

  

How to use Parallel With Horizontal Stroke Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⫲</span>
HTML Code:
<span>&#10994;</span>
HEX Code:
<span>&#x2AF2;</span>

Add with CSS

.parallel-with-horizontal-stroke::before {
  content: '\\2AF2';
}

Set it in JavaScript

document.querySelector('.parallel-with-horizontal-stroke').textContent = '⫲';
copied