Skip to main content
3 of 3
Commonmark migration

Python 3.5, 39 bytes

lambda n:{*map(chr,range(32,127))}-{*n} 

Try it online!
Turns input into a set, and remove it from the set containing all ascii characters

Rod
  • 18.6k
  • 4
  • 32
  • 89