Skip to content

Instantly share code, notes, and snippets.

View rof20004's full-sized avatar
🏠
Working from home

Rodolfo Azevedo rof20004

🏠
Working from home
  • Asaptech
  • Santo André, São Paulo
View GitHub Profile
@rof20004
rof20004 / convert_binary_text.go
Last active March 9, 2024 11:39
Go example to convert binary to text and text to binary
package main
import (
"fmt"
"strconv"
"strings"
)
func textToBinary(s string) string {
var b string