toUtf8OrThrow

Native
1.3
fun String.toUtf8OrThrow(): ByteArray
Deprecated: Use encodeToByteArray instead
fun String.toUtf8OrThrow(
    start: Int = 0,
    size: Int = this.length
): ByteArray
Deprecated: Use encodeToByteArray instead

Converts a String into an UTF-8 array.

Exceptions

IllegalCharacterConversionException - if the input is invalid.