Table of Contents

Powershell - Escape Character

About

The escape character in Powershell is the backtick.

Example

echo "`"Hello`""
# Regexp
echo '`[Hello`]'
"Hello"

'`[Hello`]'