Six output notations: the same character can be written in several ways, and the Output base setting picks one. U+XXXX is the standard documentation form, hex and binary are common in code, decimal is easy to read, and octal appears in older systems. A custom base from 2 to 36 covers anything else.
Example: the letter A is U+0041 in the standard form, 41 in hex, 65 in decimal, 101 in octal and 1000001 in binary.
Delimiter: choose the text placed between code points. A space is the default and the easiest to read; a comma suits a spreadsheet, a new line gives one value per row, and None joins everything with no separator at all.
Example: Café with a space gives U+0043 U+0061 U+0066 U+00E9, and with a comma and a space gives U+0043, U+0061, U+0066, U+00E9.
Padding, prefix and case: padding writes every value with the same number of digits, so columns align when the numbers are different lengths. A prefix tags binary, octal and hex values with 0b, 0o or 0x, and the case setting controls whether hex letters are upper or lower case.
Example: Hi in decimal is 72 105, padded to 072 105; in hex with a prefix it is 0x48 0x69.
Grapheme grouping: a single visible character can be built from several code points. A flag is two regional indicators, and some emoji join several people with a zero-width joiner. Grouping wraps the code points of one grapheme inside parentheses so the unit stays easy to see.
Example: the flag 🇯🇵 becomes (1F1EF 1F1F5) when grouping is on, and 1F1EF 1F1F5 when it is off.
Whitespace handling: spaces, tabs and line breaks are ordinary code points. Keep them to see the full picture, skip them for a compact list of visible characters, or collapse long runs of whitespace into one space first.
Example: A B with whitespace included is U+0041 U+0020 U+0042, and with whitespace skipped it is U+0041 U+0042.
Unicode normalization: the same accented letter can be stored as one code point or as a base letter followed by a combining mark. Normalization lets you pick the form you want before the code points are listed, which is essential when comparing two strings that look the same.
Example: é is the single value U+00E9 in NFC, but the two values U+0065 U+0301 in NFD.
Live conversion, stats, file upload, copy and download: the result updates as you type or change an option, the stats line reports code points, graphemes and the highest value, and you can load a .txt file, copy the output or download it as a file.