Skip to main content
1 of 3
marcosm
  • 1.2k
  • 5
  • 10

Bash, 47 bytes

bc<<<"obase=16;`seq 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