{"id":23738,"date":"2022-11-28T03:23:36","date_gmt":"2022-11-27T21:53:36","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/"},"modified":"2022-11-28T03:23:36","modified_gmt":"2022-11-27T21:53:36","slug":"solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/","title":{"rendered":"[Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-48728407\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"48728407\" data-parentid=\"48727834\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<pre><code>#include &lt;stdio.h&gt;\n#define MAX 1000\n\nint main()\n{\n    char binarynum[MAX], hexa[MAX];\n    long int i = 0,number_of_zeros=0,number_of_ones=0;\n\n    printf(\"Enter the value for hexadecimal \");\n    scanf(\"%s\", hexa);\n    printf(\"\\n Equivalent binary value: \");\n\n    while(hexa[i])\n    {\n        switch (hexa[i])\n        {\n        case '0':\n            printf(\"0000\");\n            number_of_zeros +=4;\n            break;\n        case '1':\n            printf(\"0001\");\n            number_of_zeros +=3;\n            number_of_ones +=1;\n            break;\n        case '2':\n            printf(\"0010\");\n            number_of_zeros +=3;\n            number_of_ones +=1;\n            break;\n        case '3':\n            printf(\"0011\");\n            number_of_zeros +=2;\n            number_of_ones +=2;\n            break;\n        case '4':\n            printf(\"0100\");\n            number_of_zeros +=3;\n            number_of_ones +=1;\n            break;\n        case '5':\n            printf(\"0101\");\n            number_of_zeros +=2;\n            number_of_ones +=2;\n            break;\n        case '6':\n            printf(\"0110\");\n            number_of_zeros +=2;\n            number_of_ones +=2;\n            break;\n        case '7':\n            printf(\"0111\");\n            number_of_zeros +=1;\n            number_of_ones +=3;\n            break;\n        case '8':\n            printf(\"1000\");\n            number_of_zeros +=3;\n            number_of_ones +=1;\n            break;\n        case '9':\n            printf(\"1001\");\n            number_of_zeros +=2;\n            number_of_ones +=2;\n            break;\n        case 'A': case 'a':\n            printf(\"1010\");\n            number_of_zeros +=2;\n            number_of_ones +=2;\n            break;\n        case 'B': case 'b':\n            printf(\"1011\");\n            number_of_zeros +=1;\n            number_of_ones +=3;\n            break;\n        case 'C': case 'c':\n            printf(\"1100\");\n            number_of_zeros +=2;\n            number_of_ones +=2;\n            break;\n        case 'D': case 'd':\n            printf(\"1101\");\n            number_of_zeros +=1;\n            number_of_ones +=3;\n            break;\n        case 'E': case 'e':\n            printf(\"1110\");\n            number_of_zeros +=1;\n            number_of_ones +=3;\n            break;\n        case 'F': case 'f':\n            printf(\"1111\");\n            number_of_ones +=4;\n            break;\n\n        default:\n            printf(\"\\n Invalid hexa digit %c \", hexa[i]);\n            return 0;\n        }\n        i++;\n    }\n    printf(\"\\nNumber of zero\\'s is %d\\n\",number_of_zeros);\n    printf(\"Number of One\\'s is %d\\n\",number_of_ones);\n\n    return 0;\n}\n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">1<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] #include &lt;stdio.h&gt; #define MAX 1000 int main() { char binarynum[MAX], hexa[MAX]; long int i = 0,number_of_zeros=0,number_of_ones=0; printf(&#8220;Enter the value for hexadecimal &#8220;); scanf(&#8220;%s&#8221;, hexa); printf(&#8220;\\n Equivalent binary value: &#8220;); while(hexa[i]) { switch (hexa[i]) { case &#8216;0&#8217;: printf(&#8220;0000&#8221;); number_of_zeros +=4; break; case &#8216;1&#8217;: printf(&#8220;0001&#8221;); number_of_zeros +=3; number_of_ones +=1; break; case &#8216;2&#8217;: printf(&#8220;0010&#8221;); number_of_zeros +=3; number_of_ones &#8230; <a title=\"[Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/\" aria-label=\"More on [Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[324],"class_list":["post-23738","post","type-post","status-publish","format-standard","hentry","category-solved","tag-c"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program - JassWeb<\/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:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] #include &lt;stdio.h&gt; #define MAX 1000 int main() { char binarynum[MAX], hexa[MAX]; long int i = 0,number_of_zeros=0,number_of_ones=0; printf(&quot;Enter the value for hexadecimal &quot;); scanf(&quot;%s&quot;, hexa); printf(&quot;n Equivalent binary value: &quot;); while(hexa[i]) { switch (hexa[i]) { case &#039;0&#039;: printf(&quot;0000&quot;); number_of_zeros +=4; break; case &#039;1&#039;: printf(&quot;0001&quot;); number_of_zeros +=3; number_of_ones +=1; break; case &#039;2&#039;: printf(&quot;0010&quot;); number_of_zeros +=3; number_of_ones ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-27T21:53:36+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\\\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program\",\"datePublished\":\"2022-11-27T21:53:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\\\/\"},\"wordCount\":52,\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"keywords\":[\"c++\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\\\/\",\"name\":\"[Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program - JassWeb\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\"},\"datePublished\":\"2022-11-27T21:53:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\\\/\\\/jassweb.com\"],\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/author\\\/jaspritsinghghumangmail-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program - JassWeb","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:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program - JassWeb","og_description":"[ad_1] #include &lt;stdio.h&gt; #define MAX 1000 int main() { char binarynum[MAX], hexa[MAX]; long int i = 0,number_of_zeros=0,number_of_ones=0; printf(\"Enter the value for hexadecimal \"); scanf(\"%s\", hexa); printf(\"n Equivalent binary value: \"); while(hexa[i]) { switch (hexa[i]) { case '0': printf(\"0000\"); number_of_zeros +=4; break; case '1': printf(\"0001\"); number_of_zeros +=3; number_of_ones +=1; break; case '2': printf(\"0010\"); number_of_zeros +=3; number_of_ones ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/","og_site_name":"JassWeb","article_published_time":"2022-11-27T21:53:36+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program","datePublished":"2022-11-27T21:53:36+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/"},"wordCount":52,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["c++"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/","name":"[Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-11-27T21:53:36+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-convert-a-16-bit-hexadecimal-number-to-binary-number-and-then-count-number-of-zeros-and-one-in-it-using-simplest-c-program\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How to convert a 16-bit hexadecimal number to binary number and then count number of zeros and one in it ? Using simplest C program"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777008400","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/23738","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=23738"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/23738\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=23738"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=23738"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=23738"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}