Can I use other language to name a type in graphql schema?

No, According to GraphQL Spec the character set for any name in GraphQL schema is: /[_A-Za-z][_0-9A-Za-z]*/.
Spec says:

Names in GraphQL are limited to this ASCII subset of possible characters to support interoperation with as many other systems as possible.