Powershell: "This is a string with an 'embedded quote'."
It's helpful to remember that quotes will interpret the variables inside, while apostrophes will not. Very useful for scripting the creation of scripts. Example:
"It is $time" > It is 15:22
'It is $time' > It is $time
"'$time' is $time" > '$time' is 15:22