Postgres json to Go template directly?

Because of this: Numeric values shown as [53 48 48 46 48 48] in html table

Is there a workaround for this, I should be glad.

Here is how the data is fetched from Postgresql (numeric values shows as byte):

func get(query string) interface{} {
	if len(query) > 0 {
		var list []map[string]interface{}
		rows, err := db.Queryx(query)

		if err != nil {
			log("get error" + err.Error())
		}

		defer rows.Close()

		for rows.Next() {
			row := make(map[string]interface{})
			err = rows.MapScan(row)
			if err != nil {
				log("next " + err.Error())
			}
			list = append(list, row)
		}

		rows.Close()
		
		return (list)
	}
	return nil
}