IT Log

Record various IT issues and difficulties.

“How to represent a day’s date in hexadecimal digits”


To represent a day’s date in hexadecimal digits, follow these steps:

  1. Break Down the Date: Separate the year, month, and day components of the date.
  2. Convert Each Component:
  3. Year (YYYY): Convert from decimal to hexadecimal.
  4. Month (MM): Convert from decimal to hexadecimal; months above 9 are represented by letters A-F.
  5. Day (DD): Convert from decimal to hexadecimal, ensuring days above 9 are represented by letters A-F.
  6. Concatenate the Hexadecimal Values: Combine the hexadecimal representations of year, month, and day without separators.

Example: For October 5, 2023:
– Year: 2023 → 7E7
– Month: 10 → A
– Day: 5 → 5

Hexadecimal Date Representation: 7E7A05


, , , ,