trying to exclude special characters in go playground validator, using hexcode representation
struct A{
ID string `json:"id" validate:"excludesall=0x3D"`
}
validator behaving unexpectedly, it fails when ID: "123"
, "12D"
but won't fail when ID: "12="
Apparently 0x3D is treated as 0,x,3,D
Am I missing something here?