• 구글 계정 로그인

문장의 초성을 숫자로 (암호화로)

페이지 정보

profile_image
작성자 LJM
댓글 0건 조회 87회 작성일 22-12-24 16:25

본문

<script>
my = "나";
document.write(my.charCodeAt(0));
</script>

 

결과 45208

 

 

 

 

<script>
my = "가";
you = my.charCodeAt(0)
document.write(you);

document.write("<br>");

my = "나";
you = my.charCodeAt(0)
document.write(you);

my = "다";
you = my.charCodeAt(0)
document.write(you);

my = "가나다";
you = my.charCodeAt(0)
document.write(you);


for (i = 12593; i <= 55203; i++) document.write(String.fromCharCode(i));

</script>

댓글목록

등록된 댓글이 없습니다.