Hi everybody,
First, i posted this here because i don't know what this is.
Numbers like these : 0x000 0x010 0x011 0x040 0x0C1 0x200 0x181
What are they ?
binary ?
Thanks
Karlwakim 17 Junior Poster in Training
Recommended Answers
Jump to PostIf you have computer with Python you can have it show the binary and decimal versions easily:
Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. >>> for a in 0x000, 0x010, 0x011, 0x040, …
Jump to PostThat's because values like 0x0001 and 0x012 are not printable characters.
See this. Printable character are basically 0x0020 to 0x007E.
All 6 Replies
deceptikon 1,790 Code Sniper Team Colleague Featured Poster
TrustyTony 888 ex-Moderator Team Colleague Featured Poster
Karlwakim 17 Junior Poster in Training
WaltP 2,905 Posting Sage w/ dash of thyme Team Colleague
Karlwakim 17 Junior Poster in Training
jacklogan 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.