Enter Symbol

Unicode Name: Downwards Arrow With Corner Leftwards

Shortcodes

Copy and paste codes for Enter Symbol ↵ to use in your websites, apps, blogs, and more.

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
copied

Customize Enter Symbol Symbol

Customize ↵ symbol as you like and download Enter Symbol as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Enter Symbol in HTML, CSS, and JS?

Insert ↵ Enter Symbol using HTML

1. Copy-paste Enter Symbol directly:
<span>↵</span>
2. HTML Decimal Code:
<span>&#8629;</span>
3. HTML Entity:
<span>&crarr;</span>
4. Hexadecimal Code:
<span>&#x21B5;</span>
Preview:

Add Enter Symbol with CSS

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

Enter Symbol JavaScript Code

1. Direct Symbol:
document.querySelector('.enter').textContent = '↵';
2. Unicode Escape for ↵:
document.querySelector('.enter').textContent = '\u21B5';
Preview: