Referencia unchar()

unchar()

Converts a single-character String to a Number.

unchar() converts single-character strings to their corresponding integer (whole number).

The parameter, n, is the character to convert. For example, unchar('A'), returns the number 65. If an array is passed, as in unchar(['A', 'B', 'C']), an array of integers is returned.

Ejemplos

Sintaxis

unchar(n)
unchar(ns)

Parámetros

n
String: value to convert.
ns
String[]: values to convert.

Returns

Number: converted number.

Referencias Relacionadas