Line Separator

rn

Shortcodes

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

Unicode
U+2028
HTML Code


HEX Code


CSS Code
\2028
JS/JSON
\u2028
Unix/C/PHP/JAVA
0x2028
URL-encode
%E2%80%A8

Customize Line Separator

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

rn
  

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

Insert in HTML

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

Add with CSS

.line-separator::before {
  content: '\\2028';
}

Set it in JavaScript

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