Convert ASCII characters like A or Hello into Decimal values instantly.
ASCII stands for American Standard Code for Information Interchange. It assigns a unique numeric code to characters like letters, numbers, punctuation, and control codes.
Decimal is the base-10 numbering system. In ASCII conversion, each character is represented by its decimal code from 0 to 127.
A).A → 65).| Character | Decimal |
|---|---|
| A | 65 |
| B | 66 |
| C | 67 |
| a | 97 |
| b | 98 |
| c | 99 |
| 0 | 48 |
| 1 | 49 |
| ! | 33 |
| Space | 32 |