Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

There is no option other than hexadecimal or binary.

You can raise a feature request at https://gitlab.com/wireshark/wireshark/-/issues .

For now you can convert it using an other tool. For example copy as 'Printable Text' and pipe it through this Perl oneliner:
perl -e 'undef $/; $l = <>; $l =~ s/(.)/sprintf("%4d", ord($1))/egs; print $l;'