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
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