Numeral systems - hexadecimal



package main



import "fmt"



func main() {

// fmt.Printf("%d - %b - %x \n", 42, 42, 42)

// fmt.Printf("%d - %b - %#x \n", 42, 42, 42)

// fmt.Printf("%d - %b - %#X \n", 42, 42, 42)

f...



Read: https://blog.cloudnativefolks.org/numeral-systems-hexadecimal