Skip to content

Instantly share code, notes, and snippets.

View mcarrowd's full-sized avatar
🎯
Focusing

Dmitry Makarov mcarrowd

🎯
Focusing
View GitHub Profile
@mcarrowd
mcarrowd / main.go
Last active January 1, 2024 21:58
golang win1251 <-> utf8 encoding issue demonstration
package main
import (
"fmt"
"golang.org/x/text/encoding/charmap"
)
func main() {
for i := 0; i <= 255; i++ {
charnum := uint8(i)