You can search for concepts by name, even in a different language using the concept searches endpoint:
importcom.clarifai.grpc.api.*;importcom.clarifai.grpc.api.status.*;// Insert here the initialization code as outlined on this page:// https://docs.clarifai.com/api-guide/api-overview/api-clients#client-installation-instructionsMultiConceptResponsepostConceptsSearchesResponse=stub.postConceptsSearches(PostConceptsSearchesRequest.newBuilder().setConceptQuery(ConceptQuery.newBuilder().setName("人").setLanguage("ja")).build());if(postConceptsSearchesResponse.getStatus().getCode()!=StatusCode.SUCCESS){thrownewRuntimeException("Post concepts searches failed, status: "+postConceptsSearchesResponse.getStatus());}System.out.println("Found concepts:");for(Conceptconcept:postConceptsSearchesResponse.getConceptsList()){System.out.printf("\t%s %.2f%n",concept.getName(),concept.getValue());}