當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Javascript String.fromCodePoint()用法及代碼示例


String.fromCodePoint()是JavaScript中的內置函數,用於返回給定代碼點值(ASCII值)序列的字符串或元素。
不同元素的代碼點值列表:
用法:

String.fromCodePoint(a1, a2, a3, ....)

參數:參數a1,a2等是代碼點值的序列。
返回值:它為給定的代碼點值序列返回相應的字符串或元素。

JavaScript代碼顯示String.fromCodePoint()函數的工作方式:

代碼1:
<script> 
  
    // Taking some code point values 
    a = String.fromCodePoint(42); 
    b = String.fromCodePoint(65, 90); 
    c = String.fromCodePoint(66, 65, 102); 
  
    // Printing the corresponding elements of 
    // the code point value. 
    document.write(a + "<br>") 
    document.write(b + "<br>") 
    document.write(c + "<br>") 
  
</script>

輸出:

*
AZ
BAf



注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript | String.fromCodePoint()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。