Number systems are mathematical notations for representing numbers using digits or symbols in a consistent manner.
1 ascii = 1 f32
1 f32 = 1 ascii
Example:
Convert 15 ASCII to IEEE 754 Single Precision:
15 ascii = 15 f32
ASCII | IEEE 754 Single Precision |
---|---|
0.01 ascii | 0.01 f32 |
0.1 ascii | 0.1 f32 |
1 ascii | 1 f32 |
2 ascii | 2 f32 |
3 ascii | 3 f32 |
5 ascii | 5 f32 |
10 ascii | 10 f32 |
20 ascii | 20 f32 |
30 ascii | 30 f32 |
40 ascii | 40 f32 |
50 ascii | 50 f32 |
60 ascii | 60 f32 |
70 ascii | 70 f32 |
80 ascii | 80 f32 |
90 ascii | 90 f32 |
100 ascii | 100 f32 |
250 ascii | 250 f32 |
500 ascii | 500 f32 |
750 ascii | 750 f32 |
1000 ascii | 1,000 f32 |
10000 ascii | 10,000 f32 |
100000 ascii | 100,000 f32 |