Skip to content

Instantly share code, notes, and snippets.

@dwightguth
Last active July 20, 2021 19:27
Show Gist options
  • Save dwightguth/ca15e906b0f82c823668e66c09a6a080 to your computer and use it in GitHub Desktop.
Save dwightguth/ca15e906b0f82c823668e66c09a6a080 to your computer and use it in GitHub Desktop.
Escape Sequence Meaning
\" The literal character "
\\ The literal character \
\n The newline character (ASCII code 0x0a)
\r The carriage return character (ASCII code 0x0d)
\t The tab character (ASCII code 0x09)
\f The form feed character (ASCII code 0x0c)
\x00 \x followed by 2 hexadecimal digits indicates a code point between 0x00 and 0xFF
\u0000 \u followed by 4 hexadecimal digits indicates a code point between 0x0000 and 0xFFFF
\U00000000 \U followed by 8 hexadecimal digits indicates a code point between 0x0000 and 0x10FFFF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment