func unicode/utf8.EncodeRune

16 uses

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

	bufio
		bufio.go#L738: 	size = utf8.EncodeRune(b.buf[b.n:], r)

	bytes
		bytes.go#L177: 		n := utf8.EncodeRune(b[:], r)

	encoding/json
		decode.go#L1264: 						w += utf8.EncodeRune(b[w:], dec)
		decode.go#L1270: 				w += utf8.EncodeRune(b[w:], rr)
		decode.go#L1287: 			w += utf8.EncodeRune(b[w:], rr)

	fmt
		format.go#L159: 		utf8.EncodeRune(buf[i:], rune(u))

	github.com/go-faster/jx
		dec_str.go#L312: 	n := utf8.EncodeRune(buf, r)

	strconv
		quote.go#L81: 		n := utf8.EncodeRune(runeTmp[:], r)
		quote.go#L475: 					n := utf8.EncodeRune(arr[:], r)

	vendor/golang.org/x/text/unicode/bidi
		prop.go#L63: 	n := utf8.EncodeRune(buf[:], r)

	vendor/golang.org/x/text/unicode/norm
		composition.go#L280: 	sz := utf8.EncodeRune(rb.byte[bn:], rune(r))
		composition.go#L289: 	sz := utf8.EncodeRune(rb.byte[bn:], rune(r))
		composition.go#L399: 	utf8.EncodeRune(buf, jamoLBase+r/jamoVCount)
		composition.go#L400: 	utf8.EncodeRune(buf[JamoUTF8Len:], jamoVBase+r%jamoVCount)
		composition.go#L402: 		utf8.EncodeRune(buf[2*JamoUTF8Len:], jamoTBase+x)