Skip to content

Instantly share code, notes, and snippets.

@raresteak
Created April 8, 2025 21:17
Show Gist options
  • Save raresteak/e8250ce891ce07f02b8718ec4b3839db to your computer and use it in GitHub Desktop.
Save raresteak/e8250ce891ce07f02b8718ec4b3839db to your computer and use it in GitHub Desktop.
C Format specifiers - Ascii to Decimal conversion
ASCII to Decimal conversion
C ---> Decimal
: %c ---> 58 32 37 99
: %d ---> 58 32 37 100
: %f ---> 58 32 37 102
: %i ---> 58 32 37 105
: %s ---> 58 32 37 115
: ---> 58
space -> 32
% ---> 37
@raresteak
Copy link
Author

raresteak commented Apr 8, 2025

58.32.37.99
58.32.37.100
58.32.37.102
58.32.37.105
58.32.37.115

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment