Up Arrowhead Between Two Horizontal Bars

Shortcodes

Copy useful codes for up arrowhead between two horizontal bars symbol ⌤ to use in websites, apps, blogs, and docs.

Unicode
U+2324
HTML Code
⌤
HEX Code
⌤
CSS Code
\2324
JS/JSON
\u2324
Unix/C/PHP/JAVA
0x2324
URL-encode
%E2%8C%A4

Customize Up Arrowhead Between Two Horizontal Bars

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

  

How to use Up Arrowhead Between Two Horizontal Bars Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌤</span>
HTML Code:
<span>&#8996;</span>
HEX Code:
<span>&#x2324;</span>

Add with CSS

.up-arrowhead-between-two-horizontal-bars::before {
  content: '\\2324';
}

Set it in JavaScript

document.querySelector('.up-arrowhead-between-two-horizontal-bars').textContent = '⌤';
copied