이렇게 인코딩 해야 됨 ㅋㅋ
<html>
<head>
<script type="text/javascript">
function encode(){
s = document.f.str.value;
r = encodeURIComponent(s);
document.f.res.value = r;
}
function decode(){
s = document.f.str.value;
r = decodeURIComponent(s);
document.f.res.value = r;
}
/*
var s;
s = encodeURI('http://www.google.co.kr/소 설.html');
document.write('<p>' + s + '<p>');
// 출력 결과: http://www.google.co.kr/%EC%86%8C%20%EC%84%A4.html
s = encodeURIComponent('http://www.google.co.kr/소 설.html');
document.write('<p>' + s + '<p>');
// 출력 결과: http%3A%2F%2Fwww.google.co.kr%2F%EC%86%8C%20%EC%84%A4.html
s = escape('http://www.google.co.kr/소 설.html');
document.write('<p>' + s + '<p>');
// 출력 결과: http%3A//www.google.co.kr/%uC18C%20%uC124.html
*/
</script>
</head>
<body>
<form name=f>
<textarea name=str cols=70 rows=7></textarea>
<br>
<input type=button onClick=encode() value=Encode>
<input type=button onClick=decode() value=Decode>
<br>
<textarea name=res cols=70 rows=7></textarea>
</form>
</body>
</html>