Answers for "convert to ascii string"

1

Convert ASCII to String Java

String str = String.valueOf(Character.toChars(65)); // str ← "A"
Posted by: Guest on April-09-2021
0

convert to ascii

#python 3.x
text = input("enter a string to convert into ascii values:")
ascii_values = []
for character in text:
    ascii_values.append(ord(character))
print(ascii_values)
Posted by: Guest on December-26-2021

Code answers related to "convert to ascii string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language