09/11/14 07:59:42 REWjyKLp0
必要ないかもしれんがエスケープ文字をアンエスケープするソース
<http><head><title>エスケープ変換</title>
<script type="text/javascript"><!--
function changeUrl(){document.chgurl.outputUrl.value=unescape(document.chgurl.inputUrl.value);}
//--></script></head>
<body><form name="chgurl">
<input type="text" name="inputUrl" size=100>
<input type="button" value="変換" onClick="changeUrl()"><br>
↑エスケープ入力 ↓アンエスケープ出力<br>
<input type="text" name="outputUrl" size=100>
</form></body></http>