Symbol For Carriage Return

Shortcodes

Copy useful codes for symbol for carriage return ␍ to use in websites, apps, blogs, and docs.

Unicode
U+240D
HTML Code
␍
HEX Code
␍
CSS Code
\240D
JS/JSON
\u240D
Unix/C/PHP/JAVA
0x240D
URL-encode
%E2%90%8D

Customize Symbol For Carriage Return

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

  

How to use Symbol For Carriage Return in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>␍</span>
HTML Code:
<span>&#9229;</span>
HEX Code:
<span>&#x240D;</span>

Add with CSS

.symbol-for-carriage-return::before {
  content: '\\240D';
}

Set it in JavaScript

document.querySelector('.symbol-for-carriage-return').textContent = '␍';
copied