To display unescaped data in Filament, you can use the html() method on the TextColumn to render the data as HTML instead of escaping it. This is particularly useful when you are sure that the data does not contain any harmful scripts or elements that could lead to XSS (Cross-Site Scripting) vulnerabilities. Here's how you can modify your TextColumn to display unescaped data:
TextColumn::make('Data')
->html()
This will tell Filament to treat the content of the 'Data' column as HTML, which means it will render Chinese characters and other HTML entities properly without converting them to their respective HTML codes.
Always ensure that the data you are marking as HTML is safe to render to prevent security risks. If the data comes from user input, consider sanitizing it before displaying.