• Character Set:
  • Format:
  • Delimiter:

Description

Encoding Examples
  • 中国abc encoded in UTF-8, with the format set to hexadecimal, and the separator set to none, results in E4B8ADE59BBD616263.
  • 中国abc encoded in UTF-8, with the format set to hexadecimal, and the separator set to space, results in E4 B8 AD E5 9B BD 61 62 63.
  • 中国abc encoded in UTF-8, with the format set to hexadecimal, and the separator set to custom, with input ,0x, results in E4,0xB8,0xAD,0xE5,0x9B,0xBD,0x61,0x62,0x63.
  • 中国abc encoded in UTF-8, with the format set to decimal, and the separator set to comma, results in 228,184,173,229,155,189,97,98,99.
Decoding Examples
  • E4B8ADE59BBD616263 decoded in UTF-8, with the format set to hexadecimal, and the separator set to none, results in 中国abc.
  • E4 B8 AD E5 9B BD 61 62 63 decoded in UTF-8, with the format set to hexadecimal, and the separator set to space, results in 中国abc.
  • E4,0xB8,0xAD,0xE5,0x9B,0xBD,0x61,0x62,0x63 decoded in UTF-8, with the format set to hexadecimal, and the separator set to custom, with input ,0x, results in 中国abc.
  • 228,184,173,229,155,189,97,98,99 decoded in UTF-8, with the format set to decimal, and the separator set to comma, results in 中国abc.
  • -28,-72,-83,-27,-101,-67,97,98,99 decoded in UTF-8, with the format set to decimal, and the separator set to comma, results in 中国abc.
UTF-16 and UTF-32 encodings are endian-dependent. The dropdown box for character encoding has UTF-16LE for little-endian encoding and UTF-16BE for big-endian encoding. BE stands for Big Endian, and LE stands for Little Endian. For example:
  • The character in UTF-16 has big-endian encoding 6211 and little-endian encoding 1162.
  • The character 𪺫 in UTF-16 has big-endian encoding D86BDEAB and little-endian encoding 6BD8ABDE.