Technical information

Symbol
NameCarriage return (cr)
Unicode numberU+000D
CategoryASCII Table1. ASCII control characters
DescriptionThe Unicode character Carriage Return (CR), or U+000D, is known as the "Carriage Return". It falls under the "C0 Controls and Basic Latin" block and the "Control" category in the Unicode standard. Its name comes from the action performed by a mechanical typewriter when it reaches the end of a line - returning the carriage to the beginning of a new line. In digital systems and applications, the carriage return character is frequently used alongside the Line Feed (LF) to represent a new line. However, its specific function can vary depending on the system it's used in.

Encoding

HTML Entity
HTML Entity (hex)
URL Escape Code%0D
UTF-8 (hex)0x0D
UTF-8 (binary)00001101
UTF-160x000D
UTF-320x0000000D

Source Code

C, C++, and Java"\u000D"
CSS Code\000D
JavaScript"\u000D"
Perl\x{000D}
Python 2u"\u000D"
Python 3\u000D
Ruby\u{000D}

Preview

This Unicode character looks like this in sentence and in bold like this and in italic like this .

Font size:

12px
16px
20px
28px
36px
48px
72px

CSS Property: font-weight

100
200
300
400
500
600
700
800
900

HTML Forms and Input

input
disabled input
input-group
select
button
button

Code examples in HTML and CSS

<span>&#13;</span>

            
span {
    content: "\000D";
}

The symbol in different fonts

-apple-system
Apple Color Emoji
Arial
BlinkMacSystemFont
Courier New
Georgia
Droid Sans
Helvetica
Noto Sans
Oxygen
Roboto
"Segoe UI"
sans-serif
Segoe UI Emoji
Segoe UI Symbol
system-ui
Times New Roman
Ubuntu
Verdana

References