출처: 초보자를 위한 코틀린(Kotlin) 200제 / 엄민석 지음 | 정보문화사 | 2018년 05월 20일 출간

문자타입: 문자를 저장할 수 있는 타입

package com.practice010

fun main(args: Array<String>): Unit
{
	var ch: Char = 'A'
	println(ch)		// 출력: A

	ch = '\uAC00'	// 유니코드 사용
	println(ch)		// 출력: 가

	ch = '한'
	//println(ch.toInt())	// 출력 54620, 유니코드 매핑되는 int값
}

'A'  : 문자 한개를 작은따옴표로 감싸면 char 타입 

'\uAC00' : 코틀린에서는 Unicode 사용

https://home.unicode.org/

 

Home

News 🗓 Unicode Standard Releases📝 Public Review Issues

home.unicode.org

+ Recent posts