Enter Symbol

Unicode Name: Downwards Arrow With Corner Leftwardsn

Shortcodes

Copy useful codes for enter symbol ↵ to use in websites, apps, blogs, and docs.

Unicode
U+21B5
HTML Code
↵
HTML Entity
↵
HEX Code
↵
CSS Code
\21B5
JS/JSON
\u21B5
Unix/C/PHP/JAVA
0x21B5
URL-encode
%E2%86%B5

Customize Enter Symbol

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

  

How to use Enter Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>↵</span>
HTML Code:
<span>&#8629;</span>
HTML Entity:
<span>&crarr;</span>
HEX Code:
<span>&#x21B5;</span>

Add with CSS

.enter::before {
  content: '\\21B5';
}

Set it in JavaScript

document.querySelector('.enter').textContent = '↵';
copied