Google News
logo
Golang - Interview Questions
What is Golang rune?
A rune is a Unicode endpoint that is basically a literal for 32-bit integers. They can be altered ad they are untyped constants.
 
It can represent the following :
 
* An integer value ranging from 0 to 2^32-1.
* A character.
* A keyword rune that is a Golang type. It is an alias of the int32 type.
Advertisement