Vertical Bar Beside Right Triangle

Shortcodes

Copy useful codes for vertical bar beside right triangle symbol ⧐ to use in websites, apps, blogs, and docs.

Unicode
U+29D0
HTML Code
⧐
HEX Code
⧐
CSS Code
\29D0
JS/JSON
\u29D0
Unix/C/PHP/JAVA
0x29D0
URL-encode
%E2%A7%90

Customize Vertical Bar Beside Right Triangle

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

  

How to use Vertical Bar Beside Right Triangle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧐</span>
HTML Code:
<span>&#10704;</span>
HEX Code:
<span>&#x29D0;</span>

Add with CSS

.vertical-bar-beside-right-triangle::before {
  content: '\\29D0';
}

Set it in JavaScript

document.querySelector('.vertical-bar-beside-right-triangle').textContent = '⧐';
copied