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
PowerShell String
- PowerShell: Quote String
- PowerShell: Double Quoted String, String Expansion
- PowerShell: Here-String
- PowerShell: Escape Characters
- PowerShell: String Operators
- PowerShell: Join String
- PowerShell: Split String
- PowerShell: Format String
- PowerShell: String Methods
- PowerShell: String Wildcards
- PowerShell: Regular Expression Operators
- PowerShell: Regular Expression Syntax