[issue] special character changes
See original GitHub issueWhen some special characters used in a file, it’s been displayed correctly in the SH operator.
specialcharacter.sql
SELECT 'àáâãäåèéêëìíîïòóôõöùúûüñýÿç' AS MatchFirstName
test.dig
timezone: UTC
_export:
sh:
shell: ["powershell.exe", "-"]
+disp_current_date:
sh>: type c:\dev\test\test\specialcharacter.sql
Output
2019-03-12 19:01:30 -0700 [INFO] (0019@[0:default]+test+disp_current_date): sh>: type c:\dev\test\test\specialcharacter.sql
SELECT 'A A¡A¢A£A☼A¥A"AcAªA«A¬A-ArA_A²A3A'AµA¶A1AºA»A¼A±A½A¿A§' AS MatchFirstName
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Word changes Font after inserting special Characters
Created on August 31, 2020. Word changes Font after inserting special Characters. I have the same problem that I found here:.
Read more >Character set, encoding and special character issues - IBM
Character set, encoding and special character issues. This section describes how to resolve common character set and encoding issues. The IBM Dashboard ...
Read more >🚀 Preventing issues with special characters and page ...
When different components exchange data with one another, issues can arise with the character encoding used for text.
Read more >5 Ways to Fix Windows 10 Keyboard Special Characters Not ...
Let's find out the answer to what causes the issue and how to fix keyboard symbols changed issue in Windows 10. 1. Restart...
Read more >How to deal with special characters in CSV - CSV Loader
Problems with special characters and encoding usually occur when you open the CSV in another program (i.e., not a regular text editor).
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@kulmam92
Both PowerShell seem to require
chcp 65001
.Please try this.
chcp 65001
before run digdagsh>
command tochcp 65001; type -Encoding UTF8 c:\dev\test\test\specialcharacter.sql
specialcharacter.sql
test.dig
my operation log(I tried v0.9.35)
If you want to show UTF-8 characters on your terminal, you have to set
chcp 65001
before running the workflow. https://superuser.com/questions/237081/whats-the-code-page-of-utf-8