一部の CSV エディターでは、Unicode エンコードを明示的に指定して Unicode CSV ファイルを読み込む必要があります。Issue <!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #7057C7; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: block; max-width: ; width: auto; height: auto; } } 一部の CSV エディター (Excel など) では、正しく使用されていない場合、Unicode CSV ファイルを開くと、他の文字 ("" など) の代わりに疑問符 "?" などの文字が表示されます。 CSVにエクスポートすると、一部のユーザーにとって、一部の文字が「?」(疑問符)として表示されます。 Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #7057C7; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: block; max-width: ; width: auto; height: auto; } } すべて Cause<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #7057C7; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: block; max-width: ; width: auto; height: auto; } } CSV ファイルは本質的に Unicode セーフではありません。一部のエディターは、デフォルトで Unicode 以外の文字セットを使用して CSV ファイルを開きます。間違った文字エンコードを使用すると、サポートされていない文字が疑問符 "?" として表示されることがあります。この問題は、システムプロパティ glide.export.csv.charset が UTF-8 に設定されていても、エディターがファイルを UTF-8 として解釈しない場合にも発生する可能性があります。 したがって、インスタンスでシステムプロパティを設定した場合、問題を明示的に解決するわけではありませんが、ファイルを開くプラットフォームもUTF-8をサポート/解釈することも確認してください。 Resolution<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #7057C7; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: block; max-width: ; width: auto; height: auto; } } オペレーティング システムが Unicode セーフである場合は、ファイルを開くときに適切な設定を使用して、Unicode ファイルを正しく開きます。たとえば、Excelでは、「ダイアログを開く」でUnicodeエンコーディングを明示的に指定してファイルを開きます。 CSV ファイルを開くときに Unicode 文字が正しく表示されるようにするには: glide.export.csv.charset システムプロパティを UTF-8 に設定します。 使用している Unicode 文字がオペレーティングシステムでサポートされていることを確認します。 CSVファイルをエディター(Excelなど)で開く場合は、文字の誤解釈を避けるために、ファイルを開くプロセス中にUTF-8エンコーディングを明示的に選択します。