Is there a way to convert a string to binary in Swift?
Found this link on SO but it only handles converting decimals. I'm trying to convert special characters and letters as well.
Tried building an array of known ASCII characters and comparing them(worked for letters) but ran into problems comparing the special characters.
Appreciating your responses.