Command
powershell -command " """"Hi there `\""Bobby`\"", my friend."""" "
powershell -command " """"Well hello `""""my friendo`"""", why so curious?"""" "
powershell -command " """"Hmm, why are you wondering about \""\""my curiosity?\""\""."""" "
powershell -command " """"I sense """"""""tension"""""""", no?"""" "
powershell -command " 'And what would the cause of this """"tension"""" be?' "
powershell -command " 'Oh you know, \"things\" of \"sorts\"...' "
powershell -command "$q=""`""""""; """"Interesting ${q}things${q} of ${q}sorts${q}?"""" "
powershell -command " """"Yes. $([char]34)THINGS$([char]34) of $([char]34)SORTS$([char]34)"""" "
powershell -command " """"This conversation is $('""""')soooo$('""""') over."""" "
powershell -command " """"Sure $('\"')is$('\"')."""" "
Powershell
"Hi there `"Bobby`", my friend."
"Well hello `"my friendo`", why so curious?"
"Hmm, why are you wondering about ""my curiosity?""."
"I sense ""tension"", no?"
'And what would the cause of this "tension" be?'
'Oh you know, "things" of "sorts"...'
$q="`""; "Interesting ${q}things${q} of ${q}sorts${q}?"
"Yes. $([char]34)THINGS$([char]34) of $([char]34)SORTS$([char]34)"
"This conversation is $('"')soooo$('"') over."
"Sure $('"')is$('"')."
Output
Hi there "Bobby", my friend.
Well hello "my friendo", why so curious?
Hmm, why are you wondering about "my curiosity?".
I sense "tension", no?
And what would the cause of this "tension" be?
Oh you know, "things" of "sorts"...
Interesting "things" of "sorts"?
Yes. "THINGS" of "SORTS"
This conversation is "soooo" over.
Sure "is".
Table (various methods)
| CMD in ("""") | PS1 in (") | CMD in (') | PS1 in (') |
|-------------------------|------------------------|------------|------------|
| `""""hi`"""" | `"hi`" | | |
| """"""""hi"""""""" | ""hi"" | ""hi"" | "hi" |
| $('""')hi$('""') | $('"')hi$('"') | | |
| $('\"')hi$('\"') | $('"')hi$('"') | | |
| `\""hi`\"" | ""hi"" | \"hi\" | "hi" |
| $([char]34)hi$([char]34)|$([char]34)hi$([char]34)| | |