Initializer

init(_:)

Creates a Unicode scalar with the specified numeric value. 指定された数値を使ってユニコードスカラーを作成します。

Declaration 宣言

init(_ v: UInt8)

Parameters パラメータ

v

The code point to use for the scalar. このスカラーのために使うコード点。

Discussion 解説

For example, the following code sample creates a Unicode.Scalar instance with a value of "7": 例えば、以下のコード見本はUnicode.Scalarインスタンスを"7"の値で作成します:


let codepoint: UInt8 = 55
let seven = Unicode.Scalar(codepoint)
print(seven)
// Prints "7"

See Also 参照

Creating a Scalar スカラーを作成する