I am having the problem that the hash sign is truncated. Does anybody know a solution? using unicode or %23 is not working in my case. Now the number that is dialed is *101
String uri = "tel:" + "*101#";
//String uri = "tel:" + "*101\u0023";
Intent intent;
intent = new Intent(Intent.ACTION_CALL, Uri.parse(uri));
An all in one solution would be:
Found a solution: String encodedHash = Uri.encode("#"); this did the trick...
This would be easier;
I found a solution for this issue by replacing # in %23