Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

RangeError: argument is not a valid code point

メッセージ

RangeError: {0} is not a valid code point (Firefox)
RangeError: Invalid code point {0} (Chrome)

エラータイプ

RangeError

何がうまくいかなかったのか?

String.fromCodePoint() メソッドは、有効なコードポイントのみを受け付けます。

コードポイントは、ユニコード文字集合の値です。これは整数 0 から 0x10FFFF までの範囲です。

NaN や、-1 などの負数(negative Integers)、3.14 などの非整数値(non-integers)、0x10FFFF1114111)より大きい値をこのメソッドで使うことはできません。

無効なケース

String.fromCodePoint('_');      // RangeError
String.fromCodePoint(Infinity); // RangeError
String.fromCodePoint(-1);       // RangeError
String.fromCodePoint(3.14);     // RangeError
String.fromCodePoint(3e-2);     // RangeError
String.fromCodePoint(NaN);      // RangeError

有効なケース

String.fromCodePoint(42);       // "*"
String.fromCodePoint(65, 90);   // "AZ"
String.fromCodePoint(0x404);    // "\u0404"
String.fromCodePoint(0x2F804);  // "\uD87E\uDC04"
String.fromCodePoint(194564);   // "\uD87E\uDC04"
String.fromCodePoint(0x1D306, 0x61, 0x1D307) // "\uD834\uDF06a\uD834\uDF07"

関連項目

ドキュメントのタグと貢献者

 このページの貢献者: YuichiNukiyama, lv7777
 最終更新者: YuichiNukiyama,