want to print single quote using awk

i want to print ' symbol using awk i tried:
awk '{print " ' "}'
awk '{print "\' "}'
both not work please help me.

Use the octal code:

awk 'BEGIN{print "\047"}'

thanks its working