String to Hex

Convert a string to its hexadecimal representation.

Code

Utilities
[...str].map(c => c.charCodeAt(0).toString(16).padStart(2, '0')).join('');

Parameters

The string to convert to hex.

Browser·fetch() may be limited by CORS

More JavaScript Snippets