This commit is contained in:
Philippe Torrel
2026-06-18 10:49:04 +02:00
parent a1b0051a0b
commit 28c0a44ead
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# EscapeNotation (Backslash Maskierung)
Neben gewöhnlichen, druckbaren Zeichen gibt es Sonderzeichen, die mittels [Escape-Notation](https://www.w3schools.com/python/python_strings_escape.asp#:~:text=An%20escape%20character%20is%20a,character%20you%20want%20to%20insert.) kodiert werden können:
| Code | Ausgabe |
| -------------------- | --------------------------------- |
| `\0` | das NULL-Zeichen |
| `\'` | einfaches Anführungszeichen |
| `\"` | doppeltes Anführungszeichen |
| `\\` | Rückwärtsschrägstrich (backslash) |
| `\n` | Zeilenumbruch (new line) |
| `\r` | Zeilenanfang (carriage return) |
| `\v` | vertikaler Tabulator |
| `\t` | Tabulator |
| `\b` | Backspace |
| `\f` | Seitenvorschub (form feed) |
| `\uXXXX` | Unicode-Codepoint |
| `\u{X}``\u{XXXXXX}` | Unicode-Codepoint |
| `\xXX` | Latin-1-Zeichen |

Binary file not shown.