GPS NEO6MV2 configuration so it can work with arduino

This is the problem:

    Serial.print(ss.read());

It should be

    Serial.write(ss.read());

The print method will print the ASCII integer value of each character, not the character itself. For example, the data you showed is probably something like this:

    RC141100A44,77N01573,,.96,9001

That could be the raw NMEA data, but it's a little jumbled.

You should consider using a different serial port or software serial library. Here are some alternatives. That's from the installation page for my NeoGPS library.

NeoGPS is smaller, faster, more reliable and more accurate than all other libraries. It's available from the Arduino Library Manager, under the menu Sketch-> Include Library-> Manage Libraries. There are many examples that are structure properly. Other libraries' examples frequently break when modified.

Cheers,
/dev