$test = 'ab$cd'; print "$test\n"; #prints ab$cd\n #only when you actually have the $ in double quotes... print "ab$cd\n"; #do you need to worry about it #### eval "\Q$test\E";