Problem in load data having double quotes

Hey guys , I am working on updating Liquibase library to 4.16.0 from 3.5.3
I am loading table data from CSV file and one of the column data is JSON String, which is nvarchar (For Column data type).
With 3.5.3 It was working fine and It loads data to DB as it is. But with 4.16.0 , Liquibase alter the data of “” (two double quote ) to Single Quote. giving example of JSON data
Original Data
{“default”:“No action required - Country excluded from assessment per client setup”,“localized”:{“de”:“”,“ko”:“”,“pt”:“”,“ja”:“”,“it”:“”,“fr”:“”,“pl”:“”,“es”:“”,“nl”:“”,“zh”:“”}}
Inserted Data
{“default”:“No action required - Country excluded from assessment per client setup”,“localized”:{“de”:“,“ko”:”,“pt”:“,“ja”:”,“it”:“,“fr”:”,“pl”:“,“es”:”,“nl”:“,“zh”:”}}

I tried with quotChar : ‘"’
But it was not woking , Is there any load data configuration I am missing here.