The symbol code

Report a typo

You get a number as input. Print out the symbol that corresponds to the given number.

Sample Input 1:

181

Sample Output 1:

µ
Write a program in Go
package main

import "fmt"

func main() {
var char rune
fmt.Scan(&char)
fmt.Println(?(?))
}
___

Create a free account to access the full topic