Line Feed

rn

Shortcodes

Copy useful codes for line feed symbol rn to use in websites, apps, blogs, and docs.

Unicode
U+000A
HTML Code


HEX Code


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

Customize Line Feed

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

rn
  

How to use Line Feed Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>rn</span>
HTML Code:
<span>&#10;</span>
HEX Code:
<span>&#x000A;</span>

Add with CSS

.line-feed::before {
  content: '\\000A';
}

Set it in JavaScript

document.querySelector('.line-feed').textContent = 'rn';
copied