/// A fully filled cell.
pub const FULL: char = '█';
/// Filled 7/8 from the left.
pub const SEVEN_EIGHTHS: char = '▉';
/// Filled 3/4 from the left.
pub const THREE_QUARTERS: char = '▊';
/// Filled 5/8 from the left.
pub const FIVE_EIGHTHS: char = '▋';
/// Filled 1/2 from the left.
pub const HALF: char = '▌';
/// Filled 3/8 from the left.
pub const THREE_EIGHTHS: char = '▍';
/// Filled 1/4 from the left.
pub const ONE_QUARTER: char = '▎';
/// Filled 1/8 from the left.
pub const ONE_EIGHTH: char = '▏';