I know it looks like a dummy question, but why senior developers use hexadecimal variables as the following code:
// LIST OF GENDER FLAGS
// ***********************************
// HEX VALUES from (0x6d)[m] and (0x66)[f] are reserved for [GENDER] FLAGS
const GENDER_MALE = 0x6d;
const GENDER_FEMALE = 0x66;
// **************************************************
PS: I found this code in a Yii project that's why i put Php in the tags