{"id":19313,"date":"2020-07-10T18:16:43","date_gmt":"2020-07-11T01:16:43","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=19313"},"modified":"2020-12-29T13:13:09","modified_gmt":"2020-12-29T21:13:09","slug":"html-symbols","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/html-symbols\/","title":{"rendered":"HTML Symbols: Using HTML Character Entities"},"content":{"rendered":"\n<p>When we are writing text into our HTML page, we need to use characters that are not necessarily readily available to us on our keyboards or that are reserved characters that have special meaning in HTML. These are called entities. In this article, we will take a look at how to use these special characters in our code and provide a reference to some of the commonly used entities.&nbsp;<br><\/p>\n\n\n\n<p>One way to illustrate how to use symbols is by creating a code block that you want to render on the screen. One of the issues with trying to get HTML code to show up on your screen when you run it is that it wants to execute the HTML!<br><\/p>\n\n\n\n<p>The <code>&lt;<\/code> and <code>&gt;<\/code> are reserved characters in HTML. To get around that, we can replace those characters with what we call HTML entities. Entities are essentially another name for HTML character codes. Here is how we use them in code to get the raw code block to show up on your screen:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n &lt;head&gt;\n   &lt;meta charset=&quot;utf-8&quot;&gt;\n   &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width&quot;&gt;\n   &lt;title&gt;repl.it&lt;\/title&gt;\n   &lt;link href=&quot;style.css&quot; rel=&quot;stylesheet&quot; type=&quot;text\/css&quot; \/&gt;\n &lt;\/head&gt;\n &lt;body&gt;\n   &lt;code&gt;\n     &lt;!--The &lt;code&gt; blocks don't prevent this HTML from being rendered--&gt;  &lt;p&gt;Famous Baseball Players&lt;\/p&gt;\n     &lt;ul&gt;\n       &lt;li&gt;Babe Ruth&lt;\/li&gt;\n       &lt;li&gt;Mickey Mantle&lt;\/li&gt;\n       &lt;li&gt;Nolan Ryan&lt;\/li&gt;\n     &lt;\/ul&gt;\n   &lt;\/code&gt;\n   &amp;ltcode&gt; &lt;br&gt;\n     &lt;!--Replace special characters with character references--&gt;\n     &lt;!--\n         &amp;nbsp; === non-breaking space (4 spaces === tab)\n         &amp;lt; === &lt;\n         &amp;gt; === &gt;\n         &amp;sol; === \/\n     --&gt;\n     &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;p&gt;Famous Baseball Players&lt;&amp;sol;p&gt; &lt;br&gt;\n     &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;ltul&gt; &lt;br&gt;\n       &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;ltli&gt;Babe Ruth&lt;&amp;sol;li&gt; &lt;br&gt;\n       &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;ltli&gt;Mickey Mantle&lt;&amp;sol;li&gt; &lt;br&gt;\n       &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;ltli&gt;Nolan Ryan&lt;&amp;sol;li&gt; &lt;br&gt;\n     &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&lt;&amp;sol;ul&gt; &lt;br&gt;\n   &amp;lt\/code&gt;\n &lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<p>The <code>&lt;code&gt;<\/code> tags around the first code block did not stop the HTML from being processed. The second set of <code>&lt;code&gt;<\/code> tags \u2013 with the character codes \u2013 rendered the raw code to the screen as opposed to evaluating the HTML.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to Use Character Entities<\/h2>\n\n\n\n<p>There are three possible ways to use characters in HTML:&nbsp; hex code, number code, and entity code\/character name. All three start with an <code>&amp;<\/code>. Here is a couple of examples:<\/p>\n\n\n\n<p><\/p>\n\n\n\n<table class=\"wp-block-table course-info-table\"><tbody><tr><td><strong>Symbol<\/strong><\/td><td><strong>Character Name<\/strong><\/td><td><strong>Decimal Code<\/strong><\/td><td><strong>Hex Code<\/strong><\/td><td><strong>Description<\/strong><\/td><\/tr><tr><td>&lt;<\/td><td>&amp;lt;<\/td><td>&amp;#60;<\/td><td>&amp;#x3C;<\/td><td>Less than<\/td><\/tr><tr><td>\u00a9<\/td><td>&amp;copy;<\/td><td>&amp;#169;<\/td><td>&amp;#xA9;<\/td><td>Copyright<\/td><\/tr><tr><td>&amp;<\/td><td>&amp;amp;<\/td><td>&amp;#38;<\/td><td>&amp;#x26;<\/td><td>Ampersand<\/td><\/tr><\/tbody><\/table>\n\n\n\n<p><\/p>\n\n\n\n<p>The codes are fairly interchangeable with the entities that came out with HTML4. Much of this is just trial and error. Don\u2019t spend time on trying to memorize all of this information on symbols as you won\u2019t necessarily use it all that often. W3Schools has a really great reference on all of the entities that are available to use in your text. This <a href=\"https:\/\/www.w3schools.com\/charsets\/ref_html_entities_4.asp\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">link<\/a> starts on all of the symbols that were introduced as of HTML4. The following <a href=\"https:\/\/www.w3schools.com\/charsets\/ref_html_entities_a.asp\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">chapter<\/a> on the same site has all of the newer symbols that are available. Some have all three different ways to write out the code, some don\u2019t. Some are compatible with all browsers and some are not.&nbsp;<br><\/p>\n\n\n\n<p>The bottom line is: Be aware of symbols, know that they exist, and know how to look up a code so you can use it in your project. That\u2019s really all there is to it. Keep at it with trial and error and you\u2019ll get it in no time!&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"When we are writing text into our HTML page, we need to use characters that are not necessarily readily available to us on our keyboards or that are reserved characters that have special meaning in HTML. These are called entities. In this article, we will take a look at how to use these special characters&hellip;","protected":false},"author":77,"featured_media":19314,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17281],"tags":[],"class_list":{"0":"post-19313","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-html"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"HTML","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>HTML Symbols: Using HTML Character Entities | Career Karma<\/title>\n<meta name=\"description\" content=\"Sometimes as developers we need to use symbols or characters that are not normally on our keyboards. This is a reference to some of the commonly used characters and examples on how to use them in your code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/html-symbols\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HTML Symbols: Using HTML Character Entities\" \/>\n<meta property=\"og:description\" content=\"Sometimes as developers we need to use symbols or characters that are not normally on our keyboards. This is a reference to some of the commonly used characters and examples on how to use them in your code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/html-symbols\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-11T01:16:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-29T21:13:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/clay-banks-PXaQXThG1FY-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"684\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Christina Kopecky\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christina Kopecky\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-symbols\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-symbols\/\"},\"author\":{\"name\":\"Christina Kopecky\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\"},\"headline\":\"HTML Symbols: Using HTML Character Entities\",\"datePublished\":\"2020-07-11T01:16:43+00:00\",\"dateModified\":\"2020-12-29T21:13:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-symbols\/\"},\"wordCount\":453,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-symbols\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/clay-banks-PXaQXThG1FY-unsplash.jpg\",\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/html-symbols\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-symbols\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/html-symbols\/\",\"name\":\"HTML Symbols: Using HTML Character Entities | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-symbols\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-symbols\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/clay-banks-PXaQXThG1FY-unsplash.jpg\",\"datePublished\":\"2020-07-11T01:16:43+00:00\",\"dateModified\":\"2020-12-29T21:13:09+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\"},\"description\":\"Sometimes as developers we need to use symbols or characters that are not normally on our keyboards. This is a reference to some of the commonly used characters and examples on how to use them in your code.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-symbols\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/html-symbols\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-symbols\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/clay-banks-PXaQXThG1FY-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/clay-banks-PXaQXThG1FY-unsplash.jpg\",\"width\":1020,\"height\":684},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-symbols\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML\",\"item\":\"https:\/\/careerkarma.com\/blog\/html\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"HTML Symbols: Using HTML Character Entities\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\",\"name\":\"Christina Kopecky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg\",\"caption\":\"Christina Kopecky\"},\"description\":\"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.\",\"sameAs\":[\"http:\/\/www.linkedin.com\/in\/cmvnk\"],\"url\":\"https:\/\/careerkarma.com\/blog\/author\/christina-kopecky\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"HTML Symbols: Using HTML Character Entities | Career Karma","description":"Sometimes as developers we need to use symbols or characters that are not normally on our keyboards. This is a reference to some of the commonly used characters and examples on how to use them in your code.","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:\/\/careerkarma.com\/blog\/html-symbols\/","og_locale":"en_US","og_type":"article","og_title":"HTML Symbols: Using HTML Character Entities","og_description":"Sometimes as developers we need to use symbols or characters that are not normally on our keyboards. This is a reference to some of the commonly used characters and examples on how to use them in your code.","og_url":"https:\/\/careerkarma.com\/blog\/html-symbols\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-07-11T01:16:43+00:00","article_modified_time":"2020-12-29T21:13:09+00:00","og_image":[{"width":1020,"height":684,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/clay-banks-PXaQXThG1FY-unsplash.jpg","type":"image\/jpeg"}],"author":"Christina Kopecky","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Christina Kopecky","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/html-symbols\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/html-symbols\/"},"author":{"name":"Christina Kopecky","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"headline":"HTML Symbols: Using HTML Character Entities","datePublished":"2020-07-11T01:16:43+00:00","dateModified":"2020-12-29T21:13:09+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-symbols\/"},"wordCount":453,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-symbols\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/clay-banks-PXaQXThG1FY-unsplash.jpg","articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/html-symbols\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/html-symbols\/","url":"https:\/\/careerkarma.com\/blog\/html-symbols\/","name":"HTML Symbols: Using HTML Character Entities | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-symbols\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-symbols\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/clay-banks-PXaQXThG1FY-unsplash.jpg","datePublished":"2020-07-11T01:16:43+00:00","dateModified":"2020-12-29T21:13:09+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"description":"Sometimes as developers we need to use symbols or characters that are not normally on our keyboards. This is a reference to some of the commonly used characters and examples on how to use them in your code.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/html-symbols\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/html-symbols\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/html-symbols\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/clay-banks-PXaQXThG1FY-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/clay-banks-PXaQXThG1FY-unsplash.jpg","width":1020,"height":684},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/html-symbols\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"HTML","item":"https:\/\/careerkarma.com\/blog\/html\/"},{"@type":"ListItem","position":3,"name":"HTML Symbols: Using HTML Character Entities"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e","name":"Christina Kopecky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","caption":"Christina Kopecky"},"description":"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.","sameAs":["http:\/\/www.linkedin.com\/in\/cmvnk"],"url":"https:\/\/careerkarma.com\/blog\/author\/christina-kopecky\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19313","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/77"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=19313"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19313\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/19314"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=19313"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=19313"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=19313"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}