Emacs: Convert Hexadecimal Decimal

By Xah Lee. Date: . Last updated: .

Here's how to convert hexadecimal/decimal in emacs, interactively.

Decimal to Hexadecimal

To convert Decimal to Hexadecimal, just type the decimal number, then Alt+x eval-last-sexp

emacs decimal to hexadecimal 2026-01-04 17543
emacs decimal to hexadecimal 2026-01-04 17543

emacs prints result in Emacs: Messages Buffer

Sample output:

255 (#o377, #xff)

means 255 in hexadecimal is ff

Hexadecimal to Decimal

To convert Hexadecimal to Decimal, type #x followed by the hexadecimal, then Alt+x eval-last-sexp

emacs hexadecimal to decimal 2026-01-04 175f9
emacs hexadecimal to decimal 2026-01-04 175f9

emacs prints result in Emacs: Messages Buffer

Convert Hexadecimal/Decimal