what is the ASCII character "/o" ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what is the ASCII character "/o" ?

One time I was coding in Arduino. I used the littleBits Arduino bit board. I typed: Serial.println("HIGH/ON"); delay(1000); Then I saw the "/" and the "O" colored baby blue. I knew this was ASCII, but what was it? So does anyone know their ASCII characters? Can somebody help me with this?

6th Jan 2017, 10:40 PM
Mark
Mark - avatar
3 Answers
+ 1
\0 is the null character, it is used to terminate strings in C. (thats with character '\' before character zero, for escape)
7th Jan 2017, 12:25 AM
ifl
ifl - avatar
+ 1
Hmm, never seen this, and you're sure it wasn't a \0 (with the number zero, not the letter o)?
6th Jan 2017, 11:05 PM
Robobrine
Robobrine - avatar
0
Yeah, I made sure to type "/o", not "/0".
6th Jan 2017, 11:06 PM
Mark
Mark - avatar