How do I convert each letter in a string to its ASCII character value?
-
Each letter is already it's ASCII character value. – Hot Licks Jan 24 '13 at 03:55
8 Answers
.NET stores all strings as a sequence of UTF-16 code units. (This is close enough to "Unicode characters" for most purposes.)
Fortunately for you, Unicode was designed such that ASCII values map to the same number in Unicode, so after you've converted each character to an integer, you can just check whether it's in the ASCII range. Note that you can use an implicit conversion from char
to int
- there's no need to call a conversion method:
string text = "Here's some text including a \u00ff non-ASCII character";
foreach (char c in text)
{
int unicode = c;
Console.WriteLine(unicode < 128 ? "ASCII: {0}" : "Non-ASCII: {0}", unicode);
}

- 1,421,763
- 867
- 9,128
- 9,194
For Any String try this:
string s = Console.ReadLine();
foreach( char c in s)
{
Console.WriteLine(System.Convert.ToInt32(c));
}
Console.ReadKey();
-
what if the string has unicode chars ,what does above code print? – Srinivas Reddy Thatiparthy Mar 18 '11 at 06:51
-
1@Srinivas: See my answer for more details - and an alternative to calling Convert.ToInt32. – Jon Skeet Mar 18 '11 at 07:31
Try Linq:
Result = string.Join("", input.ToCharArray().Where(x=> ((int)x) < 127));
This will filter out all non ascii characters. Now if you want an equivalent, try the following:
Result = string.Join("", System.Text.Encoding.ASCII.GetChars(System.Text.Encoding.ASCII.GetBytes(input.ToCharArray())));

- 174
- 4
byte[] bytes = Encoding.ASCII.GetBytes(inputString);
In the ASCII enconding each char is represented with 1 byte, however in C# the string type uses 2 bytes per char.
Hence, if you want to keep an ASCII "string" in memory, the most efficient way is to use a byte array. You can always convert it back to string, but remember it will double in size in memory!
string value = new ASCIIEncoding().GetString(bytes);

- 131
- 2
- 4
I think this code may be help you:
string str = char.ConvertFromUtf32(65)

- 30,738
- 21
- 105
- 131

- 59
- 4
-
-
1Although it did not answer the original question, it was exactly what I needed. Thank you very much for your wrong post. – Xlaech Jun 19 '15 at 10:05
Use Convert.ToInt32() for conversion. You can have a look at How to convert string to ASCII value in C# and ASCII values.

- 30,738
- 21
- 105
- 131

- 599
- 2
- 10
- 26
-
2There's no need to call a method. There's an implicit conversion from `char` to `int`. – Jon Skeet Mar 18 '11 at 07:31
You can do it by using LINQ-expression.
public static List<int> StringToAscii(string value)
{
if (string.IsNullOrEmpty(value))
throw new ArgumentException("Value cannot be null or empty.", nameof(value));
return value.Select(System.Convert.ToInt32).ToList();
}

- 51
- 6
Here is an extension method based on Jon Skeet's answer:
public static string ConvertUnicodeStringToAscii(this string text)
{
var sb = new StringBuilder();
foreach (char c in text)
{
int unicode = c;
if (unicode < 128)
{
sb.Append(c);
}
}
return sb.ToString();
}

- 12,407
- 10
- 54
- 67