iswxdigit
iswxdigit is a function from the C standard library that tests whether a given wide character represents a hexadecimal digit. It is declared in the header <wchar.h> and has the prototype int iswxdigit(wint_t wc). To use it, include <wchar.h> and pass a wide character value (of type wint_t), such as a wide character literal like L'A' or a value returned by towc.
The function returns a nonzero value if wc is a hexadecimal digit, and zero otherwise. The classification
Usage and purpose: iswxdigit is used to validate or parse hexadecimal input in programs that process wide-character
Portability and notes: iswxdigit is part of the standard library interfaces for wide characters and is available