aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/javascript/reference/global_objects/string/fromcharcode/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/javascript/reference/global_objects/string/fromcharcode/index.html')
-rw-r--r--files/zh-cn/web/javascript/reference/global_objects/string/fromcharcode/index.html91
1 files changed, 91 insertions, 0 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/string/fromcharcode/index.html b/files/zh-cn/web/javascript/reference/global_objects/string/fromcharcode/index.html
new file mode 100644
index 0000000000..fd399adab7
--- /dev/null
+++ b/files/zh-cn/web/javascript/reference/global_objects/string/fromcharcode/index.html
@@ -0,0 +1,91 @@
+---
+title: String.fromCharCode()
+slug: Web/JavaScript/Reference/Global_Objects/String/fromCharCode
+tags:
+ - ASCII码变成字符串
+ - fromCharCode
+translation_of: Web/JavaScript/Reference/Global_Objects/String/fromCharCode
+---
+<p>{{JSRef}}</p>
+
+<p>静态 <strong><code>String.fromCharCode()</code></strong> 方法返回由指定的 UTF-16 代码单元序列创建的字符串。</p>
+
+<div>{{EmbedInteractiveExample("pages/js/string-fromcharcode.html")}}</div>
+
+
+
+<h2 id="Syntax" name="Syntax">语法</h2>
+
+<pre class="syntaxbox notranslate"><code>String.fromCharCode(<var>num1</var>[, ...[, <var>numN</var>]])</code></pre>
+
+<h3 id="Parameters" name="Parameters">参数</h3>
+
+<dl>
+ <dt><code>num1, ..., num<em>N</em></code></dt>
+ <dd>一系列 UTF-16 代码单元的数字。范围介于 <code>0</code> 到 <code>65535</code>(<code>0xFFFF</code>)之间。大于 <code>0xFFFF</code> 的数字将被截断。不进行有效性检查。</dd>
+</dl>
+
+<h3 id="返回值">返回值</h3>
+
+<p>一个长度为 <code>N</code> 的字符串,由 <code>N</code> 个指定的 UTF-16 代码单元组成。</p>
+
+<h2 id="Description" name="Description">描述</h2>
+
+<p>该方法返回一个字符串,而不是一个  {{jsxref("String")}} 对象。</p>
+
+<p>由于 <code>fromCharCode()</code> 是  {{jsxref("String")}} 的静态方法,所以应该像这样使用:<code>String.fromCharCode()</code>,而不是作为你创建的  {{jsxref("String")}} 对象的方法。</p>
+
+<h3 id="返回补充字符">返回补充字符</h3>
+
+<p>在 UTF-16 中,绝大部分常用的字符可以用一个 16 位的值表示(即一个代码单元)。然而,有一类字符叫 Base Multilingual Plane (BMP),是所有可寻址的 Unicode 码点的 <sup>1</sup>/<sub>17</sub><sup>th</sup>。剩下的码点,从范围 <code>65536</code> (<code>0x010000</code>) 到 <code>1114111</code> (<code>0x10FFFF</code>) 被称之为补充字符。在 UTF-16 中,补充字符也叫代理(surrogates),用两个 16 位代码单元表示,它是有目的被保留下来的。两个代理(surrogates)形成一个有效组合,也叫代理对,可以用来表示一个补充字符。</p>
+
+<p>因为 <code>fromCharCode()</code> 只作用于 16 位的值 (跟 <code>\u</code> 转义序列一样),为了返回一个补充字符,一个代理对是必须的。例如,<code>String.fromCharCode(0xD83C, 0xDF03)</code> 和 <code>\uD83C\uDF03</code> 返回码点 <code>U+1F303</code> "Night with Stars"。</p>
+
+<p>While there is a mathematical relationship between the supplementary code point value (e.g. <code>0x1F303</code>) and both surrogate values that represent it (e.g., <code>0xD83C</code> and <code>0xDF03</code>), it does require an extra step to either calculate or look up the surrogate pair values every time a supplementary code point is to be used. 因此,使用 {{jsxref("String.fromCodePoint()")}} (ES2015 标准下的一个方法)更方便, 这个方法允许你基于真实的码点返回补充字符。例如 <code>String.fromCodePoint(0x1F303)</code> 返回码点 <code>U+1F303</code> "Night with Stars"。</p>
+
+<h2 id="示例">示例</h2>
+
+<h3 id="使用_fromCharCode">使用 <code>fromCharCode()</code></h3>
+
+<p>在 UTF-16 中,BMP 字符使用一个代码单元:</p>
+
+<pre class="brush: js notranslate">String.fromCharCode(65, 66, 67); // 返回 "ABC"
+String.fromCharCode(0x2014); // 返回 "—"
+String.fromCharCode(0x12014); // 也是返回 "—"; 数字 1 被剔除并忽略
+String.fromCharCode(8212); // 也是返回 "—"; 8212 是 0x2014 的十进制表示
+</pre>
+
+<p><a href="https://asecuritysite.com/coding/asc2">完整的 UTF 16 表格</a>.<br>
+ 在 UTF-16 中,补充字符需要两个代码单元(即一个代理对):</p>
+
+<pre class="brush: js notranslate">String.fromCharCode(0xD83C, 0xDF03); // Code Point U+1F303 "Night with
+String.fromCharCode(55356, 57091); // Stars" == "\uD83C\uDF03"
+
+String.fromCharCode(0xD834, 0xDF06, 0x61, 0xD834, 0xDF07); // "\uD834\uDF06a\uD834\uDF07"
+</pre>
+
+<h2 id="规范">规范</h2>
+
+<table class="standard-table">
+ <tbody>
+ <tr>
+ <th scope="col">Specification</th>
+ </tr>
+ <tr>
+ <td>{{SpecName('ESDraft', '#sec-string.fromcharcode', 'String.fromCharCode')}}</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="浏览器兼容性">浏览器兼容性</h2>
+
+<p>{{Compat("javascript.builtins.String.fromCharCode")}}</p>
+
+<h2 id="See_also" name="See_also">相关链接</h2>
+
+<ul>
+ <li>{{jsxref("String.prototype.charCodeAt()")}}</li>
+ <li>{{jsxref("String.prototype.charAt()")}}</li>
+ <li>{{jsxref("String.fromCodePoint()")}}</li>
+ <li>{{jsxref("String.prototype.codePointAt()")}}</li>
+</ul>