Hi guys,I need to display temperature unit in Serial Monitor, but the same sketch get different results for Arduino IDE 1.8.57.0 and 2.0.2. (as picture show below).
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.print("°C\t");
delay(1500);
}
As in IDE 2.0.2, the unit could not display correctly, why and how to resolve?
Thanks.