Char

Represents a 16-bit Unicode character.

On the JVM, non-nullable values of this type are represented as values of the primitive type char.

Since Kotlin

1.1

Represents a 16-bit Unicode character.

On the JVM, non-nullable values of this type are represented as values of the primitive type char.

Since Kotlin

1.0

Types

Link copied to clipboard
object Companion
Since Kotlin 1.1
object Companion
Since Kotlin 1.0

Properties

Link copied to clipboard

Returns the Unicode general category of this character.

Since Kotlin 1.0
Link copied to clipboard

Returns the Unicode directionality property for the given character.

Since Kotlin 1.0

Functions

Link copied to clipboard
open operator override fun compareTo(other: Char): Int

Compares this value with the specified value for order.

Since Kotlin 1.1
open operator override fun compareTo(other: Char): Int

Compares this value with the specified value for order.

Since Kotlin 1.0
Link copied to clipboard
operator fun dec(): Char

Returns this value decremented by one.

Since Kotlin 1.1
operator fun dec(): Char

Returns this value decremented by one.

Since Kotlin 1.0
Link copied to clipboard

Returns a progression from this value down to the specified to value with the step -1.

Since Kotlin 1.0
Link copied to clipboard
fun Char.equals(other: Char, ignoreCase: Boolean = false): Boolean

Returns true if this character is equal to the other character, optionally ignoring character case.

Since Kotlin 1.1
fun Char.equals(other: Char, ignoreCase: Boolean = false): Boolean

Returns true if this character is equal to the other character, optionally ignoring character case.

Since Kotlin 1.0
Link copied to clipboard
operator fun inc(): Char

Returns this value incremented by one.

Since Kotlin 1.1
operator fun inc(): Char

Returns this value incremented by one.

Since Kotlin 1.0
Link copied to clipboard
expect inline fun Char.isDefined(): Boolean

Returns true if this character (Unicode code point) is defined in Unicode.

Since Kotlin 1.0
Link copied to clipboard
expect inline fun Char.isDigit(): Boolean

Returns true if this character is a digit.

Since Kotlin 1.0
Link copied to clipboard
expect inline fun Char.isHighSurrogate(): Boolean

Returns true if this character is a Unicode high-surrogate code unit (also known as leading-surrogate code unit).

Since Kotlin 1.0
Link copied to clipboard

Returns true if this character (Unicode code point) should be regarded as an ignorable character in a Java identifier or a Unicode identifier.

Since Kotlin 1.0
Link copied to clipboard
expect inline fun Char.isISOControl(): Boolean

Returns true if this character is an ISO control character.

Since Kotlin 1.0
Link copied to clipboard

Returns true if this character (Unicode code point) may be part of a Java identifier as other than the first character.

Since Kotlin 1.0
Link copied to clipboard

Returns true if this character is permissible as the first character in a Java identifier.

Since Kotlin 1.0
Link copied to clipboard
expect inline fun Char.isLetter(): Boolean

Returns true if this character is a letter.

Since Kotlin 1.0
Link copied to clipboard
expect inline fun Char.isLetterOrDigit(): Boolean

Returns true if this character is a letter or digit.

Since Kotlin 1.0
Link copied to clipboard
expect inline fun Char.isLowerCase(): Boolean

Returns true if this character is lower case.

Since Kotlin 1.0
Link copied to clipboard
expect inline fun Char.isLowSurrogate(): Boolean

Returns true if this character is a Unicode low-surrogate code unit (also known as trailing-surrogate code unit).

Since Kotlin 1.0
Link copied to clipboard

Returns true if this character is a Unicode surrogate code unit.

Since Kotlin 1.1

Returns true if this character is a Unicode surrogate code unit.

Since Kotlin 1.0
Link copied to clipboard
expect inline fun Char.isTitleCase(): Boolean

Returns true if this character is a title case letter.

Since Kotlin 1.0
Link copied to clipboard
expect inline fun Char.isUpperCase(): Boolean

Returns true if this character is upper case.

