Just cast the value:
char status = (char)Enums.DivisionStatus.Active;
Note that this will use the value instead of the identifier. The Enums.DivisionStatus.Active value is the character code of 'A', as that is the value that you have defined.
Using the value directly is faster than looking up the identifier for the value.