I'm actually trying to link a code like #873766 directly into the phone's calling application. But only the # appears... Did you guys have a solution for this?
You simply have to encode the USSD code like this :
const ussdCodeEncoded = `tel:${encodeURIComponent(ussdCode)}`
Linking.openURL("" + ussdCodeEncoded + "")