Decimal to IEEE 754 Binary - Online Float Representation
Enter a decimal number and see its 32‑bit and 64‑bit IEEE 754 representation. Learn sign, exponent, mantissa.
UD5 Toolkit
Instantly determine if a binary number is even or odd by inspecting the Least Significant Bit (LSB)
Enter a binary number above to get started
The tool will analyze the LSB and tell you if it's even or oddThe Least Significant Bit (LSB) is the rightmost bit in a binary number. It represents 20 = 1.
If LSB = 0, the number is even. If LSB = 1, the number is odd.
All higher bits represent even powers of 2 (2, 4, 8, 16...), which are always even. Only the LSB (20=1) can make the number odd.
1010 ends in 0 → even (decimal 10); 1011 ends in 1 → odd (decimal 11). Our tool automates this check and also shows the decimal equivalent.
BigInt for precise representation of large values, ensuring accuracy even for very long binary strings.
00101 is the same as 101 (decimal 5, odd). The LSB is always the rightmost bit, regardless of how many leading zeros precede the number. Our tool handles leading zeros correctly.
0 is even, and every number ending in 1 is odd — no exceptions! This rule is as universal in binary as the last-digit rule is in decimal (0,2,4,6,8 = even; 1,3,5,7,9 = odd).
Enter a decimal number and see its 32‑bit and 64‑bit IEEE 754 representation. Learn sign, exponent, mantissa.
Enter a three‑letter currency code like USD or EUR and instantly see the corresponding symbol and number of decimals. Quick developer reference.
Enter a hexadecimal string and decode it as a 32‑bit or 64‑bit floating‑point number. Low‑level developer tool.
Check if a password appears in the Have I Been Pwned database using k‑Anonymity. Only the first 5 characters of the hash are sent.
Overlay a protractor to understand ideal hoof‑pastern axis. Educational for horse owners.
Derive a strong cryptographic key from a password using PBKDF2 with SHA‑256. Adjust iterations and salt. Educational and test tool.
Paste a human‑readable date (like 'next Friday' or 'March 5, 2023') and convert it to ISO 8601 format. Quick and tolerant.
Generate Argon2id hashes in the browser using a WASM compilation. Choose memory, iterations, and parallelism. Secure local hashing.
Check WHOIS information for any domain: registrar, expiration date, and name servers. Quick and private using public WHOIS data aggregators.
Generate Time‑based One‑Time Passwords locally by entering a base32 secret. Verify your authenticator setup without a phone.
Check WHOIS information for any domain: registrar, expiration date, and name servers. Quick and private using public WHOIS data aggregators.
Comprehensive room‑by‑room checklist for hosts. Track tasks and timing.
Identify common invertebrate fossils (ammonite, trilobite, brachiopod) from sketches. Amateur paleontology.
Paste an image from your clipboard directly into the page (Ctrl+V) and extract its color palette. No file dialog needed.
Paste an HTML table snippet and instantly get the data as CSV or JSON. Handy for scraping and data migration. Local.
Extract all email addresses from a text block using a regex pattern. Deduplicate and sort results. Handy for lead extraction. Data stays on your machine.
Experiment with the Federated Credential Management API. Simulate a sign‑in flow without third‑party cookies. Privacy‑first.
Trace the edge of an object in an image and generate a CSS clip‑path polygon. For non‑rectangular layouts.
Configure and generate a pure CSS accordion with details/summary styling. Copy the HTML/CSS. Accessible and lightweight.
Log when you last replaced the filter and get a reminder every 2‑4 weeks. Keep your pet's water fresh.
Use the new `name` attribute on <details> to create an exclusive accordion with zero JavaScript. Copy the clean HTML.
Guess a random number between 1 and 1000 with feedback 'higher or lower'. Track attempts, beat the high score. Classic beginner's game.
Test how fast you can convert between binary and decimal. Timed drills with increasing difficulty. Learn base‑2 fluency.
Enter a decimal number and see a visual breakdown of bits, place values, and bitwise operations. Learn binary easily.
Enter two hex or decimal numbers and perform bitwise AND, OR, XOR, NOT, left/right shift. See results in binary.
See the current time displayed in binary and hexadecimal. Dark theme, full‑screen mode. A geeky desk decoration.
Convert any photo into a stark 1‑bit black‑and‑white image (no grays). Adjust threshold. Save as PNG.
Enter text and see each character's 8‑bit binary laid out in a black‑and‑white grid. Beautiful data art. Local.
Convert any image into a raw binary array of RGBA values. For use in embedded systems or game development. Copy as Uint8Array.
Enter a decimal number and see detailed step‑by‑step conversion to binary, octal, and hex. For students.