{"id":1200,"date":"2026-05-20T07:00:08","date_gmt":"2026-05-20T07:00:08","guid":{"rendered":"https:\/\/donhit.com\/en\/?p=1200"},"modified":"2026-05-20T07:00:08","modified_gmt":"2026-05-20T07:00:08","slug":"joules-to-calories","status":"publish","type":"post","link":"https:\/\/donhit.com\/en\/convert\/joules-to-calories\/","title":{"rendered":"Joules to Calories Conversion Calculator"},"content":{"rendered":"<div class=\"container123\">\r\n    <h2>Joules to Calories Converter<\/h2>\r\n\r\n    <div class=\"energy-visual\">\r\n        <div class=\"energy-bar\"><\/div>\r\n        <div class=\"energy-value\">0%<\/div>\r\n    <\/div>\r\n\r\n    <div class=\"unit-type\">\r\n        <label for=\"caloryType\">Calorie Type:<\/label>\r\n        <select id=\"caloryType\">\r\n            <option value=\"small\">Small calorie (cal)<\/option>\r\n            <option value=\"large\" selected>Food Calorie (kcal\/Cal)<\/option>\r\n        <\/select>\r\n    <\/div>\r\n\r\n    <div class=\"input-group\">\r\n        <label for=\"fromUnit\">From Unit:<\/label>\r\n        <select id=\"fromUnit\">\r\n            <option value=\"joules\">Joules (J)<\/option>\r\n            <option value=\"calories\">Calories<\/option>\r\n        <\/select>\r\n    <\/div>\r\n\r\n    <button class=\"swap-btn\" onclick=\"swapUnits()\">\u2191\u2193 Swap Units<\/button>\r\n\r\n    <div class=\"input-group\">\r\n        <label for=\"toUnit\">To Unit:<\/label>\r\n        <select id=\"toUnit\">\r\n            <option value=\"calories\">Calories<\/option>\r\n            <option value=\"joules\">Joules (J)<\/option>\r\n        <\/select>\r\n    <\/div>\r\n\r\n    <div class=\"input-group\">\r\n        <label for=\"value\">Enter Value:<\/label>\r\n        <input type=\"number\" id=\"value\" placeholder=\"Enter energy value\">\r\n    <\/div>\r\n\r\n    <div class=\"quick-convert\">\r\n        <button onclick=\"setPresetValue('apple')\">\ud83c\udf4e Apple (95 kcal)<\/button>\r\n        <button onclick=\"setPresetValue('banana')\">\ud83c\udf4c Banana (105 kcal)<\/button>\r\n        <button onclick=\"setPresetValue('running')\">\ud83c\udfc3 Running (100 kcal)<\/button>\r\n        <button onclick=\"setPresetValue('cycling')\">\ud83d\udeb4 Cycling (200 kcal)<\/button>\r\n    <\/div>\r\n\r\n    <div class=\"result\" id=\"result\">\r\n        Result will appear here\r\n    <\/div>\r\n\r\n    <div class=\"reference\">\r\n        Common references:\r\n        <br>\u2022 <strong>1 food Calorie (kcal)<\/strong> = 4184 joules\r\n        <br>\u2022 <strong>1 small calorie (cal)<\/strong> = 4.184 joules\r\n        <br>\u2022 Daily recommended intake: ~2000-2500 kcal\r\n        <br>\u2022 Running 1 mile: ~100 kcal\r\n        <br>\u2022 1 slice of bread: ~75 kcal\r\n    <\/div>\r\n\r\n    <button class=\"help-btn\" onclick=\"toggleHelp()\">Show\/Hide Help Guide<\/button>\r\n\r\n    <div class=\"help-section\" id=\"helpSection\">\r\n        <h3>How to Use<\/h3>\r\n        <p>1. Select calorie type (small cal or food Cal)<\/p>\r\n        <p>2. Choose your input unit (Joules or Calories)<\/p>\r\n        <p>3. Enter the value to convert<\/p>\r\n        <p>4. Read the converted result<\/p>\r\n        \r\n        <h3>Notes:<\/h3>\r\n        <p>- Food Calories (Cal\/kcal) = 1000 small calories<\/p>\r\n        <p>- Common food labels use food Calories (kcal)<\/p>\r\n        <p>- Quick convert buttons for common items<\/p>\r\n        <p>- The visualization shows relative energy<\/p>\r\n        <p>- Results are rounded to 4 decimal places<\/p>\r\n    <\/div>\r\n<\/div>\r\n\r\n<script>\r\n    \/\/ Conversion constants\r\n    const JOULES_PER_SMALL_CALORIE = 4.184;\r\n    const JOULES_PER_FOOD_CALORIE = 4184;\r\n\r\n    \/\/ Preset values in food calories (kcal)\r\n    const PRESETS = {\r\n        apple: 95,\r\n        banana: 105,\r\n        running: 100,\r\n        cycling: 200\r\n    };\r\n\r\n    function setPresetValue(preset) {\r\n        const value = PRESETS[preset];\r\n        document.getElementById('value').value = value;\r\n        document.getElementById('fromUnit').value = 'calories';\r\n        document.getElementById('caloryType').value = 'large';\r\n        convert();\r\n    }\r\n\r\n    function updateEnergyVisualization(value, fromUnit, caloryType) {\r\n        const energyBar = document.querySelector('.energy-bar');\r\n        const energyValue = document.querySelector('.energy-value');\r\n        let percentage;\r\n\r\n        \/\/ Convert everything to joules for comparison\r\n        let joules;\r\n        if (fromUnit === 'joules') {\r\n            joules = value;\r\n        } else {\r\n            const conversionFactor = caloryType === 'small' ? JOULES_PER_SMALL_CALORIE : JOULES_PER_FOOD_CALORIE;\r\n            joules = value * conversionFactor;\r\n        }\r\n\r\n        \/\/ Use 1000 kJ as reference for 100%\r\n        percentage = (joules \/ 1000000) * 100;\r\n        \r\n        \/\/ Limit percentage between 0 and 100\r\n        percentage = Math.max(0, Math.min(100, percentage));\r\n        \r\n        energyBar.style.height = `${percentage}%`;\r\n        energyValue.textContent = `${percentage.toFixed(1)}%`;\r\n    }\r\n\r\n    function convert() {\r\n        const fromUnit = document.getElementById('fromUnit').value;\r\n        const toUnit = document.getElementById('toUnit').value;\r\n        const value = document.getElementById('value').value;\r\n        const caloryType = document.getElementById('caloryType').value;\r\n        const result = document.getElementById('result');\r\n\r\n        if (value === '' || isNaN(value)) {\r\n            result.innerHTML = 'Please enter a valid number';\r\n            return;\r\n        }\r\n\r\n        let converted;\r\n        const conversionFactor = caloryType === 'small' ? JOULES_PER_SMALL_CALORIE : JOULES_PER_FOOD_CALORIE;\r\n\r\n        if (fromUnit === 'joules' && toUnit === 'calories') {\r\n            converted = value \/ conversionFactor;\r\n        } else if (fromUnit === 'calories' && toUnit === 'joules') {\r\n            converted = value * conversionFactor;\r\n        } else {\r\n            converted = value;\r\n        }\r\n\r\n        \/\/ Format the output\r\n        let formattedResult;\r\n        if (Math.abs(converted) >= 1000000) {\r\n            formattedResult = converted.toExponential(4);\r\n        } else {\r\n            formattedResult = converted.toFixed(4);\r\n        }\r\n\r\n        \/\/ Remove trailing zeros after decimal point\r\n        formattedResult = formattedResult.replace(\/\\.?0+$\/, '');\r\n\r\n        const caloryLabel = caloryType === 'small' ? 'cal' : 'kcal';\r\n        const fromLabel = fromUnit === 'calories' ? caloryLabel : 'J';\r\n        const toLabel = toUnit === 'calories' ? caloryLabel : 'J';\r\n\r\n        result.innerHTML = `${value} ${fromLabel} = ${formattedResult} ${toLabel}`;\r\n        \r\n        \/\/ Update the energy visualization\r\n        updateEnergyVisualization(value, fromUnit, caloryType);\r\n    }\r\n\r\n    function swapUnits() {\r\n        const fromUnit = document.getElementById('fromUnit');\r\n        const toUnit = document.getElementById('toUnit');\r\n        const temp = fromUnit.value;\r\n        fromUnit.value = toUnit.value;\r\n        toUnit.value = temp;\r\n        convert();\r\n    }\r\n\r\n    function toggleHelp() {\r\n        const helpSection = document.getElementById('helpSection');\r\n        helpSection.classList.toggle('active');\r\n    }\r\n\r\n    \/\/ Add event listeners\r\n    document.getElementById('fromUnit').addEventListener('change', convert);\r\n    document.getElementById('toUnit').addEventListener('change', convert);\r\n    document.getElementById('value').addEventListener('input', convert);\r\n    document.getElementById('caloryType').addEventListener('change', convert);\r\n<\/script>\n<p>Let me guess \u2014 you&#8217;re staring at your physics homework, tracking your calories after a workout, or maybe you&#8217;re just the curious type (like me) who wants to know <strong>why food energy is always measured in calories<\/strong>, but the <em>science-y<\/em> stuff keeps talking in joules. Either way, you&#8217;re in the right place.<\/p>\n<p>You see, here in the U.S., we\u2019re all about <strong>calories<\/strong> \u2014 whether it\u2019s printed on the side of your protein bar or buried in the fine print of your fitness tracker. But when you dive into science class, lab work, or even nutritional research, you&#8217;ll hit this unfamiliar metric unit: the <strong>joule<\/strong>.<\/p>\n<p>That\u2019s where a <strong>joules to calories conversion tool<\/strong> saves the day \u2014 especially when your brain doesn&#8217;t feel like multiplying decimals on a Tuesday night. Let&#8217;s break down why this conversion matters, how to do it, and how you can use our <strong>J to cal calculator<\/strong> to save time and brainpower.<\/p>\n<h2>What Is a Joule?<\/h2>\n<p>Okay, so here&#8217;s the simplest way I remember it: <strong>1 joule is about the energy it takes to lift a small apple one meter off the ground<\/strong>. Think of that next time you&#8217;re lugging groceries \u2014 every lift is a little burst of joules.<\/p>\n<p>Technically speaking, a <strong>joule is the SI unit of energy<\/strong>. It&#8217;s used in physics, engineering, and nutrition science \u2014 basically, wherever energy transfer is happening. Joules measure <strong>mechanical energy<\/strong>, <strong>heat<\/strong>, and even <strong>electricity<\/strong>.<\/p>\n<p>But honestly? In everyday U.S. life, <strong>joules feel invisible<\/strong>. We don\u2019t see them on our fitness apps or food labels \u2014 which is why so many of us gloss right over them.<\/p>\n<h2>FAQs About Joules and Calories<\/h2>\n<p>Let\u2019s clear up some common confusions I\u2019ve had myself (and answered for friends a dozen times):<\/p>\n<h3>Are joules used on American food labels?<\/h3>\n<p><strong>Nope.<\/strong> In the U.S., food energy is always shown in <strong>Calories<\/strong> (which are technically kilocalories). You might spot <strong>kilojoules<\/strong> on international products, though.<\/p>\n<h3>What\u2019s the difference between kcal and cal?<\/h3>\n<p>They&#8217;re <strong>the same thing in nutrition<\/strong>. One <strong>kilocalorie (kcal)<\/strong> = <strong>1 Calorie (capital C)<\/strong> = <strong>1,000 small-c calories<\/strong>.<\/p>\n<h3>Why don\u2019t we use joules instead of calories?<\/h3>\n<p>Blame it on cultural inertia. The U.S. stuck with calories, and the metric-loving rest of the world leaned into joules. The calorie feels more tangible to us \u2014 I mean, we burn calories, not joules, on the elliptical.<\/p>\n<h2>What Is a Calorie?<\/h2>\n<p>Now this one you <em>do<\/em> recognize. If you\u2019ve ever counted macros, tracked a diet, or flipped over a box of cereal, you\u2019ve seen \u201cCalories\u201d with a capital <strong>C<\/strong> \u2014 but here\u2019s the catch: <strong>that\u2019s actually a kilocalorie<\/strong>.<\/p>\n<p>Yep. One food Calorie (capital &#8220;C&#8221;) is <strong>1,000 small &#8220;c&#8221; calories<\/strong> or about <strong>4,184 joules<\/strong>. In nutrition, \u201ccalorie\u201d is shorthand for kilocalorie. Kinda annoying? Absolutely. But that\u2019s the convention, and we\u2019re stuck with it.<\/p>\n<h3>Where you see calories in real life:<\/h3>\n<ul>\n<li><strong>Nutrition labels<\/strong> (the big number next to &#8220;Calories&#8221;)<\/li>\n<li><strong>Fitness trackers<\/strong> (calories burned per workout)<\/li>\n<li><strong>Height growth supplements<\/strong> like <em>NuBest Tall<\/em>, which often include calorie content in their dosage recommendations<\/li>\n<li><strong>Meal planning apps<\/strong> (hello, MyFitnessPal)<\/li>\n<\/ul>\n<h2>Joules to Calories Conversion Table<\/h2>\n<p>Sometimes you just want a chart you can glance at without punching buttons. Here\u2019s a quick reference I\u2019ve used more times than I can count:<\/p>\n<table>\n<thead>\n<tr>\n<th>Joules (J)<\/th>\n<th>Calories (cal)<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>50<\/td>\n<td>11.95<\/td>\n<\/tr>\n<tr>\n<td>100<\/td>\n<td>23.90<\/td>\n<\/tr>\n<tr>\n<td>500<\/td>\n<td>119.50<\/td>\n<\/tr>\n<tr>\n<td>1000<\/td>\n<td>239.00<\/td>\n<\/tr>\n<tr>\n<td>1200<\/td>\n<td>286.80<\/td>\n<\/tr>\n<tr>\n<td>2000<\/td>\n<td>478.00<\/td>\n<\/tr>\n<tr>\n<td>5000<\/td>\n<td>1195.00<\/td>\n<\/tr>\n<tr>\n<td>10,000<\/td>\n<td>2390.00<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><em>Note: These are approximate values based on the 0.239 conversion factor. Good enough for quick mental math, but if precision matters, use the calculator below.<\/em><\/p>\n<h2>Final Takeaway: Make Energy Make Sense<\/h2>\n<p>If you\u2019ve ever stared at a label or lab report wondering what the heck a joule means \u2014 now you know. Calories make more sense for your daily life, but <strong>joules are where the science starts<\/strong>.<\/p>\n<p>So whether you&#8217;re tracking your fitness, helping your kid with physics, or just geeking out (like I tend to do), this kind of energy conversion actually connects the dots between <strong>how your body works<\/strong> and <strong>how the world works<\/strong>.<\/p>\n<p>And hey \u2014 next time someone says a treadmill burns 150 kJ, you can throw out a \u201cThat\u2019s about 36 calories\u201d and impress your gym buddy.<\/p>\n<h2>Why Convert Joules to Calories?<\/h2>\n<p>So when do you actually <em>need<\/em> to convert joules to calories? In my experience, it comes up more than you&#8217;d think:<\/p>\n<ul>\n<li><strong>You&#8217;re a student<\/strong> trying to finish a physics worksheet that insists on using joules.<\/li>\n<li><strong>You&#8217;re comparing energy usage<\/strong> \u2014 like how much energy your microwave uses vs. how many calories you burn during a workout.<\/li>\n<li><strong>You&#8217;re into nutrition science<\/strong> and looking at academic papers or international food labels (outside the U.S., energy is often in kJ).<\/li>\n<\/ul>\n<p>And if you&#8217;re like me, sometimes you\u2019re just curious. I once looked at the energy output of a treadmill and realized it was listed in kilojoules. Had to convert it just to make it <em>mean<\/em> something in terms of pizza slices.<\/p>\n<h2>Joules to Calories Conversion Calculator (Interactive Tool)<\/h2>\n<p>Let\u2019s be real: calculators make life easier. Especially when your brain is tired or you\u2019re juggling six tabs and a cup of coffee.<\/p>\n<p><strong>Here\u2019s how to use it:<\/strong><\/p>\n<ol>\n<li><strong>Enter the number of joules<\/strong> in the input box.<\/li>\n<li><strong>Click convert<\/strong> (or it might auto-calculate).<\/li>\n<li><strong>Boom \u2014 instant calorie equivalent.<\/strong><\/li>\n<\/ol>\n<h3>Example use case:<\/h3>\n<p>You enter <strong>1200 J<\/strong> \u2192 it instantly shows you <strong>286.8 cal<\/strong>.<\/p>\n<p>That\u2019s about the same energy as a few bites of a granola bar. Pretty cool to visualize, right?<\/p>\n<h2>How to Convert Joules to Calories (The Formula)<\/h2>\n<p><strong>The magic number here is: <code>1 joule = 0.239 calories<\/code><\/strong><\/p>\n<p>Here&#8217;s the basic formula:<\/p>\n<p><code>Calories = Joules \u00d7 0.239005736<br \/>\n<\/code><\/p>\n<p>Let\u2019s do a quick one together:<\/p>\n<p><strong>Example:<\/strong><\/p>\n<p><code>You have 1000 J.<br \/>\nCalories = 1000 \u00d7 0.239<br \/>\nCalories \u2248 239 cal<br \/>\n<\/code><\/p>\n<p>That\u2019s it. Super simple math. But if you&#8217;re in a hurry or math-shy (no shame), scroll down to use the calculator instead.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; Let me guess \u2014 you&#8217;re staring at your physics homework, tracking your calories after a workout, or maybe you&#8217;re just the curious type (like me) who wants to know why food energy is always measured in calories, but the science-y stuff keeps talking in joules. Either way, you&#8217;re in the right place. You see, [&#8230;]\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1200","post","type-post","status-publish","format-standard","hentry","category-convert"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Joules to Calories Conversion Calculator - DonHit<\/title>\n<meta name=\"description\" content=\"Our Joules to Calories Conversion Calculator simplifies this process by offering a fast and precise way to convert energy units.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/donhit.com\/en\/convert\/joules-to-calories\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Joules to Calories Conversion Calculator - DonHit\" \/>\n<meta property=\"og:description\" content=\"Our Joules to Calories Conversion Calculator simplifies this process by offering a fast and precise way to convert energy units.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/donhit.com\/en\/convert\/joules-to-calories\/\" \/>\n<meta property=\"og:site_name\" content=\"DonHit - World of Tools\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-20T07:00:08+00:00\" \/>\n<meta name=\"author\" content=\"DonHit\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DonHit\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Joules to Calories Conversion Calculator - DonHit","description":"Our Joules to Calories Conversion Calculator simplifies this process by offering a fast and precise way to convert energy units.","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:\/\/donhit.com\/en\/convert\/joules-to-calories\/","og_locale":"en_US","og_type":"article","og_title":"Joules to Calories Conversion Calculator - DonHit","og_description":"Our Joules to Calories Conversion Calculator simplifies this process by offering a fast and precise way to convert energy units.","og_url":"https:\/\/donhit.com\/en\/convert\/joules-to-calories\/","og_site_name":"DonHit - World of Tools","article_published_time":"2026-05-20T07:00:08+00:00","author":"DonHit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DonHit","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/donhit.com\/en\/convert\/joules-to-calories\/#article","isPartOf":{"@id":"https:\/\/donhit.com\/en\/convert\/joules-to-calories\/"},"author":{"name":"DonHit","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"headline":"Joules to Calories Conversion Calculator","datePublished":"2026-05-20T07:00:08+00:00","mainEntityOfPage":{"@id":"https:\/\/donhit.com\/en\/convert\/joules-to-calories\/"},"wordCount":945,"commentCount":0,"publisher":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"articleSection":["Conversion Calculators"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/donhit.com\/en\/convert\/joules-to-calories\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/donhit.com\/en\/convert\/joules-to-calories\/","url":"https:\/\/donhit.com\/en\/convert\/joules-to-calories\/","name":"Joules to Calories Conversion Calculator - DonHit","isPartOf":{"@id":"https:\/\/donhit.com\/en\/#website"},"datePublished":"2026-05-20T07:00:08+00:00","description":"Our Joules to Calories Conversion Calculator simplifies this process by offering a fast and precise way to convert energy units.","breadcrumb":{"@id":"https:\/\/donhit.com\/en\/convert\/joules-to-calories\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/donhit.com\/en\/convert\/joules-to-calories\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/donhit.com\/en\/convert\/joules-to-calories\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Trang ch\u1ee7","item":"https:\/\/donhit.com\/en\/"},{"@type":"ListItem","position":2,"name":"Conversion Calculators","item":"https:\/\/donhit.com\/en\/category\/convert\/"},{"@type":"ListItem","position":3,"name":"Joules to Calories Conversion Calculator"}]},{"@type":"WebSite","@id":"https:\/\/donhit.com\/en\/#website","url":"https:\/\/donhit.com\/en\/","name":"DonHit - World of tools","description":"","publisher":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/donhit.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148","name":"DonHit","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2024\/11\/logo-donhit.webp","contentUrl":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2024\/11\/logo-donhit.webp","width":400,"height":267,"caption":"DonHit"},"logo":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/image\/"},"description":"DonHit is a website designed to provide useful tools for everyone. Its primary goal is to support and empower the community. All the tools available on the site are completely free to use.","sameAs":["https:\/\/donhit.com\/en"],"url":"https:\/\/donhit.com\/en\/author\/admin_don\/"}]}},"_links":{"self":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1200","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/comments?post=1200"}],"version-history":[{"count":17,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1200\/revisions"}],"predecessor-version":[{"id":3853,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1200\/revisions\/3853"}],"wp:attachment":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/media?parent=1200"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/categories?post=1200"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/tags?post=1200"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}