Vertical Bar With Horizontal Stroke

Shortcodes

Copy useful codes for vertical bar with horizontal stroke symbol ⟊ to use in websites, apps, blogs, and docs.

Unicode
U+27CA
HTML Code
⟊
HEX Code
⟊
CSS Code
\27CA
JS/JSON
\u27CA
Unix/C/PHP/JAVA
0x27CA
URL-encode
%E2%9F%8A

Customize Vertical Bar With Horizontal Stroke

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

  

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

Insert in HTML

1. Direct symbol:
<span>⟊</span>
HTML Code:
<span>&#10186;</span>
HEX Code:
<span>&#x27CA;</span>

Add with CSS

.vertical-bar-with-horizontal-stroke::before {
  content: '\\27CA';
}

Set it in JavaScript

document.querySelector('.vertical-bar-with-horizontal-stroke').textContent = '⟊';
copied