String in Go is an immutable sequence of bytes (8-bit byte values)

This is different than languages like Python, C#, Java or Swift where strings are Unicode.

Zero value of a string type is an empty string.

Basic string usage

https://codeeval.dev/gist/bc0b54e050c069fcabe960c675035079

Learn more about strings.