No Description

BIN2HEX.data 479B

123456789101112131415
  1. "10110010", "B2"
  2. "111001010101", "#NUM!" // Too large
  3. "11111011", 4, "00FB" // Leading places
  4. "11111011", 3.75, "0FB" // Leading places as a float
  5. "11111011", -1, "#NUM!" // Leading places negative
  6. "11111011", "ABC", "#VALUE!" // Leading places non-numeric
  7. "1110", "E"
  8. "101", "5"
  9. "10", "2"
  10. "0", "0"
  11. "21", "#NUM!" // Invalid binary number
  12. TRUE, "#VALUE!" // Non string
  13. "1110010101", "FFFFFFFF95" // 2's Complement
  14. "1111111111", "FFFFFFFFFF" // 2's Complement