Table of Contents

About

The escape character in Powershell is the backtick.

Example

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

  • With Regexp, you need to use a single quote
'`[Hello`]'