I was reading the Wikipedia article on code points, but not sure if I understand correctly.
For example, the character encoding scheme ASCII comprises 128 code points in the range 0hex to 7Fhex
So is 0hex a code point?
Also could not find anything on code space.
PS. If it's a duplicate please post a link in the comments and I'll remove the question.
A code point is a numerical code that refers to a single element/character in a specific coded character set, that sentence means that ASCII has 128 possible symbols (only a part of those will be printable characters) and each one of those has a related numerical code by which it can be identified/addressed, the code point.
For an alternative wording, check out this Joel's post and this summary by Oracle that also introduces the concept of code unit :)
To give you a real world example of what code points are, consider the unicode character snowman ☃, its code point (with unicode syntax
U+<code point in hex>
) isU+2603
.