API 통신을할때 언어셋이 다른경우 한글이 깨져서 나오는경우가 발생한다. 그때 EUC-KR 에서 UTF8로 변환하는 코드이다. URL인코딩을 한경우 HttpUtility.UrlDecode() 메소드를 통해디코딩할때 Encoding.GetEncoding(51949) 메소드를 이용하여 EUC-KR 문자로 디코딩후 해당문자를 byte에담아 문자를 출력한다. int euckrCodepage = 51949; //EUC-KR 의 코드번호 // URL Encoding된 문자열을 Decoding name = HttpUtility.UrlDecode(HttpUtility.UrlDecode(name, Encoding.GetEncoding(euckrCodepage))); System.Text.Encoding euckr = S..