What is the character sequence for space i.e. '\space'?

What is the character sequence for space i.e. ‘\space’?

You can just write ' ' to get the space char. If you want a numeric code escape, I suppose you could use '\032' or '\x20'?

2 Likes