string strurl = txtEnterURL.Text;WebClient obiwebcl = new WebClient();byte[] bytereqhtml = obiwebcl.DownloadData(@strurl); //creating object for utf encoding UTF8Encoding utf8en = new UTF8Encoding(); Label1.Text = utf8en.GetString(bytereqhtml);