Just out of curiosity and lack of a definite answer...
I was just looking at some data that is sent from a 3rd party to us, and their "Gender" field is a [0,1] denoting either a Female (0) or a Male (1).
Is there any better reason to use [0,1] over ["F","M"]?
Does it depend on the scenario and the intuitiveness between a field and its value?
Data access speeds and/or size constraints?
If the moon is full?
What are the differences in using [0,1] versus ["Y","N"] versus ["T","F"]?