I have to initialize string as \"Rose\" including Quotation Mark. How to write \" in our string?
Escape the double quote with \
NSString *yourString = @"\"Rose\"";