Strange encoding problem with Arduino Uno Wifi Rev2

I've just received my Arduino Uno Wifi Rev2 and tried to update an existing project that works on the Arduino Uno. In the setup method I'm writing the text "Start" to the serial port. For some reason the serial monitor displays some random characters. So I started a new sketch with a very simple test program:

void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for native USB port only
  }
  Serial.println("START");
}

void loop() {
  // put your main code here, to run repeatedly:

}

This sketch now sometimes outputs "?TART" and sometimes "*UIQ5." What is even stranger is that when I e.g. load the "CheckFirmwareVersion" example the serial output is fine. I can then also add text to the start of an existing string and it outputs fine. But If I replace an existing string completely with "START" I get the wrong output again.

I also found out that the digitalPinToInterrupt method does not work like on the Arduino Uno. When I pass the parameter 2 to this method it translates to 0 on the Arduino Uno and that works fine. But on the Wifi Rev this should translate to 2 in order to work.

I work on a Mac Pro with Arduino IDE version 1.8.8. Are these known problems and how can I solve them?

Edit: I also tested this on a Windows Pc with a fresh Arduino installation and I've got the same problem. I also updated the bootloader and the Wifi Firmware to the latest version. Does no one else have this problem?

Does really nobody else have this problem? I've tried this on multiple computers, operating systems, two different Arduino's and also with the latest version of the Arduino IDE and had the problem every time.

What is
while (!Serial)
supposed to do?

DrDiettrich:
What is
while (!Serial)
supposed to do?

On some boards this is required because the usb serial port takes some time to initialize, so I tried if it helps. But the problem also occurs without those lines.

If nobody else does have that problem, your board or USB cable (power supply) seems to be broken.

DrDiettrich:
If nobody else does have that problem, your board or USB cable (power supply) seems to be broken.

I've already tested this on two wifi boards and with two different usb cables. I also have no problems with my Arduino UNO. And the problem only seams to occur in the setup method. Does the Arduino Wifi rev2 maybe sends something to the serial port at startup that messes with the output?

I also tried this serial monitor: ‎SerialTools im Mac App Store
In this serial monitor I don't receive anything until I check the DTR checkbox. This is not required on the Arduino UNO. Is this a normal behaviour on the Wifi Rev2 or could this be a part of the problem?

TheNetStriker:
Does no one else have this problem?

Hi,
I have the same strange problems.....
About my project:
I have built a custom board, I have removed the MCU from the original board, and now I use the original board to upload the code in new custom boar,(i have used short wire, twisted, 3 ground in the connector )
The serial communication doesn't work at all with this,

With original board sometime I have broken communication like "?Hello Wor¿ÿ"
same problems if I use FT232 for communication

Any idea can help,