Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,884 questions

51,810 answers

573 users

How to convert text to binary code in Kotlin

1 Answer

0 votes
fun text2bin(txt: String): String {
    val bin = StringBuilder()
    
    for (char in txt) {
        val binary = char.code.toString(2).padStart(8, '0')
        bin.append("$binary ")
    }
    
    return bin.toString()
}

fun main() {
    println(text2bin("Kotlin Programming"))
}


 
 
/*
run:
   
01001011 01101111 01110100 01101100 01101001 01101110 00100000 01010000 01110010 01101111 01100111 01110010 01100001 01101101 01101101 01101001 01101110 01100111 
   
*/

 



answered Nov 18, 2024 by avibootz

Related questions

1 answer 69 views
3 answers 101 views
1 answer 98 views
1 answer 99 views
...