Get Character at Index

Examples in Go
package main

import (
	"fmt"
)

func main() {
	fmt.Println("Char:", "hello"[1])
}