func unicode/utf8.AppendRune

8 uses

	unicode/utf8 (current package)
		utf8.go#L375: func AppendRune(p []byte, r rune) []byte {

	bytes
		buffer.go#L310: 	b.buf = utf8.AppendRune(b.buf[:m], r)
		bytes.go#L587: 			b = utf8.AppendRune(b, r)

	encoding/json
		fold.go#L33: 		out = utf8.AppendRune(out, foldRune(r))

	fmt
		format.go#L471: 	f.pad(utf8.AppendRune(buf, r))
		print.go#L96: 	b = utf8.AppendRune(b, verb)
		print.go#L116: 	*bp = utf8.AppendRune(*bp, r)

	strings
		builder.go#L108: 	b.buf = utf8.AppendRune(b.buf, r)