Yes, as well as some metadata, such as the start and end index (since this char array can be split between lines, for example, when creating substrings).
Looking at the source java.lang.String , you will see the following instance fields:
private final char value[]; private final int offset; private final int count; private int hash;
Thilo
source share