{"id":111724,"date":"2021-08-24T13:07:05","date_gmt":"2021-08-24T04:07:05","guid":{"rendered":"https:\/\/support.questetra.com\/?p=111724"},"modified":"2023-01-16T17:19:30","modified_gmt":"2023-01-16T08:19:30","slug":"text-files-convert-character-encoding-2021","status":"publish","type":"post","link":"https:\/\/support.questetra.com\/en\/addons\/text-files-convert-character-encoding-2021\/","title":{"rendered":"Text Files, Convert Character Encoding"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"><div class=\"su-box su-box-style-default\" id=\"\" style=\"border-color:#003e04;border-radius:0px;max-width:none\"><div class=\"su-box-title\" style=\"background-color:#267137;color:#ffffff;border-top-left-radius:0px;border-top-right-radius:0px\">Text Files, Convert Character Encoding<\/div><div class=\"su-box-content su-u-clearfix su-u-trim\" style=\"border-bottom-left-radius:0px;border-bottom-right-radius:0px\"> Converts text files charset (Coded Character Set). For example, converts UTF-8 encoding to Shift_JIS or UTF-16. If multiple files are attached, all will be converted according to the same rules.<\/div><\/div>\n\n\n\n<div style=\"text-align: center; background: #FFF4CC; margin: 1em; padding: 1em;\">\nConversion may fail if the file&#8217;s Content-Type is recorded in a format with parameters. When a parameter is appended after a semicolon. When a generated file is replaced in the automated step &#8220;Generate Text File&#8221;, etc.<br>\n<h3><span class=\"material-icons\">warning<\/span> PAGE UPDATED<\/h3>\n<a href=\"https:\/\/support.questetra.com\/en\/addons\/text-files-convert-character-encoding-2023\/\">https:\/\/support.questetra.com\/addons\/text-files-convert-character-encoding-2023\/<\/a>\n<\/div>\n\n\n<div class=\"su-spoiler su-spoiler-style-modern-light su-spoiler-icon-plus-square-1\" data-anchor=\"configs\" data-scroll-offset=\"0\" data-anchor-in-url=\"no\"><div class=\"su-spoiler-title\" tabindex=\"0\" role=\"button\"><span class=\"su-spoiler-icon\"><\/span>Configs<\/div><div class=\"su-spoiler-content su-u-clearfix su-u-trim\">\n<ul class=\"fa-ul\">\n<li> A1: Select FILE DATA for Original Text Files<span style=\"color:#990000;\"> *<\/span><\/li>\n<li><span class=\"fa-li\"><i class=\"far fa-pen-square fa-lg\"><\/i><\/span> A2: Set Original Charset (eg &#8220;UTF-8&#8221; )<span style=\"color:#000099;\"><sup style=\"font-style:italic;\">#{EL}<\/sup><\/span><\/li>\n<li><span class=\"fa-li\"><i class=\"far fa-pen-square fa-lg\"><\/i><\/span> B1: Set New Charset (eg &#8220;UTF-16&#8221; )<span style=\"color:#000099;\"><sup style=\"font-style:italic;\">#{EL}<\/sup><\/span><\/li>\n<li> B2: Select FILE DATA that stores New Text Files (append)<span style=\"color:#990000;\"> *<\/span><\/li>\n<\/ul>\n<\/div><\/div>\n\n\n<div class=\"su-spoiler su-spoiler-style-modern-light su-spoiler-icon-plus-square-1 su-spoiler-closed\" data-anchor=\"script\" data-scroll-offset=\"0\" data-anchor-in-url=\"no\"><div class=\"su-spoiler-title\" tabindex=\"0\" role=\"button\"><span class=\"su-spoiler-icon\"><\/span>Script (click to open)<\/div><div class=\"su-spoiler-content su-u-clearfix su-u-trim\">\n\n\n\n<div class=\"hcb_wrap\"><pre class=\"prism line-numbers lang-js\" data-lang=\"JavaScript\"><code>\/\/ GraalJS Script (engine type: 2)\n\n\/\/\/\/\/\/\/\/ START &quot;main()&quot; \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\nmain();\nfunction main(){ \n\n\/\/\/\/ == Config Retrieving \/ \u5de5\u7a0b\u30b3\u30f3\u30d5\u30a3\u30b0\u306e\u53c2\u7167 ==\nconst filesPocketInput    = configs.getObject( &quot;SelectConfA1&quot; );  \/\/\/ REQUIRED \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n  let filesInput          = engine.findData( filesPocketInput );  \/\/ java.util.ArrayList\n  if( filesInput        === null ) {\n    throw new Error( &quot;\\n AutomatedTask UnexpectedFileError:&quot; +\n                     &quot; No File {A1} is attached \\n&quot; );\n  }else{\n    engine.log( &quot; AutomatedTask FilesArray {A1}: &quot; +\n                filesInput.size() + &quot; files&quot; );\n  }\nlet   strInputCharset     = configs.get( &quot;StrConfA2&quot; );           \/\/ NotRequired \/\/\/\/\/\/\/\/\/\/\/\/\/\n  if( strInputCharset   === &quot;&quot; ){\n      strInputCharset     = &quot;UTF-8&quot;;\n  }\nlet   strOutputCharset    = configs.get( &quot;StrConfB1&quot; );           \/\/ NotRequired \/\/\/\/\/\/\/\/\/\/\/\/\/\n  if( strOutputCharset  === &quot;&quot; ){\n      strOutputCharset    = &quot;UTF-8&quot;;\n  }\nconst filesPocketOutput   = configs.getObject( &quot;SelectConfB2&quot; );  \/\/\/ REQUIRED \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n  let filesOutput         = engine.findData( filesPocketOutput ); \/\/ java.util.ArrayList\n  if( filesOutput       === null ) {\n    engine.log( &quot; AutomatedTask FilesArray {B2}: (empty)&quot; );\n    filesOutput           = new java.util.ArrayList();\n  }else{\n    engine.log( &quot; AutomatedTask FilesArray {B2}: &quot; +\n                filesOutput.size() + &quot; files&quot; );\n  }\n\n\n\/\/\/\/ == Data Retrieving \/ \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30c7\u30fc\u30bf\u306e\u53c2\u7167 ==\n\/\/ (Nothing. Retrieved via Expression Language in Config Retrieving)\n\n\n\/\/\/\/ == Calculating \/ \u6f14\u7b97 ==\nconst numFilesInput = filesInput.size() - 0;\n\nfor( let i = 0; i &lt; numFilesInput; i++ ){\n  const strInputFileName = filesInput.get(i).getName() + &quot;&quot;;\n  const strInputFileSize = filesInput.get(i).getLength() + &quot; bytes&quot;;\n  const strInputFileMime = filesInput.get(i).getContentType();\n\n  let strInputText = &quot;&quot;;\n  let numLineCounter = 0;\n  fileRepository.readFile( filesInput.get(i), strInputCharset, function(line) {\n  \/\/ com.questetra.bpms.core.event.scripttask.FileRepositoryWrapper\n  \/\/ https:\/\/questetra.zendesk.com\/hc\/en-us\/articles\/360024574471-R2300#FileRepositoryWrapper\n      strInputText += line + &#39;\\n&#39;;\n      numLineCounter ++;\n  });\n  engine.log( &quot; AutomatedTask FileLoaded: &quot; + strInputFileName + &quot; (&quot; + strInputFileMime + &quot;)&quot; );\n  engine.log( &quot; AutomatedTask: &quot; + strInputFileSize + &quot; \/ &quot; + numLineCounter + &quot; lines&quot; );\n\n  filesOutput.add(\n    new com.questetra.bpms.core.event.scripttask.NewQfile(\n      strInputFileName,\n      strInputFileMime + &quot;; charset=&quot; + strOutputCharset,\n      strInputText\n    )\n  );\n}\n\n\n\/\/\/\/ == Data Updating \/ \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u30c7\u30fc\u30bf\u3078\u306e\u4ee3\u5165 ==\nengine.setData( filesPocketOutput, filesOutput );\n\n} \/\/\/\/\/\/\/\/ END &quot;main()&quot; \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\n\n\n\/*\nNotes:\n- Used when incorporating &quot;Step in which Text file Encoding is automatically changed&quot; in the workflow.\n    - Charset of Text file is automatically changed when the process reaches this automated task.\n- The file name of the output file will be the same as the input file.\n    - The line feed code is `LF`.\n- Converts according to the specified Encodings.\n    - No auto-detect feature.\n    - If not specified, the default Encoding is `UTF-8`.\n\nAPPENDIX:\n- `UTF-8`\n    - Compactly encodes more than 1 million Unicode characters in the world with 1 to 4 bytes.\n    - It became the most common character code in 2008 and is used in 97% of web pages as of 2021.\n    - UTF-8 is superset of US-ASCII (single-byte characters). (upward compatible)\n        - That is, ASCII files are also UTF-8 files. (US-ASCII is a subset of UTF-8)\n        - Similarly, ASCII files are also Shift_JIS files.\n- `UTF-16`\n    - Encodes over 1 million Unicode characters in the world with 2-4 bytes.\n    - If there are many Asian characters such as Japanese and Chinese, encode them compactly.\n- Another encoding\n    - `charset=UTF-16` (Unicode [characters around the world])\n    - `charset=UTF-16BE` (Unicode [characters around the world])\n    - `charset=UTF-16LE` (Unicode [characters around the world])\n    - `charset=UTF-32` (Unicode [characters around the world])\n    - `charset=x-UTF-32LE-BOM` (Unicode [characters around the world])\n    - `charset=ISO-8859-1` (Western language characters)\n    - `charset=Shift_JIS` (Japanese characters)\n    - `charset=Big5` (Traditional Chinese characters)\n    - `charset=GB2312` (Simplified Chinese EUC characters)\n    - `charset=GBK` (Simplified Chinese GB characters)\n    - `charset=KOI8-R` (Russian)\n    - In addition, &quot;UTF8B (UTF-8 with BOM)&quot; cannot be output. (File for Windows \/ pray for its eradication)\n    - https:\/\/docs.oracle.com\/javase\/9\/intl\/supported-encodings.htm\n\n\nNotes-ja:\n- \u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u5185\u306b\u300cText\u30d5\u30a1\u30a4\u30ebEncoding\u304c\u81ea\u52d5\u7684\u306b\u5909\u66f4\u3055\u308c\u308b\u5de5\u7a0b\u300d\u3092\u7d44\u307f\u8fbc\u3080\u969b\u306b\u5229\u7528\u3057\u307e\u3059\u3002\n    - \u6848\u4ef6\u304c\u81ea\u52d5\u51e6\u7406\u5de5\u7a0b\u306b\u5230\u9054\u3057\u305f\u969b\u3001Text\u30d5\u30a1\u30a4\u30eb\u306eCharset\u304c\u81ea\u52d5\u7684\u306b\u5909\u66f4\u3055\u308c\u307e\u3059\u3002\n- \u51fa\u529b\u30d5\u30a1\u30a4\u30eb\u306e\u30d5\u30a1\u30a4\u30eb\u540d\u306f\u3001\u5165\u529b\u30d5\u30a1\u30a4\u30eb\u3068\u540c\u3058\u30d5\u30a1\u30a4\u30eb\u540d\u306b\u306a\u308a\u307e\u3059\u3002\n    - \u6539\u884c\u30b3\u30fc\u30c9\u306f `LF` \u3067\u3059\u3002\n- \u6307\u5b9a\u3055\u308c\u305f Encoding \u306b\u5f93\u3063\u3066\u5909\u63db\u3057\u307e\u3059\u3002\n    - \u81ea\u52d5\u5224\u5225\u6a5f\u80fd\u306f\u3042\u308a\u307e\u305b\u3093\u3002\n    - \u672a\u6307\u5b9a\u306e\u5834\u5408\u3001\u30c7\u30d5\u30a9\u30eb\u30c8\u306e Encoding \u306f `UTF-8` \u3067\u3059\u3002\n\nAPPENDIX-ja:\n- `UTF-8`\n    - \u4e16\u754c100\u4e07\u7a2e\u4ee5\u4e0a\u306eUnicode\u6587\u5b57\u3092\u30011\uff5e4\u30d0\u30a4\u30c8\u3067\u30b3\u30f3\u30d1\u30af\u30c8\u306b\u30a8\u30f3\u30b3\u30fc\u30c9\u3057\u307e\u3059\u3002\n    - 2008\u5e74\u306b\u6700\u3082\u4e00\u822c\u7684\u306a\u6587\u5b57\u30b3\u30fc\u30c9\u3068\u306a\u308a\u30012021\u5e74\u6642\u70b9\u306797%\u306e\u30a6\u30a7\u30d6\u30da\u30fc\u30b8\u3067\u5229\u7528\u3055\u308c\u3066\u3044\u307e\u3059\u3002\n    - UTF-8 \u306f US-ASCII\uff081\u30d0\u30a4\u30c8\u6587\u5b57\uff09\u306e\u4e0a\u4f4d\u4e92\u63db\u3067\u3059\u3002\uff08US-ASCII \u306f UTF-8 \u306e\u30b5\u30d6\u30bb\u30c3\u30c8\u3067\u3059\uff09\n        - \u3059\u306a\u308f\u3061 ASCII \u30d5\u30a1\u30a4\u30eb\u306f UTF-8 \u30d5\u30a1\u30a4\u30eb\u3067\u3082\u3042\u308a\u307e\u3059\u3002\n        - \u540c\u69d8\u306b ASCII \u30d5\u30a1\u30a4\u30eb\u306f Shift_JIS \u30d5\u30a1\u30a4\u30eb\u3067\u3082\u3042\u308a\u307e\u3059\u3002\n- `UTF-16`\n    - \u4e16\u754c100\u4e07\u7a2e\u4ee5\u4e0a\u306eUnicode\u6587\u5b57\u3092\u30012\uff5e4\u30d0\u30a4\u30c8\u3067\u30a8\u30f3\u30b3\u30fc\u30c9\u3057\u307e\u3059\u3002\n    - \u65e5\u672c\u8a9e\u3084\u4e2d\u56fd\u8a9e\u306a\u3069\u306e\u30a2\u30b8\u30a2\u6587\u5b57\u304c\u591a\u3044\u5834\u5408\u306f\u3001\u30b3\u30f3\u30d1\u30af\u30c8\u306b\u30a8\u30f3\u30b3\u30fc\u30c9\u3057\u307e\u3059\u3002\n- \u305d\u306e\u4ed6\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\n    - `charset=UTF-16` (Unicode\uff3b\u4e16\u754c\u4e2d\u306e\u6587\u5b57\uff3d)\n    - `charset=UTF-16BE` (Unicode\uff3b\u4e16\u754c\u4e2d\u306e\u6587\u5b57\uff3d)\n    - `charset=UTF-16LE` (Unicode\uff3b\u4e16\u754c\u4e2d\u306e\u6587\u5b57\uff3d)\n    - `charset=UTF-32` (Unicode\uff3b\u4e16\u754c\u4e2d\u306e\u6587\u5b57\uff3d)\n    - `charset=x-UTF-32LE-BOM` (Unicode\uff3b\u4e16\u754c\u4e2d\u306e\u6587\u5b57\uff3d)\n    - `charset=ISO-8859-1` (\u30e8\u30fc\u30ed\u30c3\u30d1\u8a00\u8a9e\u306e\u6587\u5b57)\n    - `charset=Shift_JIS` (\u65e5\u672c\u8a9e\u306e\u6587\u5b57)\n    - `charset=Big5` (\u7e41\u4f53\u4e2d\u56fd\u8a9e\u306e\u6587\u5b57)\n    - `charset=GB2312` (\u7c21\u4f53\u4e2d\u56fd\u8a9eEUC\u6587\u5b57)\n    - `charset=GBK` (\u7c21\u4f53\u4e2d\u56fd\u8a9eGB\u306e\u6587\u5b57)\n    - `charset=KOI8-R` (\u30ed\u30b7\u30a2\u8a9e)\n    - \u306a\u304a &quot;UTF8B (BOM\u4ed8 UTF-8)&quot; \u306f\u51fa\u529b\u3067\u304d\u307e\u305b\u3093\u3002\uff08Windows\u7528\u30d5\u30a1\u30a4\u30eb\uff0f\u305d\u306e\u64b2\u6ec5\u3092\u7948\u5ff5\uff09\n    - https:\/\/docs.oracle.com\/javase\/9\/intl\/supported-encodings.htm\n    - https:\/\/docs.oracle.com\/javase\/jp\/9\/intl\/supported-encodings.htm\n*\/\n\n<\/code><\/pre><\/div>\n\n\n<\/div><\/div>\n\n\n\n<figure class=\"wp-block-image alignright\"><a href=\"#\"><img decoding=\"async\" src=\"data:image;base64,\niVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAxlJREFUWEfF\nl0tIVGEUgL8rjuRjKjNL1EVqmSgJupg0LFChTatcWeTCEmZsY0EQuhBXI0JMbqaZAS3QsEUyLcRN\nCGHgZqhcRINQaoWQCGko9pioG3fGO4\/7mLlXjbnb\/zy+e875zzm\/QJo\/wbB\/HzmItCHQjEgdAieA\n\/B39DUQ+IjCPyAsE\/Nj5bsR2aoBHFBHiLuAADhgxCvwEvGQxRCeryXSSA3hxIHAPyDXoWCm2jcgd\nHHj19PUBfDwAunfpWKnmwc5NLVvaAF4mELiyT84jZkSe4OCq0qYaIMmfV+dXM9Y8RuWhSl220J8Q\nrrcunPNOLRlVJBIBIjn3aGlKzidaJqgtqGVyaZKpT1MqsTJrGT1nenC\/c9P\/ql8bUqQ7viZiAJFq\n\/6BVcPHOBQRGF0bpetmlctBxqgNXoysMl5mRycr2Cn2BPnVhZnFSvh0xAB\/3gVtKaaVz6VwCGHg9\nQFNRE5YMC+u\/1pn+PI0MMLc6R\/3RerZ+b1HztEYrEsPYuS0dRACkJgNflfdcy7kMMPtlFneTG6vF\nSnAjGHYkA3iCHopzimk83qgHIPWJAqlZRQC8XENgXIkqGRw+N8zajzVCf0PRY\/+yn6XNpb0ASLei\nAweP5QiMAte1AAZtg\/QGehl\/n8jXcKyBztOdZGdmR3NtIgKSq4fYuSFH4A0CdWYAtBJrCkBkHgf1\ncgTW4wZL1LZkMD4CgcsBqg5XqXwvfFvA9sxmpgYkGxvYOSIDiHp\/pJeCPUdAMmBHMAWwzxFIADCU\nAt3+u3NgqgYSUuDFUBH6L\/qpOFih4ljcXKTteZu5GlAUoaFr6LQ5Kc0tVQHILddkBBKuoW4j+m9F\nqGhEmq1Y+qOhs0N4g16Wt5ZTlQDx09BcK47MA9Uwaq9oD0+3PEteSueygLwPlFvLk80CxTCStJOM\n4zDfeR+F2YXhYjPyjVwY0QPYRnMcR4aS7kIyc2mG1pJWI76jMvKUTFDSXUhkKZ2VrKW4hZLcElMA\n8p4Qp5RiJZMl07qUpoiEqRDEhE2u5bFIpPFhIkOk9WkWH++0PU53mXSjav8ArIGUMG7ebhkAAAAA\nSUVORK5CYII=\n\" alt=\"\"\/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-cloud-download-alt\"><\/i> Download<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/drive.google.com\/file\/d\/16kIrIwCcYZYEUo5s2QXqpnQyPf3hqF6b\/view?usp=drivesdk\" target=\"_blank\" rel=\"noreferrer noopener\">Text-Files-Convert-Character-Encoding-2021.xml<\/a><\/li>\n<\/ul>\n\n\n\n<p class=\"has-text-align-right has-small-font-size wp-block-paragraph\">2021-08-20 (C) Questetra, Inc. (MIT License)<br><a href=\"https:\/\/support.questetra.com\/en\/addons\/text-files-convert-character-encoding-2021\/\">https:\/\/support.questetra.com\/addons\/text-files-convert-character-encoding-2021\/<\/a><br><i class=\"fal fa-info-circle\"><\/i> The Add-on import feature is available with <span style=\"color:#4a86e8\" class=\"has-inline-color\"><strong>Professional<\/strong><\/span> edition.<br>Freely modifiable JavaScript (ECMAScript) code. No warranty of any kind.<\/p>\n\n\n<div class=\"su-divider su-divider-style-dashed\" style=\"margin:30px 0;border-width:8px;border-color:#009900\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-lightbulb-exclamation\"><\/i> Notes<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Used when incorporating a Step in which Text file Encoding is automatically changed in the workflow.\n<ul class=\"wp-block-list\">\n<li>Charset of Text file is automatically changed when the process reaches this automated task.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>The file name of the output file will be the same as the input file.\n<ul class=\"wp-block-list\">\n<li>The line feed code is <code>LF<\/code>.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Converts according to the specified Encodings.\n<ul class=\"wp-block-list\">\n<li>No auto-detect feature.<\/li>\n\n\n\n<li>If not specified, the default Encoding is <code>UTF-8<\/code>.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-images\"><\/i> Capture<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-capture-en-edited.png?ssl=1\" target=\"_blank\" rel=\"noopener\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1198\" height=\"675\" data-attachment-id=\"111728\" data-permalink=\"https:\/\/support.questetra.com\/en\/maintenance\/maintenance-20251117\/attachment\/text-files-convert-character-encoding-2021-capture-en-2\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-capture-en-edited.png?fit=1198%2C675&amp;ssl=1\" data-orig-size=\"1198,675\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"text-files-convert-character-encoding-2021-capture-en\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-capture-en-edited.png?fit=1024%2C577&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-capture-en-edited.png?resize=1198%2C675&#038;ssl=1\" alt=\"Converts text files charset (Coded Character Set). For example, converts UTF-8 encoding to Shift_JIS or UTF-16. If multiple files are attached, all will be converted according to the same rules.\" class=\"wp-image-111728\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-capture-en-edited.png?w=1198&amp;ssl=1 1198w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-capture-en-edited.png?resize=559%2C315&amp;ssl=1 559w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-capture-en-edited.png?resize=1024%2C577&amp;ssl=1 1024w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-capture-en-edited.png?resize=768%2C433&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full is-style-default q-box\"><a href=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-config-en.png?ssl=1\" target=\"_blank\" rel=\"noopener\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1199\" height=\"608\" data-attachment-id=\"111716\" data-permalink=\"https:\/\/support.questetra.com\/en\/maintenance\/maintenance-20251117\/attachment\/text-files-convert-character-encoding-2021-config-en\/\" data-orig-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-config-en.png?fit=1199%2C608&amp;ssl=1\" data-orig-size=\"1199,608\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"text-files-convert-character-encoding-2021-config-en\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-config-en.png?fit=1024%2C519&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-config-en.png?resize=1199%2C608&#038;ssl=1\" alt=\"Converts text files charset (Coded Character Set). For example, converts UTF-8 encoding to Shift_JIS or UTF-16. If multiple files are attached, all will be converted according to the same rules.\" class=\"wp-image-111716\" srcset=\"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-config-en.png?w=1199&amp;ssl=1 1199w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-config-en.png?resize=600%2C304&amp;ssl=1 600w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-config-en.png?resize=1024%2C519&amp;ssl=1 1024w, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-config-en.png?resize=768%2C389&amp;ssl=1 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-book\"><\/i> Appendix<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>UTF-8<\/code>\n<ul class=\"wp-block-list\">\n<li>Compactly encodes more than 1 million Unicode characters in the world with 1 to 4 bytes.<\/li>\n\n\n\n<li>It became the most common character code in 2008 and is used in 97% of web pages as of 2021.<\/li>\n\n\n\n<li>UTF-8 is superset of US-ASCII (single-byte characters). (upward compatible)\n<ul class=\"wp-block-list\">\n<li>That is, ASCII files are also UTF-8 files. (US-ASCII is a subset of UTF-8)<\/li>\n\n\n\n<li>Similarly, ASCII files are also Shift_JIS files.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><code>UTF-16<\/code>\n<ul class=\"wp-block-list\">\n<li>Encodes over 1 million Unicode characters in the world with 2-4 bytes.<\/li>\n\n\n\n<li>If there are many Asian characters such as Japanese and Chinese, encode them compactly.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Another encoding\n<ul class=\"wp-block-list\">\n<li><code>charset=UTF-16<\/code> (Unicode [characters around the world])<\/li>\n\n\n\n<li><code>charset=UTF-16BE<\/code> (Unicode [characters around the world])<\/li>\n\n\n\n<li><code>charset=UTF-16LE<\/code> (Unicode [characters around the world])<\/li>\n\n\n\n<li><code>charset=UTF-32<\/code> (Unicode [characters around the world])<\/li>\n\n\n\n<li><code>charset=x-UTF-32LE-BOM<\/code> (Unicode [characters around the world])<\/li>\n\n\n\n<li><code>charset=ISO-8859-1<\/code> (Western language characters)<\/li>\n\n\n\n<li><code>charset=Shift_JIS<\/code> (Japanese characters)<\/li>\n\n\n\n<li><code>charset=Big5<\/code> (Traditional Chinese characters)<\/li>\n\n\n\n<li><code>charset=GB2312<\/code> (Simplified Chinese EUC characters)<\/li>\n\n\n\n<li><code>charset=GBK<\/code> (Simplified Chinese GB characters)<\/li>\n\n\n\n<li><code>charset=KOI8-R<\/code> (Russian)<\/li>\n\n\n\n<li>In addition, &#8220;UTF8B (UTF-8 with BOM)&#8221; cannot be output. (File for Windows \/ pray for its eradication)<\/li>\n\n\n\n<li><a href=\"https:\/\/docs.oracle.com\/javase\/9\/intl\/supported-encodings.htm\" rel=\"nofollow\">https:\/\/docs.oracle.com\/javase\/9\/intl\/supported-encodings.htm<\/a><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><i class=\"fal fa-balance-scale\"><\/i> See also<\/h3>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-questetra-support wp-block-embed-questetra-support\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"x9TXPABVpq\"><a href=\"https:\/\/support.questetra.com\/en\/bpmn-icons\/converter-textfile-to-string\/\">Converter (Text File to String type data)<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Converter (Text File to String type data)&#8221; &#8212; Questetra Support\" src=\"https:\/\/support.questetra.com\/bpmn-icons\/converter-textfile-to-string\/embed\/#?secret=FpLi1bEcsl#?secret=x9TXPABVpq\" data-secret=\"x9TXPABVpq\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Converts text files charset (Coded Character Set). For example, converts UTF-8 encoding to Shift_JIS or UTF-16. If multiple files are attached, all will be converted according to the same rules.<\/p>\n","protected":false},"author":2,"featured_media":111720,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","_uag_custom_page_level_css":"","advanced_seo_description":"Converts text files charset (Coded Character Set). For example, converts UTF-8 encoding to Shift_JIS or UTF-16. If multiple files are attached, all will be converted according to the same rules.","jetpack_seo_html_title":"","jetpack_seo_noindex":false,"jetpack_seo_schema_type":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_wpcom_ai_launchpad_first_post":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"{title}\n\n{excerpt}\n\n{url}","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"_wpas_customize_per_network":false,"jetpack_post_was_ever_published":false},"categories":[168],"tags":[491,376,377,389,2535],"faq_section":[],"class_list":["post-111724","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-addons","tag-expense-claim","tag-filerepository","tag-newqfile","tag-tsv-csv","tag-workflow-automation"],"jetpack_publicize_connections":[],"uagb_featured_image_src":{"full":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?fit=1200%2C675&ssl=1",1200,675,false],"thumbnail":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=440%2C440&ssl=1",440,440,true],"medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?fit=560%2C315&ssl=1",560,315,true],"medium_large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?fit=768%2C432&ssl=1",768,432,true],"large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?fit=1024%2C576&ssl=1",1024,576,true],"1536x1536":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?fit=1200%2C675&ssl=1",1200,675,true],"2048x2048":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?fit=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-landscape-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-portrait-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=900%2C675&ssl=1",900,675,true],"newspack-article-block-square-large":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=1200%2C675&ssl=1",1200,675,true],"newspack-article-block-landscape-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=800%2C600&ssl=1",800,600,true],"newspack-article-block-portrait-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=600%2C675&ssl=1",600,675,true],"newspack-article-block-square-medium":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=800%2C675&ssl=1",800,675,true],"newspack-article-block-landscape-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=600%2C450&ssl=1",600,450,true],"newspack-article-block-portrait-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=450%2C600&ssl=1",450,600,true],"newspack-article-block-square-intermediate":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=600%2C600&ssl=1",600,600,true],"newspack-article-block-landscape-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=400%2C300&ssl=1",400,300,true],"newspack-article-block-portrait-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=300%2C400&ssl=1",300,400,true],"newspack-article-block-square-small":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=400%2C400&ssl=1",400,400,true],"newspack-article-block-landscape-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=200%2C150&ssl=1",200,150,true],"newspack-article-block-portrait-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=150%2C200&ssl=1",150,200,true],"newspack-article-block-square-tiny":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?resize=200%2C200&ssl=1",200,200,true],"newspack-article-block-uncropped":["https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?fit=1200%2C675&ssl=1",1200,675,true]},"uagb_author_info":{"display_name":"IMAMURA, Genichi","author_link":"https:\/\/support.questetra.com\/en\/author\/imamuragenichi\/"},"uagb_comment_info":2,"uagb_excerpt":"Converts text files charset (Coded Character Set). For example, converts UTF-8 encoding to Shift_JIS or UTF-16. If multiple files are attached, all will be converted according to the same rules.","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p9DiIh-t40","jetpack-related-posts":[{"id":83246,"url":"https:\/\/support.questetra.com\/en\/bpmn-icons\/generator-textfile\/","url_meta":{"origin":111724,"position":0},"title":"Generate Text File","author":"Shiho Tatsumi","date":"2024-12-13","format":false,"excerpt":"This item converts any text into a file and adds it to a File type data item.","rel":"","context":"In &quot;BPMN Icons&quot;","block_context":{"text":"BPMN Icons","link":"https:\/\/support.questetra.com\/en\/category\/bpmn-icons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/09\/bpmn-icon-service-task-generator-text-file.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/09\/bpmn-icon-service-task-generator-text-file.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/09\/bpmn-icon-service-task-generator-text-file.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/09\/bpmn-icon-service-task-generator-text-file.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2020\/09\/bpmn-icon-service-task-generator-text-file.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":141140,"url":"https:\/\/support.questetra.com\/en\/addons\/text-files-convert-character-encoding-2023\/","url_meta":{"origin":111724,"position":1},"title":"Text Files, Convert Character Encoding","author":"IMAMURA, Genichi","date":"2023-01-16","format":false,"excerpt":"Converts text files charset (Coded Character Set). For example, converts UTF-8 encoding to Shift_JIS or UTF-16. If multiple files are attached, all will be converted according to the same rules.","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"Text Files, Convert Character Encoding","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2023\/01\/text-files-convert-character-encoding-2023-capture-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2023\/01\/text-files-convert-character-encoding-2023-capture-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2023\/01\/text-files-convert-character-encoding-2023-capture-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2023\/01\/text-files-convert-character-encoding-2023-capture-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2023\/01\/text-files-convert-character-encoding-2023-capture-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":82966,"url":"https:\/\/support.questetra.com\/en\/addons\/google-drive-file-convert\/","url_meta":{"origin":111724,"position":2},"title":"Google Drive: File, Convert","author":"IMAMURA, Genichi","date":"2019-12-25","format":false,"excerpt":"Converts file in Google Drive and save as another MimeType file. Supports both Google Doc files and common files. File ID can be obtained from URI etc. (If Folder-ID not specified, the file will inherit any discoverable parents of the source file.)","rel":"","context":"In &quot;Add-ons&quot;","block_context":{"text":"Add-ons","link":"https:\/\/support.questetra.com\/en\/category\/addons\/"},"img":{"alt_text":"Google Drive: File, Convert","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/12\/Google-Drive-File-Convert-en.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":74618,"url":"https:\/\/support.questetra.com\/en\/developer-blog\/message-start-event-http-python\/","url_meta":{"origin":111724,"position":3},"title":"Starting a Case from Outside of Questetra BPM Suite (Python Chapter)","author":"Hirotaka NISHI","date":"2019-01-28","format":false,"excerpt":"Introducing how to access Message Start Event (HTTP) API from Python script.","rel":"","context":"In &quot;Questetra Developers Blog&quot;","block_context":{"text":"Questetra Developers Blog","link":"https:\/\/support.questetra.com\/en\/category\/developer-blog\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/01\/message-start-event-http-with-python-1200x675-1.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/01\/message-start-event-http-with-python-1200x675-1.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/01\/message-start-event-http-with-python-1200x675-1.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/01\/message-start-event-http-with-python-1200x675-1.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2019\/01\/message-start-event-http-with-python-1200x675-1.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":72396,"url":"https:\/\/support.questetra.com\/en\/bpmn-icons\/converter-textfile-to-string\/","url_meta":{"origin":111724,"position":4},"title":"Converter (Text File to String type data)","author":"HatanakaAkihiro","date":"2023-08-21","format":false,"excerpt":"This item overwrites the value of String type data item with the contents of a text file stored in File type data item.","rel":"","context":"In &quot;BPMN Icons&quot;","block_context":{"text":"BPMN Icons","link":"https:\/\/support.questetra.com\/en\/category\/bpmn-icons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/01\/bpmn-icon-service-task-converter.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/01\/bpmn-icon-service-task-converter.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/01\/bpmn-icon-service-task-converter.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/01\/bpmn-icon-service-task-converter.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/01\/bpmn-icon-service-task-converter.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":111732,"url":"https:\/\/support.questetra.com\/ja\/addons\/text-files-convert-character-encoding-2021\/","url_meta":{"origin":111724,"position":5},"title":"Text \u30d5\u30a1\u30a4\u30eb, \u6587\u5b57\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u306e\u5909\u63db","author":"IMAMURA, Genichi","date":"2021-08-24","format":false,"excerpt":"Text\u30d5\u30a1\u30a4\u30eb\u306e\u6587\u5b57\u30b3\u30fc\u30c9\uff08\u7b26\u53f7\u5316\u6587\u5b57\u96c6\u5408\uff09\u3092\u5909\u66f4\u3057\u307e\u3059\u3002\u305f\u3068\u3048\u3070\u3001UTF-8 \u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092 UTF-16 \u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3084 Shift_JIS \u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u306b\u5909\u63db\u3057\u307e\u3059\u3002\u8907\u6570\u30d5\u30a1\u30a4\u30eb\u304c\u6dfb\u4ed8\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u3001\u3059\u3079\u3066\u3092\u540c\u3058\u30eb\u30fc\u30eb\u3067\u5909\u63db\u3057\u307e\u3059\u3002","rel":"","context":"In &quot;\u30a2\u30c9\u30aa\u30f3&quot;","block_context":{"text":"\u30a2\u30c9\u30aa\u30f3","link":"https:\/\/support.questetra.com\/ja\/category\/addons\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-ja.png?fit=1200%2C675&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-ja.png?fit=1200%2C675&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-ja.png?fit=1200%2C675&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-ja.png?fit=1200%2C675&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-ja.png?fit=1200%2C675&ssl=1&resize=1050%2C600 3x"},"classes":[]}],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/support.questetra.com\/wp-content\/uploads\/2021\/08\/text-files-convert-character-encoding-2021-nocode-en.png?fit=1200%2C675&ssl=1","_links":{"self":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/111724","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/comments?post=111724"}],"version-history":[{"count":8,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/111724\/revisions"}],"predecessor-version":[{"id":141158,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/posts\/111724\/revisions\/141158"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media\/111720"}],"wp:attachment":[{"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/media?parent=111724"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/categories?post=111724"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/tags?post=111724"},{"taxonomy":"faq_section","embeddable":true,"href":"https:\/\/support.questetra.com\/en\/wp-json\/wp\/v2\/faq_section?post=111724"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}