You get a number as input. Print out the symbol that corresponds to the given number.
Unicode package
The symbol code
Report a typo
Sample Input 1:
181Sample Output 1:
µWrite a program in Go
package main
import "fmt"
func main() {
var char rune
fmt.Scan(&char)
fmt.Println(?(?))
}
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.