String Conversion

Convert between hex strings and text

Hex → Text
Convert HEX string (e.g., 48656c6c6f) to text
Text → Hex
Convert text (e.g., Hello) to HEX string
About string radix conversions
  • String-to-HEX converts characters to their ASCII/Unicode hexadecimal values.
  • Example: 'Hello' = 48656c6c6f (H=48, e=65, l=6c, l=6c, o=6f)
  • Useful for data transmission and file formats working with binary.
  • Helps in debugging and data analysis in programming.