Perfect. That's what I wanted to know. It's the property of the number that doesn't change.
Yep.
What's this about non-positive and/or non-integer bases now?
Oooh, I opened the door to that, didn't I? I haven't thought about it myself until there was a thread on this a month or so ago in this very section in which it came up. I'll give you a very fragmentary reply.
Let's first see how a base-N system works for a positive integer N > 1. There are digits with values 0, 1, 2, ... N-1. The number representation
abc.de
(where a, b, c, d and e are digits) denotes the number
a * N^2 + b * N + c + d * N^-1 + e * N^-2
The nice thing about this is that you get a unique representation for each number. Well, for nearly each number. There's the obvious duplicate
1.000... = 0.999...
and likewise, all numbers with a finite fraction part can also be represented with an endless fraction of repeating 9's (or in the general case: repeating (N-1)-digits). This is very systematic so it doesn't bother much. We call the finite fraction representation the "standard representation" and we're done. Everybody from grade 4 upwards understands this.
Now let's turn to other possible bases.
0 is out because you'd have no digits. Even if you'd allow a digit 0, you could only represent the number 0.
1 is out because you'd only have digit 0. Even if you allow digit 1, you could only represent integer numbers. There's a thing called "unary numbers", but they're nothing else than tally marks.
Likewise, each base between 0 and 1 suffers from the lack of available digits.
Non-integer bases > 1: as an example, let's take the golden ratio phi as base. Phi is the solution of the equation
phi^2 - phi - 1 = 0
and has the value phi = (1+sqrt(5))/2, approximately 1.6. So you'd have as digits 0 and 1. Now, the representation of a number is not anymore unique. As a simple example, the number phi^2 has two finite representations in base-phi: 100 and 11, as follows from the equation above. The
wiki page on this has an algorithm to determine a "standard representation", but as you see it's much more complicated. There's also a
separate wiki page explicitly about the golden ratio as base.
ETA: another drawback of a non-integer base is that you can't easily determine if a number is an integer or a rational number. Look at the above example of the golden ratio: phi is an irrational number, so 10 denotes an irrational number, and phi^2 is irrational too, so 100 denotes another irrational number. On the other hand, writing 2 in that base would require a fraction (and possibly an infinite fraction at that too).
Finally, with negative bases you'd first have to answer what the applicable digits would be. Would base (-4) have digits 0, -1, -2 and -3? Or somesuch? And then, negative numbers have the obnoxious property that their powers are alternating positive and negative. I'm getting headaches just thinking about it while I type this.