You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`\r`|Retour chariot: non utilisé seul. Les fichiers texte Windows utilisent une combinaison de deux caractères `\r\n`pour représenter un saut de ligne. |
85
+
|`\r`|Dans les fichiers texte Windows, une combinaison de deux caractères `\r\n`représente une nouvelle pause, tandis que sur un système d'exploitation non Windows, il s'agit simplement de `\n`. C'est pour des raisons historiques, la plupart des logiciels Windows comprennent également `\n`.|
87
86
|`\'`, `\"`| Quotes |
88
87
|`\\`| Backslash |
89
88
|`\t`| Tab |
90
89
|`\b`, `\f`, `\v`| Backspace, Form Feed, Vertical Tab -- conservés pour compatibilité, non utilisés de nos jours. |
91
90
|`\xXX`| Caractère Unicode avec l'unicode hexadécimal donné `XX`, par exemple `'\x7A'` est le même que `'z'`. |
|`\u{X…XXXXXX}` (de 1 à 6 caractères hexadécimaux ) | Un symbole Unicode avec l'encodage UTF-32. Certains caractères rares sont encodés avec deux symboles Unicode, prenant 4 octets. De cette façon, nous pouvons insérer des codes longs. |
94
-
=======
95
-
| Character | Description |
96
-
|-----------|-------------|
97
-
|`\n`|New line|
98
-
|`\r`|In Windows text files a combination of two characters `\r\n` represents a new break, while on non-Windows OS it's just `\n`. That's for historical reasons, most Windows software also understands `\n`. |
99
-
|`\'`, `\"`|Quotes|
100
-
|`\\`|Backslash|
101
-
|`\t`|Tab|
102
-
|`\b`, `\f`, `\v`| Backspace, Form Feed, Vertical Tab -- kept for compatibility, not used nowadays. |
103
-
|`\xXX`|Unicode character with the given hexadecimal Unicode `XX`, e.g. `'\x7A'` is the same as `'z'`.|
|`\u{X…XXXXXX}` (1 to 6 hex characters)|A Unicode symbol with the given UTF-32 encoding. Some rare characters are encoded with two Unicode symbols, taking 4 bytes. This way we can insert long codes. |
0 commit comments