all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 additions and 0 deletions
10
Task/Special-characters/Java/special-characters-5.java
Normal file
10
Task/Special-characters/Java/special-characters-5.java
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
\b //Backspace
|
||||
\n //Line Feed
|
||||
\r //Carriage Return
|
||||
\f //Form Feed
|
||||
\t //Tab
|
||||
\0 //Null) Note. This is actually a OCTAL escape but handy nonetheless
|
||||
\' //Single Quote
|
||||
\" //Double Quote
|
||||
\\ //Backslash
|
||||
\DDD //Octal Escape Sequence, D is a number between 0 and 7; can only express characters from 0 to 255 (i.e. \0 to \377)
|
||||
Loading…
Add table
Add a link
Reference in a new issue