const unicode/utf8.MaxRune

9 uses

	unicode/utf8 (current package)
		utf8.go#L18: 	MaxRune   = '\U0010FFFF' // Maximum valid Unicode code point.
		utf8.go#L333: 	case r <= MaxRune:
		utf8.go#L353: 	case i > MaxRune, surrogateMin <= i && i <= surrogateMax:
		utf8.go#L388: 	case i > MaxRune, surrogateMin <= i && i <= surrogateMax:
		utf8.go#L579: 	case surrogateMax < r && r <= MaxRune:

	fmt
		format.go#L155: 	if f.sharp && u <= utf8.MaxRune && strconv.IsPrint(rune(u)) {
		format.go#L467: 	if c > utf8.MaxRune {
		format.go#L478: 	if c > utf8.MaxRune {

	vendor/golang.org/x/net/idna
		punycode.go#L89: 		if n < 0 || n > utf8.MaxRune {