Convert Chinese text to Wade-Giles romanization.
Chinese text to convert (can include non-Chinese characters)
Conversion options
Conversion result with text and segments
// Basic usagetoWadeGiles('台北').text; // "t'ai²-pei³"// With optionstoWadeGiles('高雄', { toneFormat: 'number' }).text; // "kao1-hsiung2"// URL-safe outputtoWadeGiles('台灣', { urlSafe: true }).text; // "tai-wan"// Mixed texttoWadeGiles('Hello 世界!').text; // "Hello shih⁴-chieh⁴!" Copy
// Basic usagetoWadeGiles('台北').text; // "t'ai²-pei³"// With optionstoWadeGiles('高雄', { toneFormat: 'number' }).text; // "kao1-hsiung2"// URL-safe outputtoWadeGiles('台灣', { urlSafe: true }).text; // "tai-wan"// Mixed texttoWadeGiles('Hello 世界!').text; // "Hello shih⁴-chieh⁴!"
Convert Chinese text to Wade-Giles romanization.