Hi @Balamurugan Mani ,
Thanks for reaching out.
You need to add these characters in the regular expression of claim type which you are using to enter username in the forgot password profile.
I would suggest you check the claim type you are passing in sign up and sign in technical profile to define the username and its regular expression to include those French characters in username.
</ClaimType>
<ClaimType Id="issuerUserId">
<DisplayName>Username</DisplayName>
<DataType>string</DataType>
<UserHelpText/>
<UserInputType>TextBox</UserInputType>
<Restriction>
<Pattern RegularExpression="^[a-zA-Z0-9]+[a-zA-Z0-9_-]*$" HelpText="The username you provided is not valid. It must begin with an alphabet or number and can contain alphabets, numbers and the following symbols: _ -"/>
</Restriction>
</ClaimType>
Hope this will help.
Thanks,
Shweta
Please remember to "Accept Answer" if answer helped you.