문자를 ASCII 코드로: charCodeAt() 사용;ASCII 코드를 문자로: fromCharCode() 사용; 작은 예를 보세요 코드 복사 코드는 다음과 같습니다: <br>str="A";<br>code = str.charCodeAt() <br>str2 = String.fromCharCode(code);<br>str3 = 문자열.fromCharCode(0x60 26); <p>document.write(code '<br />');<br>document.write(str2 '<br />');<br>document.write(str3);<br>< ;/script><br></p> </div> <br>출력: <p>65<br>A<br>z</p>