How to convert an integer to a string in base b with Go

1 Answer

0 votes
package main

import (
	"fmt"
	"strconv"
	"strings"
)

func main() {
	num := 255
	base := 16

	// Convert to string in base 2 (binary)
	binaryStr := strconv.FormatInt(int64(num), 2)
	fmt.Println("Binary:", binaryStr)

	// Convert to string in base 16 (hexadecimal)
	hexStr := strings.ToUpper(strconv.FormatInt(int64(num), base))
	fmt.Println("Hexadecimal:", hexStr)

	// Convert to string in base 8 (octal)
	octalStr := strconv.FormatInt(int64(num), 8)
	fmt.Println("Octal:", octalStr)
}



/*
run:

Binary: 11111111
Hexadecimal: FF
Octal: 377

*/

 



answered Aug 18, 2025 by avibootz

Related questions

1 answer 131 views
1 answer 131 views
1 answer 158 views
1 answer 144 views
144 views asked May 18, 2025 by avibootz
1 answer 138 views
138 views asked Apr 27, 2025 by avibootz
...