(solved) I want to print IP-address on webpage (Ethernet Shield)

Have you tried using itoa()??

char[4] printIP;

itoa((int)ip[0], printIP, 10);
Serial.print(printIP);
Serial.print(".");
//rinse repeat