In a listing API frontend pass a tag called coutryCode its value will be like +91, +66 etc. 
When its recieved on backend (NodeJS, ExpressJS) it looks like  91. The + symbol turned into a space. 
How can I get it properly in NodeJs application?
const countryCode =  req.query.countryCode;