Since Kotlin 1.0
Link copied to clipboard
expect fun Char.isWhitespace(): Boolean

Determines whether a character is whitespace according to the Unicode standard. Returns true if the character is whitespace.

Since Kotlin 1.1
expect fun Char.isWhitespace(): Boolean

Determines whether a character is whitespace according to the Unicode standard. Returns true if the character is whitespace.

Since Kotlin 1.0
Link copied to clipboard
operator fun minus(other: Char): Int

Subtracts the other Char value from this value resulting an Int.

Since Kotlin 1.1
operator fun minus(other: Int): Char

Subtracts the other Int value from this value resulting a Char.

Since Kotlin 1.1
operator fun minus(other: Char): Int

Subtracts the other Char value from this value resulting an Int.

Since Kotlin 1.0
operator fun minus(other: Int): Char

Subtracts the other Int value from this value resulting a Char.

Since Kotlin 1.0
Link copied to clipboard
operator fun plus(other: Int): Char

Adds the other Int value to this value resulting a Char.

Since Kotlin 1.1
operator fun plus(other: Int): Char

Adds the other Int value to this value resulting a Char.

Since Kotlin 1.0
Link copied to clipboard
inline operator fun Char.plus(other: String): String

Concatenates this Char and a String.

Since Kotlin 1.1
inline operator fun Char.plus(other: String): String

Concatenates this Char and a String.

Since Kotlin 1.0
Link copied to clipboard
operator fun rangeTo(other: Char): CharRange

Creates a range from this value to the specified other value.

Since Kotlin 1.1
operator fun rangeTo(other: Char): CharRange

Creates a range from this value to the specified other value.

Since Kotlin 1.0
Link copied to clipboard
fun toByte(): Byte

Returns the value of this character as a Byte.

Since Kotlin 1.1
fun toByte(): Byte

Returns the value of this character as a Byte.

Since Kotlin 1.0
Link copied to clipboard
fun toChar(): Char

Returns the value of this character as a Char.

Since Kotlin 1.1
fun toChar(): Char

Returns the value of this character as a Char.

Since Kotlin 1.0
Link copied to clipboard

Returns the value of this character as a Double.

Since Kotlin 1.1

Returns the value of this character as a Double.

Since Kotlin 1.0
Link copied to clipboard
fun toFloat(): Float

Returns the value of this character as a Float.

Since Kotlin 1.1
fun toFloat(): Float

Returns the value of this character as a Float.

Since Kotlin 1.0
Link copied to clipboard
fun toInt(): Int

Returns the value of this character as a Int.

Since Kotlin 1.1
fun toInt(): Int

Returns the value of this character as a Int.

Since Kotlin 1.0
Link copied to clipboard
fun toLong(): Long

Returns the value of this character as a Long.

Since Kotlin 1.1
fun toLong(): Long

Returns the value of this character as a Long.

Since Kotlin 1.0
Link copied to clipboard
expect inline fun Char.toLowerCase(): Char

Converts this character to lower case using Unicode mapping rules of the invariant locale.

Since Kotlin 1.1
expect inline fun Char.toLowerCase(): Char

Converts this character to lower case using Unicode mapping rules of the invariant locale.

Since Kotlin 1.0
Link copied to clipboard
fun toShort(): Short

Returns the value of this character as a Short.

Since Kotlin 1.1
fun toShort(): Short

Returns the value of this character as a Short.

Since Kotlin 1.0
Link copied to clipboard
inline fun Char.toTitleCase(): Char

Converts this character to title case using Unicode mapping rules of the invariant locale.

Since Kotlin 1.0
Link copied to clipboard
expect inline fun Char.toUpperCase(): Char

Converts this character to upper case using Unicode mapping rules of the invariant locale.

Since Kotlin 1.1
expect inline fun Char.toUpperCase(): Char

Converts this character to upper case using Unicode mapping rules of the invariant locale.

Since Kotlin 1.0
Link copied to clipboard
infix fun Char.until(to: Char): CharRange

Returns a range from this value up to but excluding the specified to value.

Since Kotlin 1.0