VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-url-domaintounicode-method/

⇱ Node.js url.domainToUnicode() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js url.domainToUnicode() Method

Last Updated : 30 Jun, 2020
The url.domainToUnicode() method is an inbuilt application programming interface of class URL with in url module which is used to get the domain for the particular ASCII value. Syntax:
const url.domainToUnicode(domain)
Parameter:s This method takes ASCII value as a parameter which is going to be converted in Unicode. Return value: This method returns the unicode value of the particular domain. Below programs illustrates the use of url.domainToUnicode() method. Example 1: Output:
ASCII value : xn--espaol-zwa.com

ASCII value : google.com
Example 2: Output:
Unicode value : geeksforgeeks.com

Unicode value :
NOTE: The above program will not run on online JavaScript and script editor. Reference: https://nodejs.org/dist/latest-v14.x/docs/api/url.html#url_url_domaintounicode_domain
Comment
Article Tags:

Explore