Software Engineering Wiki

Stringify

Converts the given value to a string.

  • Use fmt.Sprintf() with the "%v" format specifier to convert the given value to a string.
import "fmt"

func Stringify(v interface{}) string {
	return fmt.Sprintf("%v", v)
}
Stringify(90) // "90"
Stringify(2.0) // "2.0"
Stringify(true) // "true"

Last updated 15 September 2026 · Edit this page