I'm sending the following string through bluetooth to my Arduino: "Hello\n". On the Arduino side, I'm receiving the string and printing it the following way:
You need to post a complete program so we can see how variables are defined.
It is not a good idea to use the String (capital S) class on an Arduino as it can cause memory corruption in the small memory on an Arduino. Just use cstrings - char arrays terminated with 0.