We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 703b1b0 commit 6c53f6eCopy full SHA for 6c53f6e
src/characters/conversion_to_integers.md
@@ -1,6 +1,6 @@
1
# Conversion to Integers
2
3
-All `char`s have a matching numeric value. `'a'` is `97`, `'b'` is `98`,
+All `char`s have a matching numeric value[^ascii]. `'a'` is `97`, `'b'` is `98`,
4
`'&'` is `38`, and so on.
5
6
Same as assigning an `int` to a `double`, you can perform a widening conversion
@@ -30,4 +30,6 @@ IO.println(isLetter);
30
This can be useful if you are stranded on Mars[^onmars] or
31
if you want to see if a character is in some range.
32
33
+[^ascii]: You can find some of these values in an "[ASCII Table](https://www.ascii-code.com/)."
34
+
35
[^onmars]: [https://www.youtube.com/watch?v=0xkP_FQUsuM](https://www.youtube.com/watch?v=0xkP_FQUsuM)
0 commit comments