{"id":1641,"date":"2025-04-09T19:06:27","date_gmt":"2025-04-09T19:06:27","guid":{"rendered":"https:\/\/emojifaces.org\/blog\/?p=1641"},"modified":"2025-04-09T19:18:34","modified_gmt":"2025-04-09T19:18:34","slug":"how-to-type-double-struck-1-indicator-function-in-eq","status":"publish","type":"post","link":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/","title":{"rendered":"How to type double-struck 1 (indicator function) in eq?"},"content":{"rendered":"<p>Ever wondered how to type that fancy double-struck number &#8220;1&#8221; in your math equations? You know, the one that pops up when you&#8217;re trying to write the <em>indicator function<\/em>? Don\u2019t worry\u2014it\u2019s more common than you might think, and typing it can be super fun once you know how!<\/p>\n<p>Let\u2019s break it down in a simple and friendly way. Whether you\u2019re writing in LaTeX, using Microsoft Word&#8217;s equation editor, or programming in Python, there\u2019s a way to type it just right!<\/p>\n<h2>What Is the Double-Struck 1? <\/h2>\n<p>The double-struck 1, written as <strong>\ud835\udfd9<\/strong>, is a special mathematical symbol. It\u2019s used to represent the <em>indicator function<\/em>. This function is all about determining whether something is part of a set.<\/p>\n<p>If the element is in the set, the function returns 1. If not? It returns 0. That&#8217;s why the \ud835\udfd9 is used\u2014it visually reminds us it\u2019s checking for membership!<\/p>\n<p>So how do we type this magical-looking \ud835\udfd9? Let\u2019s look at a few ways.<\/p>\n<h2>Option 1: Using LaTeX<\/h2>\n<p>LaTeX is a gift to math lovers \ud83d\ude07<\/p>\n<p>To get the double-struck 1 in LaTeX, try this:<\/p>\n<pre>\\mathbb{1}<\/pre>\n<p>This command tells LaTeX to use the <em>blackboard bold<\/em> style, which is how you get that double-struck vibe.<\/p>\n<p>It\u2019ll show up in your document like this: <strong>\ud835\udfd9<\/strong><\/p>\n<p>But wait! Sometimes, the <code>\\mathbb{}<\/code> command only works with capital letters in some setups. If you run into trouble with <code>\\mathbb{1}<\/code>, don\u2019t panic. Just use a LaTeX package like <code>amssymb<\/code> or <code>dsfont<\/code> for better results.<\/p>\n<h3>Here&#8217;s a tip:<\/h3>\n<p>Add this to your preamble to make sure it works:<\/p>\n<pre>\n\\usepackage{dsfont}\n<\/pre>\n<p>Then type:<\/p>\n<pre>\\mathds{1}<\/pre>\n<p>BOOM \ud83d\udca5 You\u2019ve got your indicator function ready to go!<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"672\" src=\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/laptop-computer-beside-coffee-mug-latex-equation-code-laptop.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/laptop-computer-beside-coffee-mug-latex-equation-code-laptop.jpg 1080w, https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/laptop-computer-beside-coffee-mug-latex-equation-code-laptop-300x187.jpg 300w, https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/laptop-computer-beside-coffee-mug-latex-equation-code-laptop-1024x637.jpg 1024w, https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/laptop-computer-beside-coffee-mug-latex-equation-code-laptop-768x478.jpg 768w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Option 2: In Microsoft Word (Equation Editor)<\/h2>\n<p>If you\u2019re using Microsoft Word\u2019s equation editor, it might not let you directly type a blackboard bold \ud835\udfd9. But don\u2019t give up!<\/p>\n<p>Here\u2019s what you can try:<\/p>\n<ol>\n<li>Type an equation using <kbd>Alt<\/kbd> + <kbd>=<\/kbd> to open the equation box.<\/li>\n<li>Type <code>\\mathbb{1}<\/code> and see if it works.<\/li>\n<li>If it doesn\u2019t, go for a Unicode shortcut, or paste it directly into your document from a site like <a href=\"https:\/\/unicode-table.com\">unicode-table.com<\/a>.<\/li>\n<\/ol>\n<p>The Unicode for double-struck 1 is <strong>U+1D7D9<\/strong>. Pretty cool, huh?<\/p>\n<p>You can also copy and paste it straight from here: <strong>\ud835\udfd9<\/strong><\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"807\" src=\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/person-playing-keyboard-microsoft-word-equation-editor-keyboard-shortcut.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/person-playing-keyboard-microsoft-word-equation-editor-keyboard-shortcut.jpg 1080w, https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/person-playing-keyboard-microsoft-word-equation-editor-keyboard-shortcut-300x224.jpg 300w, https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/person-playing-keyboard-microsoft-word-equation-editor-keyboard-shortcut-1024x765.jpg 1024w, https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/person-playing-keyboard-microsoft-word-equation-editor-keyboard-shortcut-768x574.jpg 768w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Option 3: In Programming<\/h2>\n<p>If you&#8217;re a coder, you may want ways to type or represent \ud835\udfd9 too. In Python, for example, you may not <em>need<\/em> the fancy symbol for calculations\u2014just use a normal <code>1<\/code>.<\/p>\n<p>But if you&#8217;re generating pretty math output in Jupyter or using matplotlib, you can use LaTeX inside strings:<\/p>\n<pre>\nplt.title(r\"$\\mathbb{1}_{A}(x)$\")\n<\/pre>\n<p>This shows a \ud835\udfd9 with a subscript A, like for an indicator function over a set A.<\/p>\n<p>Use &#8220;r&#8221; before the string to make sure Python reads it correctly!<\/p>\n<h2>One More Trick: Copy-Paste Superpowers \ud83e\uddb8\u200d\u2642\ufe0f<\/h2>\n<p>If all else fails, just copy it: <strong>\ud835\udfd9<\/strong>. Boom. You\u2019re done. Paste it wherever you need!<\/p>\n<p>Want even more math font magic? Google \u201cdouble-struck unicode characters\u201d\u2014there\u2019s a whole family of fancy numbers and letters!<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1620\" src=\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/high-rise-buildings-during-night-time-math-symbols-indicator-function-unicode.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/high-rise-buildings-during-night-time-math-symbols-indicator-function-unicode.jpg 1080w, https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/high-rise-buildings-during-night-time-math-symbols-indicator-function-unicode-200x300.jpg 200w, https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/high-rise-buildings-during-night-time-math-symbols-indicator-function-unicode-683x1024.jpg 683w, https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/high-rise-buildings-during-night-time-math-symbols-indicator-function-unicode-768x1152.jpg 768w, https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/high-rise-buildings-during-night-time-math-symbols-indicator-function-unicode-1024x1536.jpg 1024w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Summary: Your \ud835\udfd9 Toolbox<\/h2>\n<ul>\n<li><strong>LaTeX:<\/strong> Use <code>\\mathbb{1}<\/code> or <code>\\mathds{1}<\/code><\/li>\n<li><strong>Microsoft Word:<\/strong> Try <code>\\mathbb{1}<\/code> in equation editor or paste Unicode<\/li>\n<li><strong>Python\/matplotlib:<\/strong> Use LaTeX strings in your plots<\/li>\n<li><strong>Fastest of all:<\/strong> Just copy <strong>\ud835\udfd9<\/strong> and go!<\/li>\n<\/ul>\n<p>The double-struck 1 is like a superhero in disguise. Small, but mighty. Next time you need an indicator function, you\u2019ll know just what to do!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ever wondered how to type that fancy double-struck number &#8220;1&#8221; in your math equations? You know, the one that pops &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to type double-struck 1 (indicator function) in eq?\" class=\"read-more button\" href=\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#more-1641\" aria-label=\"Read more about How to type double-struck 1 (indicator function) in eq?\">Read more<\/a><\/p>\n","protected":false},"author":39,"featured_media":1642,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[485],"tags":[],"class_list":["post-1641","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","resize-featured-image"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to type double-struck 1 (indicator function) in eq? - EmojiFaces Blog \ud83d\ude0e<\/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:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to type double-struck 1 (indicator function) in eq? - EmojiFaces Blog \ud83d\ude0e\" \/>\n<meta property=\"og:description\" content=\"Ever wondered how to type that fancy double-struck number &#8220;1&#8221; in your math equations? You know, the one that pops ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/\" \/>\n<meta property=\"og:site_name\" content=\"EmojiFaces Blog \ud83d\ude0e\" \/>\n<meta property=\"article:published_time\" content=\"2025-04-09T19:06:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-09T19:18:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/apple-macbook-beside-computer-mouse-on-table-latex-equation-code-laptop.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jame Miller\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jame Miller\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/\"},\"author\":{\"name\":\"Jame Miller\",\"@id\":\"https:\/\/emojifaces.org\/blog\/#\/schema\/person\/a0f9a21c48eb810387960779e71189a6\"},\"headline\":\"How to type double-struck 1 (indicator function) in eq?\",\"datePublished\":\"2025-04-09T19:06:27+00:00\",\"dateModified\":\"2025-04-09T19:18:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/\"},\"wordCount\":562,\"publisher\":{\"@id\":\"https:\/\/emojifaces.org\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/apple-macbook-beside-computer-mouse-on-table-latex-equation-code-laptop.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/\",\"url\":\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/\",\"name\":\"How to type double-struck 1 (indicator function) in eq? - EmojiFaces Blog \ud83d\ude0e\",\"isPartOf\":{\"@id\":\"https:\/\/emojifaces.org\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/apple-macbook-beside-computer-mouse-on-table-latex-equation-code-laptop.jpg\",\"datePublished\":\"2025-04-09T19:06:27+00:00\",\"dateModified\":\"2025-04-09T19:18:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#primaryimage\",\"url\":\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/apple-macbook-beside-computer-mouse-on-table-latex-equation-code-laptop.jpg\",\"contentUrl\":\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/apple-macbook-beside-computer-mouse-on-table-latex-equation-code-laptop.jpg\",\"width\":1080,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/emojifaces.org\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to type double-struck 1 (indicator function) in eq?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/emojifaces.org\/blog\/#website\",\"url\":\"https:\/\/emojifaces.org\/blog\/\",\"name\":\"EmojiFaces Blog \ud83d\ude0e\",\"description\":\"Simple Emoji Keyboard to Copy &amp; Paste\",\"publisher\":{\"@id\":\"https:\/\/emojifaces.org\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/emojifaces.org\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/emojifaces.org\/blog\/#organization\",\"name\":\"EmojiFaces Blog \ud83d\ude0e\",\"url\":\"https:\/\/emojifaces.org\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/emojifaces.org\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2022\/07\/cropped-emojifaces-logo.png\",\"contentUrl\":\"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2022\/07\/cropped-emojifaces-logo.png\",\"width\":312,\"height\":63,\"caption\":\"EmojiFaces Blog \ud83d\ude0e\"},\"image\":{\"@id\":\"https:\/\/emojifaces.org\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/emojifaces.org\/blog\/#\/schema\/person\/a0f9a21c48eb810387960779e71189a6\",\"name\":\"Jame Miller\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/emojifaces.org\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/906d8a8fa6c3e14384c5577430fce80ea6f816e5fc083e2bc39ab04d01d06283?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/906d8a8fa6c3e14384c5577430fce80ea6f816e5fc083e2bc39ab04d01d06283?s=96&d=mm&r=g\",\"caption\":\"Jame Miller\"},\"description\":\"I'm Jame Miller, a cybersecurity analyst and blogger. Sharing knowledge on online security, data protection, and privacy issues is what I do best.\",\"url\":\"https:\/\/emojifaces.org\/blog\/author\/jamesm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to type double-struck 1 (indicator function) in eq? - EmojiFaces Blog \ud83d\ude0e","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:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/","og_locale":"en_US","og_type":"article","og_title":"How to type double-struck 1 (indicator function) in eq? - EmojiFaces Blog \ud83d\ude0e","og_description":"Ever wondered how to type that fancy double-struck number &#8220;1&#8221; in your math equations? You know, the one that pops ... Read more","og_url":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/","og_site_name":"EmojiFaces Blog \ud83d\ude0e","article_published_time":"2025-04-09T19:06:27+00:00","article_modified_time":"2025-04-09T19:18:34+00:00","og_image":[{"width":1080,"height":720,"url":"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/apple-macbook-beside-computer-mouse-on-table-latex-equation-code-laptop.jpg","type":"image\/jpeg"}],"author":"Jame Miller","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jame Miller","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#article","isPartOf":{"@id":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/"},"author":{"name":"Jame Miller","@id":"https:\/\/emojifaces.org\/blog\/#\/schema\/person\/a0f9a21c48eb810387960779e71189a6"},"headline":"How to type double-struck 1 (indicator function) in eq?","datePublished":"2025-04-09T19:06:27+00:00","dateModified":"2025-04-09T19:18:34+00:00","mainEntityOfPage":{"@id":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/"},"wordCount":562,"publisher":{"@id":"https:\/\/emojifaces.org\/blog\/#organization"},"image":{"@id":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#primaryimage"},"thumbnailUrl":"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/apple-macbook-beside-computer-mouse-on-table-latex-equation-code-laptop.jpg","articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/","url":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/","name":"How to type double-struck 1 (indicator function) in eq? - EmojiFaces Blog \ud83d\ude0e","isPartOf":{"@id":"https:\/\/emojifaces.org\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#primaryimage"},"image":{"@id":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#primaryimage"},"thumbnailUrl":"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/apple-macbook-beside-computer-mouse-on-table-latex-equation-code-laptop.jpg","datePublished":"2025-04-09T19:06:27+00:00","dateModified":"2025-04-09T19:18:34+00:00","breadcrumb":{"@id":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#primaryimage","url":"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/apple-macbook-beside-computer-mouse-on-table-latex-equation-code-laptop.jpg","contentUrl":"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2025\/04\/apple-macbook-beside-computer-mouse-on-table-latex-equation-code-laptop.jpg","width":1080,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/emojifaces.org\/blog\/2025\/04\/09\/how-to-type-double-struck-1-indicator-function-in-eq\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/emojifaces.org\/blog\/"},{"@type":"ListItem","position":2,"name":"How to type double-struck 1 (indicator function) in eq?"}]},{"@type":"WebSite","@id":"https:\/\/emojifaces.org\/blog\/#website","url":"https:\/\/emojifaces.org\/blog\/","name":"EmojiFaces Blog \ud83d\ude0e","description":"Simple Emoji Keyboard to Copy &amp; Paste","publisher":{"@id":"https:\/\/emojifaces.org\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/emojifaces.org\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/emojifaces.org\/blog\/#organization","name":"EmojiFaces Blog \ud83d\ude0e","url":"https:\/\/emojifaces.org\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/emojifaces.org\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2022\/07\/cropped-emojifaces-logo.png","contentUrl":"https:\/\/emojifaces.org\/blog\/wp-content\/uploads\/2022\/07\/cropped-emojifaces-logo.png","width":312,"height":63,"caption":"EmojiFaces Blog \ud83d\ude0e"},"image":{"@id":"https:\/\/emojifaces.org\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/emojifaces.org\/blog\/#\/schema\/person\/a0f9a21c48eb810387960779e71189a6","name":"Jame Miller","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/emojifaces.org\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/906d8a8fa6c3e14384c5577430fce80ea6f816e5fc083e2bc39ab04d01d06283?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/906d8a8fa6c3e14384c5577430fce80ea6f816e5fc083e2bc39ab04d01d06283?s=96&d=mm&r=g","caption":"Jame Miller"},"description":"I'm Jame Miller, a cybersecurity analyst and blogger. Sharing knowledge on online security, data protection, and privacy issues is what I do best.","url":"https:\/\/emojifaces.org\/blog\/author\/jamesm\/"}]}},"_links":{"self":[{"href":"https:\/\/emojifaces.org\/blog\/wp-json\/wp\/v2\/posts\/1641","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/emojifaces.org\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/emojifaces.org\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/emojifaces.org\/blog\/wp-json\/wp\/v2\/users\/39"}],"replies":[{"embeddable":true,"href":"https:\/\/emojifaces.org\/blog\/wp-json\/wp\/v2\/comments?post=1641"}],"version-history":[{"count":1,"href":"https:\/\/emojifaces.org\/blog\/wp-json\/wp\/v2\/posts\/1641\/revisions"}],"predecessor-version":[{"id":1645,"href":"https:\/\/emojifaces.org\/blog\/wp-json\/wp\/v2\/posts\/1641\/revisions\/1645"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/emojifaces.org\/blog\/wp-json\/wp\/v2\/media\/1642"}],"wp:attachment":[{"href":"https:\/\/emojifaces.org\/blog\/wp-json\/wp\/v2\/media?parent=1641"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/emojifaces.org\/blog\/wp-json\/wp\/v2\/categories?post=1641"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/emojifaces.org\/blog\/wp-json\/wp\/v2\/tags?post=1641"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}