 |
 |
 |
 |
| Name |
|
char() |
 |
|
|
| Examples |
|
int i = 65;
char c = char(i);
println(i + " : " + c); // Prints "65 : A"
float f = 72.4;
c = char(f);
println(f + " : " + c); // Prints "72.4 : H"
boolean b = true;
c = char(b);
println(b + " : " + c); // Prints "true : t"
|
|
|
| Description |
|
Converts a primitive datatype, string, or array to a numeric character representation. |
 |
|
|
| Syntax |
|
char(val)
|
 |
|
|
| Parameters |
|
| val |
|
int, float, byte, boolean, String, int[], float[], byte[], boolean[], String[]
|
|
 |
|
|
| Returns |
|
char |
 |
|
|
| Usage |
|
Web & Application |
 |
|
|
| Related |
|
char int() float() byte() |
|
|