How to get an \"E\" output rather than 69?
package main import \"fmt\" func main() { fmt.Print(\"HELLO\"[1]) }
Does Golang have funct
The general solution to interpreting a char as a string is string("HELLO"[1]).
string("HELLO"[1])
Rich's solution also works, of course.