http://oxtag.com/php/p/unicode/StringConversion.php
http://oxtag.com/php/p/utf8_encode.php
http://oxtag.com/php/p/unicode/unicode.php
http://oxtag.com/php/p/unicode/utf_unicode.php
<style>
temp20020232 tr,*{
font-family:Arial, Helvetica, sans-serif;
font-size:9pt;
}
</style>
<script>
function char_unicode(bool){
ta1 = document.getElementById('txt_char');
ta2 = document.getElementById('txt_unicode');
if(bool)
ta2.value = escape(ta1.value);
else
ta1.value = unescape(ta2.value);
}
</script>
<table border="0" cellspacing="0" cellpadding="0" class="temp20020232">
<tr>
<td align="center"><strong>String</strong></td>
<td align="center"><strong>Unicode</strong></td>
</tr>
<tr>
<td align="center"><textarea name="txt_char" cols="40" rows="5" id="txt_char" ></textarea></td>
<td align="center"><textarea name="txt_unicode" cols="40" rows="5" id="txt_unicode2" ></textarea></td>
</tr>
<tr align="center">
<td align="center"><input type="button" name="Submit" value="escape(String)->Unicode" onClick="char_unicode(true);"></td>
<td><input type="button" name="Submit2" value="unescape(Unicode)->String" onClick="char_unicode(false);"></td>
</tr>
</table>
'인터넷관련' 카테고리의 다른 글
한국 전통 표준색 (0) | 2008.02.15 |
---|---|
PHP용 경과시간 체크함수 /php timer 타이머/ microtime() (0) | 2008.02.15 |
showModalDialog Method (IE 전용) (0) | 2008.02.15 |
showModelessDialog 를 FF에서 사용하기 (0) | 2008.02.15 |
현재 스크롤 위치 알아내기 (0) | 2008.02.15 |
롤링 배너용 js(class 형식) (0) | 2008.02.15 |
try{...} catch(e){...} 구문 , e.number,e.description (0) | 2008.02.15 |
문자열 바이트 길이알기, 바이트만큼 자르기 (0) | 2008.02.15 |