Java escape sequences
| Escape sequence | Character name |
| \n | New line |
| \t | Tab |
| \b | Backspace |
| \f | Form feed |
| \r | Return |
| \" | Double quote |
| \' | Single quote |
| \\ | Back slash |
| \uXXXX | Unicode char, where XXXX is the unicode hex value |
Other special sequences
New line and carriage returnEscape sequence: \r\n
Used in text files in Windows, specially in notepad.