Strings are everywhere in programming. In this section, you'll learn how Go handles text, from basic operations to Unicode support.
Go strings are immutable sequences of bytes. They have a close relationship with slices, and understanding this connection helps you work with text efficiently. You'll also learn the strings package, which provides tools for common text operations.