Assuming you want each string to map to a unique real number, which can also be decoded back into the original string, I would use arithmetic coding.
Basically, what you want to do is divide the set of real numbers between -1 and 1 into a number of parts equal to the number of characters in your alphabet, n. To encode a single character string, just pick the start of one of these regions. To encode the second character of the string, first find the region where the first character lies, and then subdivide that region into n smaller regions, and pick the region where the second character falls. You can then recurse on this solution to to be able to convert arbitrary length strings into unique real numbers.
For example, lets say our alphabet is only the characters a and b and we want to encode the string aba. The first a gives us the region [-1,0), the second character then subdivides this region, and yields [-0.5,0). Repeat with the final a to yield the region [-0.5,-0.75). Any number in this region can only be decoded to the sequence aba (given that we know the length of the original string, or we can just recurse forever when decoding).
(See wikipedia for a more detailed explanation of the encoding and decoding process. Note that you are probably only interested in equal-size regions for this problem.)
'\0', which is not very language-agnostic. – Pascal Cuoq Jan 2 at 0:40