Index
 
  Reference for Wiring 1.0 (ALPHA) 0017+. 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  

unsigned char

   
Examples  
unsigned char m;      // Declare variable "m" of type char 
m = 'A';     // Assign "m" the value "A" 
m = 200;	 // Assign "m" the value 200 

Description   Datatype for characters, typographic symbols such as A, d, and $. A char stores letters and symbols in the Unicode format, a coding system developed to support a variety of world languages. Each char is one byte (8 bits) in length and is distinguished by surrounding it with single quotes. Character escapes may also stored as a char. For example, the representation for the "delete" key is '\377'. The unsigned char type encodes numbers from 0 to 255.

출력가능 문자 A, d, $의 문자 데이터 형입니다. char 는 문자와 기호를 다국어 를 지원하기 위하여 개발된 Unicode 포맷으로 저장 합니다. 각 char 는 1 바이트 이며 싱글 쿼테이션으로 둘러 쌓입니다. 문자 escape 도 char 에 저장할 수 있습니다. 예를들면 "delete" 키는 "\377" 이 됩니다. 무부호 char 형은 0 부터 255 로 인코딩 됩니다.

   
Syntax  
unsigned char var
unsigned char var = value
   
Parameters  
var   variable name referencing the value

value   any character

   
Returns  
   
Usage   Web & Application
   
Related   char
byte
array