Golang : How to convert character to ASCII and back
Problem:
ASCII or American Standard Code for Information Interchange is used to represent characters and device control in computers. How to convert a character to ASCII and back to a character?
Solution:
To get the ASCII value of a character, simply type cast the character with int()
function and make sure the character is a rune
instead of type string
. To revert it back or to convert integer ASCII value to a character, type cast the integer with string()
function.
Here you go!
package main
import (
"fmt"
)
func main() {
// character to ASCII
char := 'a' // rune, not string
ascii := int(char)
fmt.Println(string(char), " : ", ascii)
// ASCII to character
asciiNum := 65 // Uppercase A
character := string(asciiNum)
fmt.Println(asciiNum, " : ", character)
}
Output:
a : 97
65 : A
Reference:
See also : Golang : Get ASCII code from a key press(cross-platform) example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+15k Golang : Validate hostname
+6k Golang : Convert an executable file into []byte example
+5.9k Apt-get to install and uninstall Golang
+10.9k Golang : Find age or leap age from date of birth example
+7.7k Golang : HTTP Server Example
+24.7k Golang : Get current file path of a file or executable
+7.4k Golang : Scan files for certain pattern and rename part of the files
+8.8k Golang : does not implement flag.Value (missing Set method)
+5.5k PHP : How to handle URI or URL with non-ASCII characters such as Chinese/Japanese/Korean(CJK) ?
+13.4k Golang : Human readable time elapsed format such as 5 days ago
+9.2k Golang : Populate slice with sequential integers example
+7.7k Golang : Configure Apache and NGINX to access your Go service example