LIKE vs Equals (=) performance

Hi,
Is there any significant difference in perfomance between LIKE (without wildcards) and ‘=’ operator?

If possible use equal operator various optimization reasons.
As far as performance consider you should not see much, unless query produce huge results ( LIKE has to regular expression evaluation vs straight comparison). IndexScan wise both are same.