I can convert a string into the Ascii values with spaces in between.
Example: "I like carrots" To: 73 32 108 105...
But I'm trying to figure out a way to take those NUMBERS and convert them BACK into their ascii Chars.
I'm using the latest version of Delphi (embarcadero) and am new to coding so pls help me out :)
You can use the Ord function in every character. The Chr function returns the character for specified ASCII value.
Example