{"id":9820,"date":"2022-02-28T04:32:57","date_gmt":"2022-02-28T01:32:57","guid":{"rendered":"https:\/\/starlanguageblog.com\/?p=8112"},"modified":"2022-02-28T04:32:57","modified_gmt":"2022-02-28T01:32:57","slug":"what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2","status":"publish","type":"post","link":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/","title":{"rendered":"What is the meaning of \\n and \\t in C language? What does it mean in coding?"},"content":{"rendered":"

What is the meaning of \\n and \\t in C language? What does it mean in coding? | Computer facts you should know<\/span><\/h1>\n

Programming is all fun and games for people who love to solve problems and create applications. But as technology is getting advanced every day, you need to keep yourself updated and be precise to understand technology. For new programmers, \\n and \\t might be a new tactic, but it is used in coding.<\/span><\/p>\n

Let’s take a look at <\/span>\\n<\/span><\/i> and <\/span>\\t<\/span><\/i> uses and what it does. Here we will explain its function and other standard programming keys used in many programming languages.\u00a0<\/span><\/p>\n

Programming and Coding<\/span><\/h2>\n

Transistors act as the “brain” of Computers and machine learning. As a reason, the computer only knows the language of ‘one’ and ‘zero,’ which it receives from the transistor switches. A binary system is represented by 1 and 0, respectively.<\/span><\/p>\n

By converting our orders into binary code, programming languages make the binary code language of computers more readable. Programming is a higher level of coding that generates a set of instructions (codes) that your computer can use to perform a task. Programming is mainly about coming up with answers to problems arising during transmitting data. As a result, coding helps with the development of problem-solving capabilities.<\/span><\/p>\n

Uses of Escape Sequences<\/span><\/h2>\n

C and C++ are two programming languages<\/a> that use escape sequences. The design of C and C++ is incorporated by many other languages such as Java, PHP, C#, and others. In C, all escape sequences are represented by two or more characters, one of which must be backslash () and the other of which can be any character from the C character set.<\/span><\/p>\n

When used in a character or string literal, an escape sequence is a series of characters converted into another character or a sequence of difficult or impossible characters to represent directly.<\/span><\/p>\n

According to a beginner C programmer, this objective can be ambiguously accomplished by using several white spaces in the <\/span>printf() function<\/span><\/i>. Furthermore, the C programming language has around 15 escape sequences that allow the user to format the output on the screen.<\/span><\/p>\n

\\n use and its function<\/span><\/h2>\n

A new line is a word that marks the end of one line of text and the start of another. Because all text on early computers was on one line, an ASCII code was developed to represent a new line. We can state that \\n (Newline) moves the cursor to the following line.<\/span><\/p>\n

Because the backslash produces an “escape” from the compiler’s typical approach of parsing letters, the escape sequence “n” does not stand for a backslash followed by the letter “n.” Instead, the compiler needs another character to complete the escape sequence after seeing the backslash. It then interprets the escape sequence into the bytes it is supposed to represent. For example, “Hello, world!” indicates a string containing an embedded newline, whether used within <\/span>printf<\/span><\/i> or elsewhere.<\/span><\/p>\n

Now many programmers get confused on how to represent a backslash within a literal? We have a solution for this as well. However, we will solve it by using the escape sequence.<\/span><\/p>\n

Some languages, such as Pascal, exclude escape sequences. A command with a newline would be used instead (<\/span>writeln<\/span><\/i> includes a newline, write excludes it).<\/span><\/p>\n

writeln(‘Hello’);<\/span><\/i><\/p>\n

write(‘world!’);<\/span><\/i><\/p>\n

The newline character is an escape sequence in programming languages such as C, Java, and Perl. For example, the new line can be used in Perl in various ways, as seen below.<\/span><\/p>\n

\\t use and its function<\/span><\/h2>\n

Another popular example of an escape code is \\t. You can remember seeing unprintable characters that teletypewriters and text editors interpreted as an instruction back in the day. In this situation, the tab character is the tab character, and the printer will jump to the next tab stop. When you wish to put information in columns, you use it.<\/span><\/p>\n

\\t refers to one horizontal tab space in programming. \\t prints out a tab, an indefinable amount of space that aligns the following portion of the output to a horizontal tab on the screen. In C, the characters \\n and \\t belong to the Escape sequences category and format the program’s output.<\/span><\/p>\n

Moreover, Now, the character “t” isn’t exclusive to the C programming language; it’s a generic character that may be found in various languages. It is like the letter “A,” which isn’t exclusive to English but rather a symbol that indicates the production of the “aaa” sound when read. It is thus used in various languages (German, French, Spanish, etc.).<\/span><\/p>\n

Use of Escape Sequences in C language<\/span><\/h2>\n

The character set of the C programming language<\/a> is made up of 256 characters. THE TWO PARTS OF THE CHARACTER SET ARE the ASCII characters set and the extended ASCII characters set. As you know, Apart from that, there are some other characters called ESCAPE characters who are not part of any character group.<\/span><\/p>\n

Note:<\/b><\/p>\n

When used in text mode I\/O, the escape sequence used for the new line “\\n” has a unique meaning: it is translated to the OS-specific newline representation, commonly a byte or byte sequence. Instead, other systems use length fields to mark their lines.<\/span><\/p>\n

Octal escape sequences are limited to three octal digits. However, if encountered earlier, they will terminate at the first character that is not a valid octal digit.<\/span><\/p>\n

Hexadecimal escape sequences are unbounded in length and end with the first character that isn’t a valid hexadecimal digit. If the range of values represented by the character type used in this string literal does not fit the value represented by a single hexadecimal escape sequence,<\/span><\/p>\n

Common Escape sequences<\/span><\/h2>\n

\\n (Newline) \u2013 This command moves the cursor control to a new line. t \\t (Horizontal bar) \u2013 This command moves the cursor to control a couple of spaces (usually 4) to the right in the same line.<\/span><\/p>\n

\\” (Double quotation mark)- This character is used to display the double quotation mark.<\/span><\/p>\n

\\0 (Null character) \u2013 This character is used to represent the string’s end.<\/span><\/p>\n

\\? (Question mark) \u2013 This character is used to display a question mark. (?)<\/span><\/p>\n

\\nnn (Octal number)- This is the symbol for an octal number.<\/span><\/p>\n

\\a (Audible bell) – To warn the user, a beep is generated to indicate the program’s operation.<\/span><\/p>\n

\\r (Carriage Return) key is used to move the cursor to the start of the current line.<\/span><\/p>\n

\\v (vertical tab)\u00a0<\/span><\/p>\n

\\b (backspace) Removes one alphabet from left side<\/span><\/p>\n

\\e (escape character)\u00a0<\/span><\/p>\n

\\f (escape character) (Form Feed page break)<\/span><\/p>\n

Bottom Line<\/span><\/h2>\n

Programming and coding<\/a> are two different aspects that are used in modern technology. However, you need to keep your basics strong in the programming language. Therefore, it is recommended to keep them noted or share this article with your friend who sucks in coding!. For more updates, make sure to subscribe to our newsletter to get the latest information.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"

What is the meaning of \\n and \\t in C language? What does it mean in coding? | Computer facts you should know Programming is all fun and games for people who love to solve problems and create applications. But as technology is getting advanced every day, you need to keep yourself updated and be […]<\/p>\n","protected":false},"author":1,"featured_media":8113,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[81],"tags":[82],"yoast_head":"\nWhat is the meaning of \\n and \\t in C language? What does it mean in coding? - Star Language Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is the meaning of \\n and \\t in C language? What does it mean in coding? - Star Language Blog\" \/>\n<meta property=\"og:description\" content=\"What is the meaning of n and t in C language? What does it mean in coding? | Computer facts you should know Programming is all fun and games for people who love to solve problems and create applications. But as technology is getting advanced every day, you need to keep yourself updated and be […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Star Language Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-28T01:32:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/02\/pexels-olia-danilevich-4974912.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"640\" \/>\n\t<meta property=\"og:image:height\" content=\"426\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Starla\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Starla\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/\"},\"author\":{\"name\":\"Starla\",\"@id\":\"https:\/\/www.starlanguageblog.com\/#\/schema\/person\/18c6c447348b68f36676245bfe3f83fc\"},\"headline\":\"What is the meaning of \\\\n and \\\\t in C language? What does it mean in coding?\",\"datePublished\":\"2022-02-28T01:32:57+00:00\",\"dateModified\":\"2022-02-28T01:32:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/\"},\"wordCount\":1155,\"publisher\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/02\/pexels-olia-danilevich-4974912.webp\",\"keywords\":[\"What is the meaning of n and t in C language? What does it mean in coding?\"],\"articleSection\":[\"Computer Language\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/\",\"url\":\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/\",\"name\":\"What is the meaning of \\\\n and \\\\t in C language? What does it mean in coding? - Star Language Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/02\/pexels-olia-danilevich-4974912.webp\",\"datePublished\":\"2022-02-28T01:32:57+00:00\",\"dateModified\":\"2022-02-28T01:32:57+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#primaryimage\",\"url\":\"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/02\/pexels-olia-danilevich-4974912.webp\",\"contentUrl\":\"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/02\/pexels-olia-danilevich-4974912.webp\",\"width\":640,\"height\":426,\"caption\":\"What is the meaning of \\\\n and \\\\t in C language? What does it mean in coding?\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.starlanguageblog.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is the meaning of \\\\n and \\\\t in C language? What does it mean in coding?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.starlanguageblog.com\/#website\",\"url\":\"https:\/\/www.starlanguageblog.com\/\",\"name\":\"Star Language Blog\",\"description\":\"Educative\",\"publisher\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.starlanguageblog.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.starlanguageblog.com\/#organization\",\"name\":\"Star Language Blog\",\"url\":\"https:\/\/www.starlanguageblog.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.starlanguageblog.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/starlanguageblog.com\/wp-content\/uploads\/2022\/02\/StarLa-logo.webp\",\"contentUrl\":\"https:\/\/starlanguageblog.com\/wp-content\/uploads\/2022\/02\/StarLa-logo.webp\",\"width\":100,\"height\":50,\"caption\":\"Star Language Blog\"},\"image\":{\"@id\":\"https:\/\/www.starlanguageblog.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.starlanguageblog.com\/#\/schema\/person\/18c6c447348b68f36676245bfe3f83fc\",\"name\":\"Starla\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.starlanguageblog.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/14d663ea5b6cb9fe714dae0d82cf59f1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/14d663ea5b6cb9fe714dae0d82cf59f1?s=96&d=mm&r=g\",\"caption\":\"Starla\"},\"sameAs\":[\"https:\/\/starlanguageblog.com\"],\"url\":\"https:\/\/www.starlanguageblog.com\/author\/dwaipayan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is the meaning of \\n and \\t in C language? What does it mean in coding? - Star Language Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/","og_locale":"en_US","og_type":"article","og_title":"What is the meaning of \\n and \\t in C language? What does it mean in coding? - Star Language Blog","og_description":"What is the meaning of n and t in C language? What does it mean in coding? | Computer facts you should know Programming is all fun and games for people who love to solve problems and create applications. But as technology is getting advanced every day, you need to keep yourself updated and be […]","og_url":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/","og_site_name":"Star Language Blog","article_published_time":"2022-02-28T01:32:57+00:00","og_image":[{"width":640,"height":426,"url":"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/02\/pexels-olia-danilevich-4974912.webp","type":"image\/webp"}],"author":"Starla","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Starla","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#article","isPartOf":{"@id":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/"},"author":{"name":"Starla","@id":"https:\/\/www.starlanguageblog.com\/#\/schema\/person\/18c6c447348b68f36676245bfe3f83fc"},"headline":"What is the meaning of \\n and \\t in C language? What does it mean in coding?","datePublished":"2022-02-28T01:32:57+00:00","dateModified":"2022-02-28T01:32:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/"},"wordCount":1155,"publisher":{"@id":"https:\/\/www.starlanguageblog.com\/#organization"},"image":{"@id":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/02\/pexels-olia-danilevich-4974912.webp","keywords":["What is the meaning of n and t in C language? What does it mean in coding?"],"articleSection":["Computer Language"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/","url":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/","name":"What is the meaning of \\n and \\t in C language? What does it mean in coding? - Star Language Blog","isPartOf":{"@id":"https:\/\/www.starlanguageblog.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#primaryimage"},"image":{"@id":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/02\/pexels-olia-danilevich-4974912.webp","datePublished":"2022-02-28T01:32:57+00:00","dateModified":"2022-02-28T01:32:57+00:00","breadcrumb":{"@id":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#primaryimage","url":"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/02\/pexels-olia-danilevich-4974912.webp","contentUrl":"https:\/\/www.starlanguageblog.com\/wp-content\/uploads\/2022\/02\/pexels-olia-danilevich-4974912.webp","width":640,"height":426,"caption":"What is the meaning of \\n and \\t in C language? What does it mean in coding?"},{"@type":"BreadcrumbList","@id":"https:\/\/www.starlanguageblog.com\/what-is-the-meaning-of-n-and-t-in-c-language-what-does-it-mean-in-coding-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.starlanguageblog.com\/"},{"@type":"ListItem","position":2,"name":"What is the meaning of \\n and \\t in C language? What does it mean in coding?"}]},{"@type":"WebSite","@id":"https:\/\/www.starlanguageblog.com\/#website","url":"https:\/\/www.starlanguageblog.com\/","name":"Star Language Blog","description":"Educative","publisher":{"@id":"https:\/\/www.starlanguageblog.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.starlanguageblog.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.starlanguageblog.com\/#organization","name":"Star Language Blog","url":"https:\/\/www.starlanguageblog.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.starlanguageblog.com\/#\/schema\/logo\/image\/","url":"https:\/\/starlanguageblog.com\/wp-content\/uploads\/2022\/02\/StarLa-logo.webp","contentUrl":"https:\/\/starlanguageblog.com\/wp-content\/uploads\/2022\/02\/StarLa-logo.webp","width":100,"height":50,"caption":"Star Language Blog"},"image":{"@id":"https:\/\/www.starlanguageblog.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.starlanguageblog.com\/#\/schema\/person\/18c6c447348b68f36676245bfe3f83fc","name":"Starla","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.starlanguageblog.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/14d663ea5b6cb9fe714dae0d82cf59f1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/14d663ea5b6cb9fe714dae0d82cf59f1?s=96&d=mm&r=g","caption":"Starla"},"sameAs":["https:\/\/starlanguageblog.com"],"url":"https:\/\/www.starlanguageblog.com\/author\/dwaipayan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/posts\/9820"}],"collection":[{"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/comments?post=9820"}],"version-history":[{"count":0,"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/posts\/9820\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/media\/8113"}],"wp:attachment":[{"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/media?parent=9820"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/categories?post=9820"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.starlanguageblog.com\/wp-json\/wp\/v2\/tags?post=9820"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}