strtoul C

C
/*
Convert string to unsigned long integer
Parses the C-string str, interpreting its content as an integral number of
the specified base, which is returned as an value of type unsigned long int.

This function operates like strtol to interpret the string, but produces
numbers of type unsigned long int (see strtol for details on the
interpretation process).
*/
Source

Also in C: