Line Feed

Shortcodes

Copy and paste codes for Line Feed symbol to use in your websites, apps, blogs, and more.

Unicode
U+000A
HTML Code


HEX Code


CSS Code
\00A
JS/JSON
\u000A
Unix/C/PHP/JAVA
0x0A
URL-encode
%0A
copied

Customize Line Feed Symbol

Customize symbol as you like and download Line Feed 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 Line Feed symbol in HTML, CSS, and JS?

Insert Line Feed using HTML

1. Copy-paste Line Feed directly:
<span>
</span>
2. HTML Decimal Code:
<span>&#10;</span>
3. Hexadecimal Code:
<span>&#x000A;</span>
Preview:

Add Line Feed symbol with CSS

.line-feed::before {
    content: '\\00A';
}
Preview: Line Feed

Line Feed JavaScript Code

1. Direct Symbol:
document.querySelector('.line-feed').textContent = '
';
2. Unicode Escape for :
document.querySelector('.line-feed').textContent = '\u000A';
Preview: