Appium windows desktop application. when i am send the special or capital character then it's take wrong input data

Using the send keys to enter the ‘@’ in the email id field is not working, instead of ‘@’ the ‘G’ is getting entered. sample Email: [email protected] Output in the email using selenium: GradyGgmail.com site:stackoverflow.com

WebElement email = wait.until(ExpectedConditions.presenceOfElementLocated(By.xpath("/Window/Window[1]/Group[9]/Edit")));

email.clear();
email.sendKeys("[email protected]");