FAQ
 
 
Cover  \ Exhibition  \ Learning  \ Reference  \ Download  \ Discourse   
      Language \ Environment \ Libraries \ Comparison
 
   
   
Abridged (A-Z) \ Complete (A-Z)  
   
  Reference for Processing (BETA) version 91+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.  
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()
 
 






   
 
Updated: Fri Jul 15 16:35:34 PDT 2005
 
 








Creative Commons License
 
  Processing is an open project initiated by Ben Fry and Casey Reas  
  © Info