The strings vocabulary implements a data type for storing text. Strings are represented as fixed-size mutable sequences of Unicode code points. Code points are represented as integers in the range [0, 2097152].
Strings implement the Sequence protocol, and basic string manipulation can be performed with Sequence operations from the sequences vocabulary. More text processing functionality can be found in vocabularies carrying the text tag.