RGO
RGO

Reputation: 4727

SQL Server function to convert strings from one charset to another?

I am looking for a function that changes the input character set, e.g. Japanese, to some other character set, e.g. UTF-8.

What SQL function I can use?

Thanks!

Upvotes: 0

Views: 475

Answers (1)

AnandPhadke
AnandPhadke

Reputation: 13506

I think there is no such function as builtin. But to achieve this you can use collation settings.

Upvotes: 2

Related Questions