0
Decoded
Program String |
---|
Encoded
Program String |
---|
About Program String
A program string is a descriptive representation for defining a string in a programming language.
Enclose the string in double quotes (") and escape the following characters with the \ symbol.
Character | ASCII code of character | Escape result |
---|---|---|
(NUL) | 0x00 | \0 |
(BEL) | 0x07 | \a |
(BS) | 0x08 | \b |
(HT) | 0x09 | \t |
(LF) | 0x0A | \n |
(VT) | 0x0B | \v |
(FF) | 0x0C | \f |
(CR) | 0x0D | \r |
" | 0x22 | \" |
' | 0x27 | \' |
\ | 0x5C | \\ |