Returns the character at the specified byte index.
Example:
var sb = new StringBuilder.withString ("Hello");
assert (sb.charAt (0) == 'H');
assert (sb.charAt (4) == 'o');
| index |
the byte index. |
|
the character at the index, or '\0' if out of range. |