關於
將文本轉換為 Unicode 轉義並將轉義序列解碼回可讀文本。
什麼是 Unicode 轉義?
Unicode escape sequences represent characters using hexadecimal codes such as \u0041 or \u{1F600}. They are commonly used in code, JSON strings, and logs.
編碼和解碼模式
編碼模式將可讀字符轉換為轉義序列。解碼模式將轉義值反轉回可讀的 Unicode 文本。
何时使用
當檢查編碼的負載、準備測試數據或調試 API 和應用程序中的字符處理問題時,使用此轉換器。