PowerShell: Escape Characters
These sequence of characters have special meaning when inside double 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:
# 😃 # codepoint decimal 128515 # codepoint hexadecimal 1f603 "😃" -eq "`u{1F603}" # true