Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,121 questions

55,995 answers

573 users

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 203 views
1 answer 195 views
1 answer 238 views
1 answer 209 views
209 views asked May 18, 2025 by avibootz
1 answer 199 views
199 views asked Apr 27, 2025 by avibootz
...