Serial Monitor for IDE 1.8.9 and 2.0.2 Display °C Problem

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.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.