{"id":15003,"date":"2023-07-10T16:26:52","date_gmt":"2023-07-10T19:26:52","guid":{"rendered":"https:\/\/kb.elipse.com.br\/en\/?p=15003"},"modified":"2023-07-10T16:26:52","modified_gmt":"2023-07-10T19:26:52","slug":"how-to-handle-utf-8-characters-in-elipse-e3-power","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/","title":{"rendered":"How to handle UTF-8 characters in Elipse E3\/Power."},"content":{"rendered":"<h3>Question:<\/h3>\n<p>How do I handle UTF-8 characters in <a href=\"https:\/\/www.elipse.com.br\/en\/produto\/elipse-e3\/\" target=\"_blank\" rel=\"noopener\">Elipse E3<\/a>\/<a href=\"https:\/\/www.elipse.com.br\/produto\/elipse-power\/\" target=\"_blank\" rel=\"noopener\">Power<\/a>?<\/p>\n<h3>Solution:<\/h3>\n<p>UTF-8 characters can be handled via libraries available on the internet. However, you can also create an internal dictionary in order to handle these characters, as seen in the example below, created in a command button:<\/p>\n<p>&nbsp;<\/p>\n<pre>Sub Retangulo2_Click()\r\n\r\n\r\nvtext = \"Elipse S\\u00e3o Paulo\"\r\nnStart = InStr(1,vtext,\"\\u\")\r\nutext = Mid(vtext, nStart, 6)\r\n\r\nSet dicUTF = dicutf8()\r\n\r\nctext = dicUTF.Item(utext)\r\n\r\nMsgbox replace(vtext,utext,ctext)\r\n\r\nEnd Sub\r\n\r\nFunction dicutf8()\r\n\r\nSet dic = CreateObject(\"Scripting.Dictionary\")\r\n\r\ndic.Add lcase(\"\\u0020\"),\" \"\r\ndic.Add lcase(\"\\u0021\"),\"!\"\r\ndic.Add lcase(\"\\u0022\"),Chr(34)\r\ndic.Add lcase(\"\\u0023\"),\"#\"\r\ndic.Add lcase(\"\\u0024\"),\"$\"\r\ndic.Add lcase(\"\\u0025\"),\"%\"\r\ndic.Add lcase(\"\\u0026\"),\"&\"\r\ndic.Add lcase(\"\\u0027\"),\"'\"\r\ndic.Add lcase(\"\\u0028\"),\"(\"\r\ndic.Add lcase(\"\\u0029\"),\")\"\r\ndic.Add lcase(\"\\u002A\"),\"*\"\r\ndic.Add lcase(\"\\u002B\"),\"+\"\r\ndic.Add lcase(\"\\u002C\"),\"),\"\r\ndic.Add lcase(\"\\u002D\"),\"-\"\r\ndic.Add lcase(\"\\u002E\"),\".\"\r\ndic.Add lcase(\"\\u002F\"),\"\/\"\r\ndic.Add lcase(\"\\u0030\"),\"0\"\r\ndic.Add lcase(\"\\u0031\"),\"1\"\r\ndic.Add lcase(\"\\u0032\"),\"2\"\r\ndic.Add lcase(\"\\u0033\"),\"3\"\r\ndic.Add lcase(\"\\u0034\"),\"4\"\r\ndic.Add lcase(\"\\u0035\"),\"5\"\r\ndic.Add lcase(\"\\u0036\"),\"6\"\r\ndic.Add lcase(\"\\u0037\"),\"7\"\r\ndic.Add lcase(\"\\u0038\"),\"8\"\r\ndic.Add lcase(\"\\u0039\"),\"9\"\r\ndic.Add lcase(\"\\u003A\"),\":\"\r\ndic.Add lcase(\"\\u003B\"),\";\"\r\ndic.Add lcase(\"\\u003C\"),\"<\" \r\ndic.Add lcase(\"\\u003D\"),\"=\" \r\ndic.Add lcase(\"\\u003E\"),\">\"\r\ndic.Add lcase(\"\\u003F\"),\"?\"\r\ndic.Add lcase(\"\\u0040\"),\"@\"\r\ndic.Add lcase(\"\\u0041\"),\"A\"\r\ndic.Add lcase(\"\\u0042\"),\"B\"\r\ndic.Add lcase(\"\\u0043\"),\"C\"\r\ndic.Add lcase(\"\\u0044\"),\"D\"\r\ndic.Add lcase(\"\\u0045\"),\"E\"\r\ndic.Add lcase(\"\\u0046\"),\"F\"\r\ndic.Add lcase(\"\\u0047\"),\"G\"\r\ndic.Add lcase(\"\\u0048\"),\"H\"\r\ndic.Add lcase(\"\\u0049\"),\"I\"\r\ndic.Add lcase(\"\\u004A\"),\"J\"\r\ndic.Add lcase(\"\\u004B\"),\"K\"\r\ndic.Add lcase(\"\\u004C\"),\"L\"\r\ndic.Add lcase(\"\\u004D\"),\"M\"\r\ndic.Add lcase(\"\\u004E\"),\"N\"\r\ndic.Add lcase(\"\\u004F\"),\"O\"\r\ndic.Add lcase(\"\\u0050\"),\"P\"\r\ndic.Add lcase(\"\\u0051\"),\"Q\"\r\ndic.Add lcase(\"\\u0052\"),\"R\"\r\ndic.Add lcase(\"\\u0053\"),\"S\"\r\ndic.Add lcase(\"\\u0054\"),\"T\"\r\ndic.Add lcase(\"\\u0055\"),\"U\"\r\ndic.Add lcase(\"\\u0056\"),\"V\"\r\ndic.Add lcase(\"\\u0057\"),\"W\"\r\ndic.Add lcase(\"\\u0058\"),\"X\"\r\ndic.Add lcase(\"\\u0059\"),\"Y\"\r\ndic.Add lcase(\"\\u005A\"),\"Z\"\r\ndic.Add lcase(\"\\u005B\"),\"[\"\r\ndic.Add lcase(\"\\u005C\"),\"\\\"\r\ndic.Add lcase(\"\\u005D\"),\"]\"\r\ndic.Add lcase(\"\\u005E\"),\"^\"\r\ndic.Add lcase(\"\\u005F\"),\"_\"\r\ndic.Add lcase(\"\\u0060\"),\"`\"\r\ndic.Add lcase(\"\\u0061\"),\"a\"\r\ndic.Add lcase(\"\\u0062\"),\"b\"\r\ndic.Add lcase(\"\\u0063\"),\"c\"\r\ndic.Add lcase(\"\\u0064\"),\"d\"\r\ndic.Add lcase(\"\\u0065\"),\"e\"\r\ndic.Add lcase(\"\\u0066\"),\"f\"\r\ndic.Add lcase(\"\\u0067\"),\"g\"\r\ndic.Add lcase(\"\\u0068\"),\"h\"\r\ndic.Add lcase(\"\\u0069\"),\"i\"\r\ndic.Add lcase(\"\\u006A\"),\"j\"\r\ndic.Add lcase(\"\\u006B\"),\"k\"\r\ndic.Add lcase(\"\\u006C\"),\"l\"\r\ndic.Add lcase(\"\\u006D\"),\"m\"\r\ndic.Add lcase(\"\\u006E\"),\"n\"\r\ndic.Add lcase(\"\\u006F\"),\"o\"\r\ndic.Add lcase(\"\\u0070\"),\"p\"\r\ndic.Add lcase(\"\\u0071\"),\"q\"\r\ndic.Add lcase(\"\\u0072\"),\"r\"\r\ndic.Add lcase(\"\\u0073\"),\"s\"\r\ndic.Add lcase(\"\\u0074\"),\"t\"\r\ndic.Add lcase(\"\\u0075\"),\"u\"\r\ndic.Add lcase(\"\\u0076\"),\"v\"\r\ndic.Add lcase(\"\\u0077\"),\"w\"\r\ndic.Add lcase(\"\\u0078\"),\"x\"\r\ndic.Add lcase(\"\\u0079\"),\"y\"\r\ndic.Add lcase(\"\\u007A\"),\"z\"\r\ndic.Add lcase(\"\\u007B\"),\"{\"\r\ndic.Add lcase(\"\\u007C\"),\"|\"\r\ndic.Add lcase(\"\\u007D\"),\"}\"\r\ndic.Add lcase(\"\\u007E\"),\"~\"\r\ndic.Add lcase(\"\\u00A1\"),\"\u00a1\"\r\ndic.Add lcase(\"\\u00A2\"),\"\u00a2\"\r\ndic.Add lcase(\"\\u00A3\"),\"\u00a3\"\r\ndic.Add lcase(\"\\u00A4\"),\"\u00a4\"\r\ndic.Add lcase(\"\\u00A5\"),\"\u00a5\"\r\ndic.Add lcase(\"\\u00A6\"),\"\u00a6\"\r\ndic.Add lcase(\"\\u00A7\"),\"\u00a7\"\r\ndic.Add lcase(\"\\u00A8\"),\"\u00a8\"\r\ndic.Add lcase(\"\\u00A9\"),\"\u00a9\"\r\ndic.Add lcase(\"\\u00AA\"),\"\u00aa\"\r\ndic.Add lcase(\"\\u00AB\"),\"\u00ab\"\r\ndic.Add lcase(\"\\u00AC\"),\"\u00ac\"\r\ndic.Add lcase(\"\\u00AD\"),\"\u00ad\"\r\ndic.Add lcase(\"\\u00AE\"),\"\u00ae\"\r\ndic.Add lcase(\"\\u00AF\"),\"\u00af\"\r\ndic.Add lcase(\"\\u00B0\"),\"\u00b0\"\r\ndic.Add lcase(\"\\u00B1\"),\"\u00b1\"\r\ndic.Add lcase(\"\\u00B2\"),\"\u00b2\"\r\ndic.Add lcase(\"\\u00B3\"),\"\u00b3\"\r\ndic.Add lcase(\"\\u00B4\"),\"\u00b4\"\r\ndic.Add lcase(\"\\u00B5\"),\"\u00b5\"\r\ndic.Add lcase(\"\\u00B6\"),\"\u00b6\"\r\ndic.Add lcase(\"\\u00B7\"),\"\u00b7\"\r\ndic.Add lcase(\"\\u00B8\"),\"\u00b8\"\r\ndic.Add lcase(\"\\u00B9\"),\"\u00b9\"\r\ndic.Add lcase(\"\\u00BA\"),\"\u00ba\"\r\ndic.Add lcase(\"\\u00BB\"),\"\u00bb\"\r\ndic.Add lcase(\"\\u00BC\"),\"\u00bc\"\r\ndic.Add lcase(\"\\u00BD\"),\"\u00bd\"\r\ndic.Add lcase(\"\\u00BE\"),\"\u00be\"\r\ndic.Add lcase(\"\\u00BF\"),\"\u00bf\"\r\ndic.Add lcase(\"\\u00C0\"),\"\u00c0\"\r\ndic.Add lcase(\"\\u00C1\"),\"\u00c1\"\r\ndic.Add lcase(\"\\u00C2\"),\"\u00c2\"\r\ndic.Add lcase(\"\\u00C3\"),\"\u00c3\"\r\ndic.Add lcase(\"\\u00C4\"),\"\u00c4\"\r\ndic.Add lcase(\"\\u00C5\"),\"\u00c5\"\r\ndic.Add lcase(\"\\u00C6\"),\"\u00c6\"\r\ndic.Add lcase(\"\\u00C7\"),\"\u00c7\"\r\ndic.Add lcase(\"\\u00C8\"),\"\u00c8\"\r\ndic.Add lcase(\"\\u00C9\"),\"\u00c9\"\r\ndic.Add lcase(\"\\u00CA\"),\"\u00ca\"\r\ndic.Add lcase(\"\\u00CB\"),\"\u00cb\"\r\ndic.Add lcase(\"\\u00CC\"),\"\u00cc\"\r\ndic.Add lcase(\"\\u00CD\"),\"\u00cd\"\r\ndic.Add lcase(\"\\u00CE\"),\"\u00ce\"\r\ndic.Add lcase(\"\\u00CF\"),\"\u00cf\"\r\ndic.Add lcase(\"\\u00D0\"),\"\u00d0\"\r\ndic.Add lcase(\"\\u00D1\"),\"\u00d1\"\r\ndic.Add lcase(\"\\u00D2\"),\"\u00d2\"\r\ndic.Add lcase(\"\\u00D3\"),\"\u00d3\"\r\ndic.Add lcase(\"\\u00D4\"),\"\u00d4\"\r\ndic.Add lcase(\"\\u00D5\"),\"\u00d5\"\r\ndic.Add lcase(\"\\u00D6\"),\"\u00d6\"\r\ndic.Add lcase(\"\\u00D7\"),\"\u00d7\"\r\ndic.Add lcase(\"\\u00D8\"),\"\u00d8\"\r\ndic.Add lcase(\"\\u00D9\"),\"\u00d9\"\r\ndic.Add lcase(\"\\u00DA\"),\"\u00da\"\r\ndic.Add lcase(\"\\u00DB\"),\"\u00db\"\r\ndic.Add lcase(\"\\u00DC\"),\"\u00dc\"\r\ndic.Add lcase(\"\\u00DD\"),\"\u00dd\"\r\ndic.Add lcase(\"\\u00DE\"),\"\u00de\"\r\ndic.Add lcase(\"\\u00DF\"),\"\u00df\"\r\ndic.Add lcase(\"\\u00E0\"),\"\u00e0\"\r\ndic.Add lcase(\"\\u00E1\"),\"\u00e1\"\r\ndic.Add lcase(\"\\u00E2\"),\"\u00e2\"\r\ndic.Add lcase(\"\\u00E3\"),\"\u00e3\"\r\ndic.Add lcase(\"\\u00E4\"),\"\u00e4\"\r\ndic.Add lcase(\"\\u00E5\"),\"\u00e5\"\r\ndic.Add lcase(\"\\u00E6\"),\"\u00e6\"\r\ndic.Add lcase(\"\\u00E7\"),\"\u00e7\"\r\ndic.Add lcase(\"\\u00E8\"),\"\u00e8\"\r\ndic.Add lcase(\"\\u00E9\"),\"\u00e9\"\r\ndic.Add lcase(\"\\u00EA\"),\"\u00ea\"\r\ndic.Add lcase(\"\\u00EB\"),\"\u00eb\"\r\ndic.Add lcase(\"\\u00EC\"),\"\u00ec\"\r\ndic.Add lcase(\"\\u00ED\"),\"\u00ed\"\r\ndic.Add lcase(\"\\u00EE\"),\"\u00ee\"\r\ndic.Add lcase(\"\\u00EF\"),\"\u00ef\"\r\ndic.Add lcase(\"\\u00F0\"),\"\u00f0\"\r\ndic.Add lcase(\"\\u00F1\"),\"\u00f1\"\r\ndic.Add lcase(\"\\u00F2\"),\"\u00f2\"\r\ndic.Add lcase(\"\\u00F3\"),\"\u00f3\"\r\ndic.Add lcase(\"\\u00F4\"),\"\u00f4\"\r\ndic.Add lcase(\"\\u00F5\"),\"\u00f5\"\r\ndic.Add lcase(\"\\u00F6\"),\"\u00f6\"\r\ndic.Add lcase(\"\\u00F7\"),\"\u00f7\"\r\ndic.Add lcase(\"\\u00F8\"),\"\u00f8\"\r\ndic.Add lcase(\"\\u00F9\"),\"\u00f9\"\r\ndic.Add lcase(\"\\u00FA\"),\"\u00fa\"\r\ndic.Add lcase(\"\\u00FB\"),\"\u00fb\"\r\ndic.Add lcase(\"\\u00FC\"),\"\u00fc\"\r\ndic.Add lcase(\"\\u00FD\"),\"\u00fd\"\r\ndic.Add lcase(\"\\u00FE\"),\"\u00fe\"\r\ndic.Add lcase(\"\\u00FF\"),\"\u00ff\"\r\n\r\nSet dicutf8 = dic\r\n\r\nEnd Function\r\n\r\nSub dummy()\r\nEnd Sub<\/pre>\n<p>&nbsp;<\/p>\n<h3>Anexos:<\/h3>\n<p><a href=\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2023\/03\/14360\/ScriptKButf8.txt\">Script para download.txt<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Question: How do I handle UTF-8 characters in Elipse E3\/Power? Solution: UTF-8 characters can be handled via libraries available on the internet. However, you can also create an internal dictionary&hellip;<\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0},"categories":[763,730],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to handle UTF-8 characters in Elipse E3\/Power.<\/title>\n<meta name=\"description\" content=\"This article discusses the possibility of creating an internal dictionary to handle UTF-8 characters in Elipse E3\/Power.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to handle UTF-8 characters in Elipse E3\/Power.\" \/>\n<meta property=\"og:description\" content=\"This article discusses the possibility of creating an internal dictionary to handle UTF-8 characters in Elipse E3\/Power.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/\" \/>\n<meta property=\"og:site_name\" content=\"Elipse Knowledgebase\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/elipsesoftware\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-10T19:26:52+00:00\" \/>\n<meta name=\"author\" content=\"Marco Antonio Gomes Silva\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Marco Antonio Gomes Silva\" \/>\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:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/\"},\"author\":{\"name\":\"Marco Antonio Gomes Silva\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/fa6d0b4f046e3b2c208aaf84a40154e9\"},\"headline\":\"How to handle UTF-8 characters in Elipse E3\/Power.\",\"datePublished\":\"2023-07-10T19:26:52+00:00\",\"dateModified\":\"2023-07-10T19:26:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/\"},\"wordCount\":69,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"Scripts\",\"Elipse E3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/\",\"name\":\"How to handle UTF-8 characters in Elipse E3\/Power.\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2023-07-10T19:26:52+00:00\",\"dateModified\":\"2023-07-10T19:26:52+00:00\",\"description\":\"This article discusses the possibility of creating an internal dictionary to handle UTF-8 characters in Elipse E3\/Power.\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to handle UTF-8 characters in Elipse E3\/Power.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kb.elipse.com.br\/#website\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"name\":\"Elipse Knowledgebase\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kb.elipse.com.br\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\",\"name\":\"Elipse Software\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"sameAs\":[\"http:\/\/www.facebook.com\/elipsesoftware\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"contentUrl\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"width\":161,\"height\":58,\"caption\":\"Elipse Software\"},\"image\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/fa6d0b4f046e3b2c208aaf84a40154e9\",\"name\":\"Marco Antonio Gomes Silva\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/7d19cf85bb457f81816ff5d785e3b9f4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/7d19cf85bb457f81816ff5d785e3b9f4?s=96&d=mm&r=g\",\"caption\":\"Marco Antonio Gomes Silva\"},\"url\":\"https:\/\/kb.elipse.com.br\/en\/author\/marco\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to handle UTF-8 characters in Elipse E3\/Power.","description":"This article discusses the possibility of creating an internal dictionary to handle UTF-8 characters in Elipse E3\/Power.","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:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/","og_locale":"en_US","og_type":"article","og_title":"How to handle UTF-8 characters in Elipse E3\/Power.","og_description":"This article discusses the possibility of creating an internal dictionary to handle UTF-8 characters in Elipse E3\/Power.","og_url":"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2023-07-10T19:26:52+00:00","author":"Marco Antonio Gomes Silva","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Marco Antonio Gomes Silva","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/"},"author":{"name":"Marco Antonio Gomes Silva","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/fa6d0b4f046e3b2c208aaf84a40154e9"},"headline":"How to handle UTF-8 characters in Elipse E3\/Power.","datePublished":"2023-07-10T19:26:52+00:00","dateModified":"2023-07-10T19:26:52+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/"},"wordCount":69,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["Scripts","Elipse E3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/","url":"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/","name":"How to handle UTF-8 characters in Elipse E3\/Power.","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2023-07-10T19:26:52+00:00","dateModified":"2023-07-10T19:26:52+00:00","description":"This article discusses the possibility of creating an internal dictionary to handle UTF-8 characters in Elipse E3\/Power.","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/how-to-handle-utf-8-characters-in-elipse-e3-power\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"How to handle UTF-8 characters in Elipse E3\/Power."}]},{"@type":"WebSite","@id":"https:\/\/kb.elipse.com.br\/#website","url":"https:\/\/kb.elipse.com.br\/","name":"Elipse Knowledgebase","description":"","publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kb.elipse.com.br\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kb.elipse.com.br\/#organization","name":"Elipse Software","url":"https:\/\/kb.elipse.com.br\/","sameAs":["http:\/\/www.facebook.com\/elipsesoftware"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/","url":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","contentUrl":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","width":161,"height":58,"caption":"Elipse Software"},"image":{"@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/fa6d0b4f046e3b2c208aaf84a40154e9","name":"Marco Antonio Gomes Silva","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/7d19cf85bb457f81816ff5d785e3b9f4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7d19cf85bb457f81816ff5d785e3b9f4?s=96&d=mm&r=g","caption":"Marco Antonio Gomes Silva"},"url":"https:\/\/kb.elipse.com.br\/en\/author\/marco\/"}]}},"_links":{"self":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/15003"}],"collection":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/comments?post=15003"}],"version-history":[{"count":3,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/15003\/revisions"}],"predecessor-version":[{"id":15009,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/15003\/revisions\/15009"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=15003"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=15003"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=15003"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}