\r
Carriage return
Decimal: 13
Hex: 0D
Control
ASCII Values
Decimal
13
Hexadecimal
0x0D
Character
\r
Usage Examples
JavaScript (from decimal)
String.fromCharCode(13); // "\r"
JavaScript (to decimal)
"\r".charCodeAt(0); // 13
Python
chr(13) # "\r"
ord("\r") # 13C/C++
char c = 13; // '\r' int code = '\r'; // 13
Control Characters
Control characters (0-31, 127) are non-printable characters used for text formatting and device control. Common examples include newline (10), carriage return (13), and tab (9).