Sending the " character with Serial.Print

Hello, i have a general arduino question here.

when using the Serial.print("print_this_line") function, how would someone send a " character ??

The exact string i need to send is Serial.print("8s"001") you can see, the " in the middle of the command, i need to transmit that.
the problem is that the compiler sees "8s" as my string and the 001" as an error.
any suggestions ?

chr(34)

Is the ASCII for "
Just add it in to your print statement

Serial.print(" this is a quote"+ chr(34));

Or put a backslash \ in front of the " you want to include Serial.print ("\"Hi there!\", he cried."));

hey thanks for the replies guys! I ended up using Serial.print('8s"001') which served my purpose just fine.

But i am very glad to know the "" trick, as im sure this will save me in the future!

justinhalek:
I ended up using Serial.print('8s"001')

If you are expecting that to output 8s"001 then I think you are going to be disappointed.