PowerShell: String Escape Sequences
These sequence of characters have special meaning when inside "QUOTATION MARK" quoted string.
`0 | Null |
`a | Alert |
`b | Backspace |
`e | Escape |
`f | Form feed |
`n | New line |
`r | Carriage return |
`t | Horizontal tab |
`u{h} | Unicode. h is 1 to 6 digits of the character's codepoint in hexadecimal |
`v | Vertical tab |
see ASCII Characters
example of a emoji:
"🦋" -eq "`u{1F98B}" # True