Skip to main content
2 of 3
added 5 characters in body
marcosm
  • 1.2k
  • 5
  • 10

Bash, 47 43 bytes

printf '%02x ' {32..126}|xxd -p -r|tr -d $1 

Try it online!

Generates hexa range, inverts hex dump to char an removes characters present in first parameter.

marcosm
  • 1.2k
  • 5
  • 10