package main

import (
  "fmt"
  "strings"
)

func main() {
  var herp []byte
  herp = string.Bytes("\u0100")
  fmt.Println(herp)
}
