Non-English characters that is inserted during workflow transition displayed as two characters
Platform Notice: Data Center - This article applies to Atlassian products on the Data Center platform.
Note that this knowledge base article was created for the Data Center version of the product. Data Center knowledge base articles for non-Data Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Symptoms
Non-English characters that is inserted during workflow transition displayed as two characters . However, non-English Characters inserted during Issue Edit is correctly inserted.
Diagnosis
- In the JIRA System Info , the "webwork.i18n.encoding" is not configured as UTF-8
Cause
Character encoding used by one of the JIRA components is set to use encoding that doesn't support given characters.
Resolution
- Backup JIRA database
double confirm the value of "webwork.i18n.encoding" in the database
SELECT * FROM propertystring where ID in (SELECT ID FROM propertyentry where PROPERTY_KEY='webwork.i18n.encoding');
take note of the ID return to be use in the following update query
update database manually to use UTF-8
UPDATE propertystring SET propertyvalue="UTF-8" WHERE ID=<ID>;
- Restart JIRA