Convert text to UTF-8 bytes and decode byte sequences
What it does: Converts regular text β byte sequences
Input example: Hello π
Output example: 48 65 6C 6C 6F 20 F0 9F 8C 8D
Use when: You have text and want to see the bytes
What it does: Converts byte sequences β regular text
Input example: 48 65 6C 6C 6F 20 F0 9F 8C 8D
Output example: Hello π
Use when: You have bytes and want to see the text
Input: π
Output (Hex): F0 9F 94 90
Why 4 bytes? Emojis are complex Unicode characters requiring 4 bytes in UTF-8
Input: CafΓ©
Output (Hex): 43 61 66 C3 A9
Notice: The "Γ©" character takes 2 bytes (C3 A9) while regular ASCII takes 1 byte each
Input: %48%65%6C%6C%6F%20%57%6F%72%6C%64
Format: URL Encoded (or Auto-detect)
Output: Hello World
UTF-8 (Unicode Transformation Format - 8-bit) is a variable-width character encoding capable of encoding all possible Unicode characters. It uses 1 to 4 bytes per character and is backward compatible with ASCII.