in reply to Re^2: Scalar joining, concatenation, involving varying text
in thread Scalar joining, concatenation, involving varying text

\ in string literals causes the next character as ordinary, so yes, it will will prevent interpolation:
$cow = 'moo!'; $_ = 'cow'; print("$cow"); # Prints moo! print("\$cow"); # Prints $cow print("\\\$cow"); # Prints \$cow print("\$$_"); # Prints $cow print(eval "$cow"); # Error executing "moo!". print(eval "\$cow"); # Prints moo! print(eval "\$$_"); # Prints moo!

qq{...} is the same thing as "..."