Golang

Golang Reflection

Golang Reflection Advertisement Reflection in Golang enables us to inspect types at runtime. It is a form of metaprogramming. It also allows you to inspect, edit, and create variables, functions, and structs at runtime. The Go reflect package provides features for inspecting and manipulating objects at runtime. Golang’s Reflection is a very useful tool for …

Golang Reflection Read More »

Golang UTF8 Package – Text Encoding

Golang UTF8 Package – Text Encoding Advertisement In this blog, we will learn about the Golang UTF8 Package and Character Encoding in Programming Languages. The Golang Unicode/utf8 package provides several useful functions for querying and manipulating strings and []bytes which hold UTF8 bytes. First of all, let’s understand the difference between UTF8 and ASCII Encoding. …

Golang UTF8 Package – Text Encoding Read More »

Scroll to Top